我可以使用MongoDB Scala驱动程序指定MongoDB坐标参考系统吗?

时间:2016-03-09 21:25:47

标签: mongodb scala

我有一个使用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驱动程序吗?

0 个答案:

没有答案