shipwrecks/mongo/pipeline2.py
Tyrel Souza 2329d789e9
mongo
2023-08-18 01:20:42 -04:00

16 lines
323 B
Python

pipeline = [
{
'$geoNear': {
'near': {
'type': 'Point',
'coordinates': [
-78.9, 35.9
]
},
'distanceField': 'distance',
'maxDistance': 160934.4,
'spherical': True
}
}
]