Skip to content

Instantly share code, notes, and snippets.

@langsdlc
Created July 19, 2016 19:49
Show Gist options
  • Save langsdlc/ef99e3a1f89d3063b09f818285ca04de to your computer and use it in GitHub Desktop.
Save langsdlc/ef99e3a1f89d3063b09f818285ca04de to your computer and use it in GitHub Desktop.
LOAD CSV WITH HEADERS FROM "https://gist.githubusercontent.com/langsdlc/a0f802f26a8f05c4823823f0a981c49b/raw/cc12bed799f054015263974369e359ae3b778814/Test_PointsDEC.csv" AS csvLine
CREATE (waypoint :Place {name: toInt(csvLine.Id), building: csvLine.Building, entrance: toInt(csvLine.Entrance), long: toFloat(csvLine.XDEC), lat: toFloat(csvLine.YDEC) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment