shipwrecks/mongo/pipeline2.py

16 lines
323 B
Python
Raw Permalink Normal View History

2023-08-18 05:20:42 +00:00
pipeline = [
{
'$geoNear': {
'near': {
'type': 'Point',
'coordinates': [
-78.9, 35.9
]
},
'distanceField': 'distance',
'maxDistance': 160934.4,
'spherical': True
}
}
]