-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problème avec les Point dans le model (geoPosition) #1
Comments
je pense qu'effectivement ce refactor peut etre interressant effectivement convertir notre structure a ce format on pourrait le faire en deux etapes wdyt ? |
pour meteor la moulinette pour mettre à jour les Point pour que l'index soit bon Citoyens.find({}).fetch().map(function(c){
if(c.geo && c.geo.longitude){
Citoyens.update({_id:c._id}, {$set: {'geoPosition': {
type: "Point",
'coordinates': [parseFloat(c.geo.longitude), parseFloat(c.geo.latitude)]
}}});
}
});*/ et j'ai test avec ça et l'index est correcte Citoyens._ensureIndex({
"geoPosition.coordinates": "2dsphere"
});
console.log(JSON.stringify(Citoyens.find({'geoPosition.coordinates': {
$nearSphere: {
$geometry: {
type: "Point",
coordinates: [55.489422, -21.30901]
},
$maxDistance: 5000
}}},{_disableOplog: true,fields:{pwd:0}}).fetch())); |
D'après ce que j'ai compris, il s'agit simplement d'inverser la position
|
yes et il faut que ça soit des Float aussi |
A faire :
|
il faut mettre la longitude au début
Point coordinates are in x, y order (easting, northing for projected coordinates, longitude, latitude for geographic coordinates):
{ "type": "Point", "coordinates": [100.0, 0.0] }
http://geojson.org/geojson-spec.html
The text was updated successfully, but these errors were encountered: