Closed jdubowy closed 1 year ago
We currently accept and store perimeter polygons as an array of coordinates:
"polygon": [ [-122.45, 46.43], [-122.39, 46.43], ...
We should store them as an array of array of coordinates
"polygon": [ [ [-122.45, 46.43], [-122.39, 46.43], ...
This is consistent with the geojson standard for polygons and it supports holes.
We currently accept and store perimeter polygons as an array of coordinates:
We should store them as an array of array of coordinates
This is consistent with the geojson standard for polygons and it supports holes.