【问题标题】:Howto get any item (Point, LineString, Polygon) within a bounding box in mongodb如何在mongodb的边界框中获取任何项目(点、线串、多边形)
【发布时间】:2013-11-25 05:36:49
【问题描述】:

我在查询匹配 BoundingBox 内的项目时遇到问题。 如何匹配2dsphere(GEO JSON)类型的所有项目? 在这种情况下,我只得到了Point 类型的数据,但LineString 类型的项目不会出现在结果中。

架构定义类似于以下示例:

/**
 * Media location values (Point, LineString, Polygon)
 * @property location
 * @type {Object}
 */
 location:{
      "type":Object,
      "index":"2dsphere"
 },

我有例如里面有这个项目:

[

    {
        "_account": "52796da308d618090b000001",
        "_id": "5284e5798a1c039735000001",
        "location": {
            "coordinates": [
                8.663705555555556,
                50.10165277777778
            ],
            "type": "Point"
        },
        "name": "Foto.JPG",
        "preview": "/img/thumbs/13719-3zavxm.JPG",
        "type": "image/jpeg",
        "added": "2013-11-14T15:00:09.113Z",
        "latlng": [ ],
        "shares": [ ],
        "shared": false,
        "tags": [ ]
    },
    {
        "_account": "52796da308d618090b000001",
        "name": "Filtererd_Track.kml",
        "type": "application/vnd.google-earth.kml+xml",
        "_id": "5284e5c48a1c039735000002",
        "added": "2013-11-14T15:01:24.280Z",
        "latlng": [ ],
        "shares": [ ],
        "shared": false,
        "tags": [ ]
    },
    {
        "_account": "52796da308d618090b000001",
        "_id": "5284e5c48a1c039735000003",
        "location": {
            "coordinates": [
                [
                    9.49653,
                    50.94791
                ],
                [
                    9.49731,
                    50.94811
                ],
                [
                    9.49744,
                    50.94812
                ],
                [
                    9.49755,
                    50.94808
                ],
                [
                    9.4991,
                    50.94579
                ],
                [
                    9.49969,
                    50.94545
                ],
                [
                    9.50037,
                    50.94525
                ],
                [
                    9.50136,
                    50.9452
                ],
                [
                    9.50851,
                    50.98557
                ]
            ],
            "type": "LineString"
        },
        "name": "test 2.gpx",
        "preview": "/img/thumbs/13719-14rvt8w.png",
        "type": "application/gpx+xml",
        "added": "2013-11-14T15:01:24.529Z",
        "latlng": [ ],
        "shares": [ ],
        "shared": false,
        "tags": [ ]
    }

]

获取项目的查询类似于以下示例,但它不匹配 LineStrings / Polygons.... 认为这是因为子数组,但不知道如何将其包含在查询中。

{
    {
        "location": {
            "$geoWithin": {
                "$box": [
                    [
                        -39.375,
                        36.73888412439431
                    ],
                    [
                        76.640625,
                        56.897003921272606
                    ]
                ]
            }
        }
    }
}

【问题讨论】:

  • 您使用的是哪个版本的 MongoDB?你有位置索引吗?
  • 我使用的是最新版本 2.4.8

标签: javascript mongodb mongoose geospatial


【解决方案1】:

我找到了一种方法,可以使用$geoIntersects 将所有内容放入边界框中,并从边界框创建多边形。 如下例所示。

    {
    "location": {
        "$geoIntersects": {
            "$geometry": {
                "type": "Polygon",
                "coordinates": [
                    [
                        [
                            5.372314453125,
                            52.288322586002984
                        ],
                        [
                            12.623291015625,
                            52.288322586002984
                        ],
                        [
                            12.623291015625,
                            49.67829251994456
                        ],
                        [
                            5.372314453125,
                            49.67829251994456
                        ],
                        [
                            5.372314453125,
                            52.288322586002984
                        ]
                    ]
                ]
            }
        }
    }
    ]
}

【讨论】:

猜你喜欢
  • 1970-01-01
  • 2011-09-01
  • 1970-01-01
  • 2011-01-05
  • 1970-01-01
  • 2013-04-30
  • 2013-01-16
  • 2013-11-20
  • 2021-04-01
相关资源
最近更新 更多