What is the difference between the Neo4j Spatial and Neo4j built in spatial?Which are the indexes that are used in Neo4j Spatial and neo4j built in spatial and which one is faster?
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