Skip to content

Commit

Permalink
Conflate features globally !
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Dec 7, 2023
1 parent 3bc53c2 commit 7f77b5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,9 @@ def ConflateGeojson(request):
except json.JSONDecodeError:
return HttpResponseBadRequest("Invalid input")

conflated_geojson = conflate_geojson(geojson_data, remove_conflated=True)
conflated_geojson = conflate_geojson(
geojson_data, remove_conflated=True, api_url=settings.EXPORT_TOOL_API_URL
)

return Response(conflated_geojson, status=200)

Expand Down

0 comments on commit 7f77b5c

Please sign in to comment.