The current version of the API (0.3.1) defines the coordinates member of a Polygon as an array of Points. This look like the following (forgiving the duplicate points):
The GeoJSON spec says the format for the coordinates member a Polygon should be a LineString, which is an array of two or more Positions. An example of a Polygon would be:
We should follow the GeoJSON spec for interoperability reasons. This will help with quicker implementation for those USSs that use standard GeoJSON libraries.
The current version of the API (0.3.1) defines the coordinates member of a Polygon as an array of Points. This look like the following (forgiving the duplicate points):
The GeoJSON spec says the format for the coordinates member a Polygon should be a LineString, which is an array of two or more Positions. An example of a
Polygon
would be:We should follow the GeoJSON spec for interoperability reasons. This will help with quicker implementation for those USSs that use standard GeoJSON libraries.