// Create the graph db | |
graphDb = new EmbeddedGraphDatabase("var/geo"); | |
// Wrap it as a spatial db service | |
spatialDb = new SpatialDatabaseService(graphDb); | |
// Create the layer to store our spatial data | |
runningLayer = (EditableLayer) spatialDb.getOrCreateLayer("running", SimplePointEncoder.class, EditableLayerImpl.class, "lon:lat"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment