I\'m new to Neo4j and cypher. I have many nodes, that i want to add to a spatial layer. This is what i tried with cypher :
Creating Nodes from a csv fi
I Solved my problem by just changing:
1) lat property to latitude 2) lon property to longitude 3) cast with toFloat() the two properties(they were Strings in the csv):
toFloat(line.Pickup_latitude) and toFloat(line.Pickup_longitude)