With the introduction of 2.3 >
MongoDB has become even more useful with location data handling and querying. MongoDB stores documents as BSON, so each document with have all the document fields, which obviously potentially leads to larger databases than our conventional RMDBS.
I used to store polylines and polygons as a series of indexed points, with an extra field representing the order of each line (I was doing this to ensure consistency as I use JavaScript, so points weren't always stored in their correct order). It was something like this:
polyline: {
[
point: [0,0],
order: 0
],
[
point: [0,1],
order: 1
]
}
Whereas now I use:
polyline: {
type: 'LineString',
coordinates: [
[0,0],
[1,0]
]
}
I've seen an improvement in the size of documents, as some polylines can have up to 500 points.
However, I'm wondering what the benefits of storing all my Point
data as GeoJSON
would be. I am discouraged by the increase in document size, as for example:
loc: [1,0]
is way better than
loc: {
type: 'Point',
coordinates: [0,1]
}
and would thus be easier to work with.
My question is:
Is it better/recommended to store points as GeoJSON
objects as opposed to a 2 point array?
What I have considered is the following:
lng, lat
format as opposed to sticking to lat, lng
for points, and the former for all my other location features.$geoWithin
or $geoIntersects
with it, I wouldn't need to convert it to GeoJSON first before using it as a query
parameter.What I am unsure of is:
loc: [x,y]
will be dropped in the future on MongoDB2dsphere
as opposed to 2d
GeoJSON
additions to MongoDB might result in the need for the consistency mentioned above.I'd rather move to GeoJSON
while my data is still manageable, than switch in future under a lot of strain.
May I please kindly ask for a thoroughly (even if slightly) thought out answer. I won't select a correct answer soon, so I can evaluate any responses.
I'm also not sure if SO is the right place to pose the question, so if DBA is a more appropriate place I'll move the question there. I chose SO because there's a lot of MongoDB related activity here.
In MongoDB, you can store geospatial data as GeoJSON objects or as legacy coordinate pairs.
MongoDB supports the GeoJSON object types listed on this page. a field named coordinates that specifies the object's coordinates.
MongoDB's geospatial indexing allows you to efficiently execute spatial queries on a collection that contains geospatial shapes and points.
MongoDB provides the functionality to store locations under the object type geoJSON and their coordinates against the coordinate field in [longitude, latitude] form where longitude must lie between [-180, 180] and latitude must lie between [-90,90], both inclusive.
I would recommend using the new GeoJSON format. Whilst I don't believe that any announcement has been made about dropping support for the old format, the fact that they refer to it as legacy should be an indication of their opinion.
There are some indexing benefits to using 2dsphere rather than 2d.
One other important thing to note is that you need to be sure the query you are using is supported by the index you use. If you use a 2dsphere for example you can't use a $box query as it won't be indexed - however mongo will not warn you - the result will just perform a table scan and will be very slow!
Mongo provide a compatibility chart of which queries can be used with which index
Yes, I think it is worth it. From my experience with GeoSpatial Information System's, it would be best to store your location data in a useful and transferable standard. GeoJSON in MongoDB supports the WGS84 datum standard.
In MongoDB the $near operator can search on legacy 2d coordinates and GeoJSON coordinates. On a legacy 2d coordinate collection, $near returns a closest first sorted collection. $geoNear returns a closest first sorted collection with distance from searched point meta data.
Another benefit is the ability to use other geospatial queries (i.e $geoWithin and $geoIntersect) especially if you store other GeoJSON types (Polyline, Polygon)
Lastly While basic queries using spherical distance are supported by the 2d index, consider moving to a 2dsphere index if your data is primarily longitude and latitude.
I hope this information gives you some thinking points on what to do with your location data.
If you are only storing point geometries in your database, but want to support multiple different GeoJSON queries on that data, then note that it is possible to store points in legacy coordinate pair format and use a 2dsphere
index.
The release notes for mongoose's GeoJSON support (MongoDB >= 2.4) give the following example:
2dsphere
index on legacy coordinate pairs:
new Schema({
loc: { type: [Number], index: '2dsphere'}
});
GeoJSON
query on the legacy coordinate pairs, using the 2dsphere
index:
var geojsonPoly = {
type: 'Polygon',
coordinates: [[[-5,-5], ['-5',5], [5,5], [5,-5],[-5,'-5']]]
};
Model.find({ loc: { $within: { $geometry: geojsonPoly }}});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With