Monday, March 11, 2013

MongoDB 2.4 ve GeoJSON desteği

Geospatial sorgulari MongoDb ile zaten keyifle yapabilmekteydiniz. Haberin yoksa hemen incele : http://docs.mongodb.org/manual/applications/geospatial-indexes/

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

No comments: