我有一个使用Scala驱动程序的MongoDB查询,如下所示:
collection.find(and(geoWithinBox("geometry", swLon, swLat, neLon, neLat),
// ...some other conditions...
)
事实证明,由于this page关于大多边形的信息,我可能想要使用:
crs: {
type: "name",
properties: { name: "urn:x-mongodb:crs:strictwinding:EPSG:4326" }
}
在此查询的JavaScript版本的$geometry
表达式中,指定自定义MongoDB坐标参考系统。我可以使用MongoDB Scala驱动程序吗?