Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-29-2022 05:31 AM
10-29-2022 02:47 PM
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")
10-29-2022 02:50 PM
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")
10-29-2022 11:14 PM
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.
All the sessions of the conference are now available online