use of com.mongodb.client.model.geojson.Position in project morphia by mongodb.
the class TestLifecycles method testWithGeoJson.
@Test
public void testWithGeoJson() {
final Polygon polygon = new Polygon(asList(new Position(0d, 0d), new Position(1d, 1d), new Position(2d, 2d), new Position(3d, 3d), new Position(0d, 0d)));
getDs().save(new HoldsPolygon(ObjectId.get(), polygon));
Assert.assertFalse(HoldsPolygon.lifecycle);
Assert.assertNotNull(getDs().find(HoldsPolygon.class).first());
Assert.assertTrue(HoldsPolygon.lifecycle);
}
use of com.mongodb.client.model.geojson.Position in project morphia by mongodb.
the class TestGeoQueries method testNearNoIndex.
@Test(expectedExceptions = MongoQueryException.class)
public void testNearNoIndex() {
getDs().getCollection(Place.class).drop();
final Place place1 = new Place("place1", new double[] { 1, 1 });
getDs().save(place1);
Place found = getDs().find(Place.class).filter(near("loc", new Point(new Position(0, 0)))).iterator(new FindOptions().limit(1)).tryNext();
Assert.assertNull(found);
}
use of com.mongodb.client.model.geojson.Position in project morphia by mongodb.
the class TestGeoQueries method testGeoWithinRadiusSphere.
@Test
public void testGeoWithinRadiusSphere() {
final Place place1 = new Place("place1", new double[] { 1, 1 });
getDs().save(place1);
final Place found = getDs().find(Place.class).filter(centerSphere("loc", new Point(new Position(0, 1)), 1)).iterator(new FindOptions().limit(1)).next();
Assert.assertNotNull(found);
}
use of com.mongodb.client.model.geojson.Position in project morphia by mongodb.
the class AggregationTest method testGeoNearWithGeoJson.
@Test
public void testGeoNearWithGeoJson() {
// given
Point londonPoint = new Point(new Position(51.5286416, -0.1015987));
GeoCity london = new GeoCity("London", londonPoint);
getDs().save(london);
GeoCity manchester = new GeoCity("Manchester", new Point(new Position(53.4722454, -2.2235922)));
getDs().save(manchester);
GeoCity sevilla = new GeoCity("Sevilla", new Point(new Position(37.3753708, -5.9550582)));
getDs().save(sevilla);
getDs().ensureIndexes();
// when
Iterator<GeoCity> cities = getDs().aggregate(GeoCity.class).geoNear(geoNear(londonPoint).distanceField("distance").spherical(true)).execute(GeoCity.class);
// then
Assert.assertTrue(cities.hasNext());
Assert.assertEquals(london, cities.next());
Assert.assertEquals(manchester, cities.next());
Assert.assertEquals(sevilla, cities.next());
Assert.assertFalse(cities.hasNext());
}
use of com.mongodb.client.model.geojson.Position in project morphia by mongodb.
the class AggregationTest method testGeoNearWithSphericalGeometry.
@Test
public void testGeoNearWithSphericalGeometry() {
// given
double latitude = 51.5286416;
double longitude = -0.1015987;
GeoCity london = new GeoCity("London", new Point(new Position(latitude, longitude)));
getDs().save(london);
GeoCity manchester = new GeoCity("Manchester", new Point(new Position(53.4722454, -2.2235922)));
getDs().save(manchester);
GeoCity sevilla = new GeoCity("Sevilla", new Point(new Position(37.3753708, -5.9550582)));
getDs().save(sevilla);
getDs().ensureIndexes();
// when
Iterator<GeoCity> cities = getDs().aggregate(GeoCity.class).geoNear(geoNear(new double[] { latitude, longitude }).distanceField("distance").spherical(true)).execute(GeoCity.class);
// then
Assert.assertTrue(cities.hasNext());
Assert.assertEquals(london, cities.next());
Assert.assertEquals(manchester, cities.next());
Assert.assertEquals(sevilla, cities.next());
Assert.assertFalse(cities.hasNext());
}
Aggregations