Skip to content

Instantly share code, notes, and snippets.

@langsdlc
Created July 13, 2016 16:51
Show Gist options
  • Save langsdlc/d3a6b0972c67a9c0c65d181b45861eb9 to your computer and use it in GitHub Desktop.
Save langsdlc/d3a6b0972c67a9c0c65d181b45861eb9 to your computer and use it in GitHub Desktop.
cypher for neo4j csv load
LOAD CSV WITH HEADERS FROM "https://gist.githubusercontent.com/langsdlc/a0f802f26a8f05c4823823f0a981c49b/raw/f56b8837cc5ba149dc9f80d47b9c0ca0383486f8/Test_PointsDEC.csv" AS csvLine
CREATE (:Waypoint {x: toFloat(csvLine.XDEC), y: toFloat(csvLine.YDEC), id: toINT(csvLine.WaypointID), building:(csvLine.Building), entrance: toINT(csvLine.Entrance)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment