Я новичок в MongoDB с драйвером java. Я пытаюсь запросить полигоны из одной коллекции и сопоставить точки в другой коллекции.
На самом деле у меня есть:
//This is collection 1.. here i get my polygon definition.. the name of the element is geometry
Document polyDocument = mongoClient.getDatabase("restheart").getCollection("polygons").find(eq("properties.ISO_A2", "AT")).first();
//This is collection2.. here are the points saved which i want to select if they are within polygon.. the name of the element is location
MongoCursor<Document> Cursor = mongoClient.getDatabase("restheart").getCollection("coll2").aggregate(
Arrays.asList(
Aggregates.match(geoWithin("location", polyDocument.get("geometry")), <--- here is my problem, whats the correct syntax?
Aggregates.group("$hashtag", Accumulators.sum("Count", 1)),
)
).iterator();
Я много гуглил, но могу найти хороший пример, как сделать запрос с помощью javadriver
Образец коллекции 1:
{
"_id" : ObjectId("5e95d56e49ebb0e6b45a34c4"),
"type" : "Feature",
"geometry" : {
"type" : "Polygon",
"coordinates" : [
[
[ ... , ... ]
]
]
},
"properties": { "ISO_A2": "AT" }
}
Образец коллекции 2:
{
"_id" : ObjectId("5e90bf7b49ebb0e6b459a00f"),
"hashtag" : "stayhome",
"timestamp" : ISODate("2020-04-10T18:48:25.876Z"),
"location" : {
"type" : "Point",
"coordinates" : [
14.421425,
40.26084
]
},
}