cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

NeoMap Map Vİsualizer

I will work with NeoMap Map Visualizer, but I do not have the dataset to work with, can you send me where can I find it?
3 REPLIES 3

Hi @ibrahimyldz11q 

There is a dataset for Hiroshima Japan.
https://annoura.com/openstreetmap/hiroshima.graphml.zip 

You can download and unzip it.
And put it in import folder.

<neo4j-home>/import/hiroshima.graphml

The command to import is this

CALL apoc.import.graphml("hiroshima.graphml", {})

Or
You can also create a dataset in Python.
Change the latitude, longitude, and distance (dist).

import osmnx as ox
G = ox.graph_from_point((34.3977, 132.4753), dist=1500, network_type='all')
ox.save_graphml(G, "hiroshima.graphml")

 

Hi @ibrahimyldz11q 

There is a dataset for Hiroshima Japan.
https://annoura.com/openstreetmap/hiroshima.graphml.zip 

You can download and unzip it.
And put it in import folder.

<neo4j-home>/import/hiroshima.graphml

The command to import is this

 

CALL apoc.import.graphml("hiroshima.graphml", {})

 

Or
You can also create a dataset in Python.
Change the latitude, longitude, and distance (dist).

 

import osmnx as ox
G = ox.graph_from_point((34.3977, 132.4753), dist=1500, network_type='all')
ox.save_graphml(G, "hiroshima.graphml")

 

 

Hi @ibrahimyldz11q 

You can create your graphml dataset by Python.

import osmnx as ox
G = ox.graph_from_point((34.3977, 132.4753), dist=1500, network_type='all')
ox.save_graphml(G, "hiroshima.graphml")

This is the example Hiroshima Japan.