Hello,<br><br>According to the specs,<br>1. You can not have a nested FeatureCollection in a FeatureCollection. <br>2. You can not have a Feature in a Feature.<br>This is strange to me.<br><br>Consider this case:<br>I have a map with a LineString that represents a route between two cities.<br>
Also I have a FeatureCollection of gas stations (Features). <br><br>I want to save this as one unit of geoJson.<br>Naturally I would make it into a FeatureCollection.<br>But a FeatureCollection can only contain Features, since  quoting 2.3: <br>
>> """ Each element in
the array is a feature object as defined above. """<br><br>Lets try that,<br>I can put the LineString in a Feature, easy.<br>But I can not put the FeatureCollection of gas stations in a Feature.<br>Since, quoting 2.2:<br>
>> """The value of
the geometry member is a geometry object as defined above or a JSON null
value"""<br>And a FeatureCollection object is not under the Geometry object heading 2.1.<br><br>There is a really bad solution:  make a Feature with properties "gasStations" and "route", but that is<br>

bad since then you can't automatically work with the data for example to find a bounding box.<br>
You will have to pinpoint that these two features are geographical data.<br><br>Then I am stuck? Or am I reading something the wrong way.<br><br>/Henrik Hjelte<br><br>