## A geometry is a GeoJSON object where the type member's value is one of: "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", or "Box".
 
## A geometry is a GeoJSON object where the type member's value is one of: "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", or "Box".
 
### In addition to the type member, a GeoJSON object that represents a geometry (referred to as a geometry object below) must have a member with the name "coordinates".  The value of the coordinates member is always an array (referred to as the coordinates array below).  The structure for the elements in this array are determined by the type of geometry.
 
### In addition to the type member, a GeoJSON object that represents a geometry (referred to as a geometry object below) must have a member with the name "coordinates".  The value of the coordinates member is always an array (referred to as the coordinates array below).  The structure for the elements in this array are determined by the type of geometry.
#### For type "Point", each element in the coordinates array is a number representing the point coordinate in one dimension.  The order of elements follows x, y, z order (or Longitude, Latitude, Elevation for coordinates in decimal degrees).
+
#### For type "Point", each element in the coordinates array is a number representing the point coordinate in one dimension.  The order of elements follows x, y, z order (or longitude, latitude, elevation for coordinates in decimal degrees).
 
#### For type "MultiPoint", each element in the coordinates array is a coordinates array as described for type "Point".
 
#### For type "MultiPoint", each element in the coordinates array is a coordinates array as described for type "Point".
 
#### For type "LineString", each element in the coordinates array is a coordinates array as described for type "Point".  The coordinates array for a LineString must have two or more elements.  A LinearRing is a special case of type LineString where the first and last elements in the coordinates array are equivalent (they represent equivalent points).  Though a LinearRing is not explicitly represented as a GeoJSON geometry type, it is referred to in the Polygon geometry type definition.
 
#### For type "LineString", each element in the coordinates array is a coordinates array as described for type "Point".  The coordinates array for a LineString must have two or more elements.  A LinearRing is a special case of type LineString where the first and last elements in the coordinates array are equivalent (they represent equivalent points).  Though a LinearRing is not explicitly represented as a GeoJSON geometry type, it is referred to in the Polygon geometry type definition.
 
#### For type "Polygon", each element in the coordinates array is a coordinates array as described for type "LineString".  Furthermore, each LineString in the coordinates array must be a LinearRing.  For Polygons with multiple LinearRings, the first must be the exterior ring and any others must be interior rings or holes.
 
#### For type "Polygon", each element in the coordinates array is a coordinates array as described for type "LineString".  Furthermore, each LineString in the coordinates array must be a LinearRing.  For Polygons with multiple LinearRings, the first must be the exterior ring and any others must be interior rings or holes.
 
#### For type "MultiPolygon", each element in the coordinates array is a coordinates array as described for type Polygon.
 
#### For type "MultiPolygon", each element in the coordinates array is a coordinates array as described for type Polygon.
Exception encountered, of type "Error"