netgis_client_update #294

Merged
mpeltriaux merged 7 commits from netgis_client_update into master 2023-02-13 14:41:07 +01:00
Showing only changes of commit 4052105e1d - Show all commits

View File

@ -80,6 +80,12 @@ class ClientProxyParcelWFS(BaseClientProxyView):
content, response_code = self.perform_url_call(url, auth=auth)
body = json.loads(content)
body["crs"] = {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::25832"
}
}
if response_code != 200:
return JsonResponse({
"status_code": response_code,