Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
04-15-2019 04:51 PM
I have a CSV file with 2 columns, 1 with latitude and 1 with longitude. I want to create a node with a point type property using the Cypher LOAD CSV command. How do I structure the script?
Thanks
07-11-2019 02:17 PM
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM "file:/path/nameOfCSV.csv" as line
MERGE (o:Object { location: point({latitude:toFloat(line.lat), longitude:toFloat(line.lon), crs:'WGS-84'})})
RETURN o
02-16-2021 01:15 PM
How to do with the neo4j-admin import tool?
All the sessions of the conference are now available online