SDG-AI-Lab / DSVI_Tool_v3

DSVI Online Tool: Displays social vulnerability data and allows users to analyze them interactively.
https://sdg-ai-lab.github.io/DSVI_Tool_v3/
5 stars 1 forks source link

fixed-format-of-AOI.geojson #206

Closed andreiPro closed 1 year ago

andreiPro commented 1 year ago

Good morning Martin, Done. Only 1 layer out of 3 was displayed because all three unrelated/independent layers were included in the same Feature object. After I placed each layer in a separate Feature object, everything started working.

Screen Shot 2022-11-20 at 12 47 12 AM

"features": [ { "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ ] ] ]}, { "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ ] ] ]}, { "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ ] ] ]}]

Skerre commented 1 year ago

@andreiPro Thank you. I had some issues back in the day to get the correct format for the geojson file and did not try this solution. Great work!

andreiPro commented 1 year ago

@andreiPro Thank you. I had some issues back in the day to get the correct format for the geojson file and did not try this solution. Great work!

Thank you.