Search in sources :

Example 1 with ObjectMapper

use of org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper in project janusgraph by JanusGraph.

the class GeoshapeTest method testGeoJsonMultiPolygon.

@Test
public void testGeoJsonMultiPolygon() throws IOException {
    Geoshape.GeoshapeSerializer s = new Geoshape.GeoshapeSerializer();
    Map json = new ObjectMapper().readValue("{\n" + "  \"type\": \"Feature\",\n" + "  \"geometry\": {\n" + "    \"type\": \"MultiPolygon\",\n" + "    \"coordinates\": [[[[102.0,2.0],[103.0,2.0],[103.0,3.0],[102.0,3.0],[102.0,2.0]]]," + "[[[100.0,0.0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0]],[[100.2,0.2],[100.8,0.2],[100.8,0.8],[100.2,0.8],[100.2,0.2]]]]\n" + "  }" + "}", HashMap.class);
    assertEquals(HELPER.geoshape(GF.createMultiPolygon(new Polygon[] { GF.createPolygon(new Coordinate[] { new Coordinate(102, 2), new Coordinate(103, 2), new Coordinate(103, 3), new Coordinate(102, 3), new Coordinate(102, 2) }), GF.createPolygon(GF.createLinearRing(new Coordinate[] { new Coordinate(100, 0), new Coordinate(101, 0), new Coordinate(101, 1), new Coordinate(100, 1), new Coordinate(100, 0) }), new LinearRing[] { GF.createLinearRing(new Coordinate[] { new Coordinate(100.2, 0.2), new Coordinate(100.8, 0.2), new Coordinate(100.8, 0.8), new Coordinate(100.2, 0.8), new Coordinate(100.2, 0.2) }) }) })), s.convert(json));
}
Also used : Coordinate(com.vividsolutions.jts.geom.Coordinate) Geoshape(org.janusgraph.core.attribute.Geoshape) LinearRing(com.vividsolutions.jts.geom.LinearRing) HashMap(java.util.HashMap) Map(java.util.Map) ObjectMapper(org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper) Test(org.junit.Test)

Example 2 with ObjectMapper

use of org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper in project janusgraph by JanusGraph.

the class GeoshapeTest method testGeoJsonInvalidBox1.

@Test(expected = IllegalArgumentException.class)
public void testGeoJsonInvalidBox1() throws IOException {
    Geoshape.GeoshapeSerializer s = new Geoshape.GeoshapeSerializer();
    Map json = new ObjectMapper().readValue("{\n" + "  \"type\": \"Feature\",\n" + "  \"geometry\": {\n" + "    \"type\": \"Polygon\",\n" + "    \"coordinates\": [[20.5, 12.5],[22.5, 12.5],[22.5, 10.5],[20.5, 10.6]]\n" + "  },\n" + "  \"properties\": {\n" + "    \"name\": \"Dinagat Islands\"\n" + "  }\n" + "}", HashMap.class);
    s.convert(json);
}
Also used : Geoshape(org.janusgraph.core.attribute.Geoshape) HashMap(java.util.HashMap) Map(java.util.Map) ObjectMapper(org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper) Test(org.junit.Test)

Example 3 with ObjectMapper

use of org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper in project janusgraph by JanusGraph.

the class GeoshapeTest method testGeoJsonPoint.

@Test
public void testGeoJsonPoint() throws IOException {
    Geoshape.GeoshapeSerializer s = new Geoshape.GeoshapeSerializer();
    Map json = new ObjectMapper().readValue("{\n" + "  \"type\": \"Feature\",\n" + "  \"geometry\": {\n" + "    \"type\": \"Point\",\n" + "    \"coordinates\": [20.5, 10.5]\n" + "  },\n" + "  \"properties\": {\n" + "    \"name\": \"Dinagat Islands\"\n" + "  }\n" + "}", HashMap.class);
    assertEquals(Geoshape.point(10.5, 20.5), s.convert(json));
}
Also used : Geoshape(org.janusgraph.core.attribute.Geoshape) HashMap(java.util.HashMap) Map(java.util.Map) ObjectMapper(org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper) Test(org.junit.Test)

Example 4 with ObjectMapper

use of org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper in project janusgraph by JanusGraph.

the class GeoshapeTest method testGeoJsonPointNotParseable.

@Test(expected = IllegalArgumentException.class)
public void testGeoJsonPointNotParseable() throws IOException {
    Geoshape.GeoshapeSerializer s = new Geoshape.GeoshapeSerializer();
    Map json = new ObjectMapper().readValue("{\n" + "  \"type\": \"Feature\",\n" + "  \"geometry\": {\n" + "    \"type\": \"Point\",\n" + "    \"coordinates\": [20.5, \"10.5\"]\n" + "  },\n" + "  \"properties\": {\n" + "    \"name\": \"Dinagat Islands\"\n" + "  }\n" + "}", HashMap.class);
    s.convert(json);
}
Also used : Geoshape(org.janusgraph.core.attribute.Geoshape) HashMap(java.util.HashMap) Map(java.util.Map) ObjectMapper(org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper) Test(org.junit.Test)

Example 5 with ObjectMapper

use of org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper in project janusgraph by JanusGraph.

the class GeoshapeTest method testGeoJsonCircle.

@Test
public void testGeoJsonCircle() throws IOException {
    Geoshape.GeoshapeSerializer s = new Geoshape.GeoshapeSerializer();
    Map json = new ObjectMapper().readValue("{\n" + "  \"type\": \"Feature\",\n" + "  \"geometry\": {\n" + "    \"type\": \"Circle\",\n" + "    \"radius\": 30.5, " + "    \"coordinates\": [20.5, 10.5]\n" + "  },\n" + "  \"properties\": {\n" + "    \"name\": \"Dinagat Islands\"\n" + "  }\n" + "}", HashMap.class);
    assertEquals(Geoshape.circle(10.5, 20.5, 30.5), s.convert(json));
}
Also used : Geoshape(org.janusgraph.core.attribute.Geoshape) HashMap(java.util.HashMap) Map(java.util.Map) ObjectMapper(org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper) Test(org.junit.Test)

Aggregations

ObjectMapper (org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper)35 HashMap (java.util.HashMap)26 Map (java.util.Map)26 Geoshape (org.janusgraph.core.attribute.Geoshape)14 Test (org.junit.Test)14 Test (org.junit.jupiter.api.Test)14 Coordinate (com.vividsolutions.jts.geom.Coordinate)4 Coordinate (org.locationtech.jts.geom.Coordinate)4 HttpHost (org.apache.http.HttpHost)3 HttpDelete (org.apache.http.client.methods.HttpDelete)3 LinearRing (com.vividsolutions.jts.geom.LinearRing)2 SimpleModule (org.apache.tinkerpop.shaded.jackson.databind.module.SimpleModule)2 Before (org.junit.Before)2 LinearRing (org.locationtech.jts.geom.LinearRing)2 JtsSpatialContext (org.locationtech.spatial4j.context.jts.JtsSpatialContext)2 IOException (java.io.IOException)1 List (java.util.List)1 UUID (java.util.UUID)1 Neo4jIndexHandler (nl.knaw.huygens.timbuctoo.database.tinkerpop.Neo4jIndexHandler)1 LogEntryFactory (nl.knaw.huygens.timbuctoo.databaselog.entry.LogEntryFactory)1