I found an early (fake?) draft of GeoJSON that included an ellipse shape: <a href="http://geopriv.dreamhosters.com/geojson/geojson-spec.html">http://geopriv.dreamhosters.com/geojson/geojson-spec.html</a> (in addition to circle/sphere/etc)<div>
<br></div><div>Was there any discussion on why this was pulled? Couldn't seem to find any by searching the list.</div><div><br></div><div>I guess that's not even that important, but we do have a use case for storing and specifying ellipses. We're using MongoDB to store data and wanted to store it in GeoJSON, but we obviously don't want to break the spec, either.</div>
<div><br></div><div>Our first thought is to just use the properties and a Point to indicate an ellipse:</div><div>i.e.</div><div><meta charset="utf-8"><span class="Apple-style-span" style="font-family: Tahoma; font-size: 13px; "><pre style="font-size: 13px; margin-top: 14pt; margin-bottom: 14pt; ">
 { "type": "Feature",
      "geometry": {"type": "Point", "coordinates": [102.0, 0.5]},
      "properties": {"major": "1.0", "minor":"0.5", "rotation":"45"}
      }
</pre><div><br></div><div><br></div><div>Thoughts on that approach? Any thoughts on re-implementing ellipse/circle back in the spec?</div><div><br></div><div>Is the spec fairly frozen at this point (it appears that way, but I'm ignoramus as to those sorts of things)</div>
<div><br></div><div>Thanks!</div><div><br></div><div>Andy</div></span><div><br></div></div>