MongoDb 2.4 versiyonunda ise GeoJSON desteği gelmiş oldu [docs]. 2.4 versiyonunda baska guzel seyler de var tabiki.
GeoJSON geometrik sekilleri json formatinda daha rahat tanimlamayi sagliyor.
Ornek bir cizgi
{ type: "LineString", coordinates: [ [0.0, 10.0], [10.0, 20.0] ] }
Bir polygon
{ "type": "Polygon", "coordinates": [ [ [ 40, 5 ], [ 40, 6 ], [ 41, 6 ], [ 41, 5 ], [ 40, 5 ] ] ] }
GeoJSON tanimlamarinin bir standarti var. Hepsi burda : http://www.geojson.org/geojson-spec.html
Daha cok ornek icin : http://www.geojson.org/geojson-spec.html#examples
Linkler
- http://wiki.geojson.org/Users
- Php implementation of GeoJSON
- http://docs.mongodb.org/manual/release-notes/2.4/#new-geospatial-indexes-with-geojson-and-improved-spherical-geometry
- http://docs.mongodb.org/manual/applications/geospatial-indexes/
- Mongodb 2.4 icin diger notlar http://docs.mongodb.org/manual/release-notes/2.4/
No comments:
Post a Comment