call spatial.addPointLayerXY("crime-spot", "latitude", "longitude")
load csv with headers from "https://goo.gl/3mZaGW" as line
create (c:Crime {ncic: toInteger(line.ucr_ncic_code),
latitude: toFloat(line.latitude),
longitude: toFloat(line.longitude),
description: line.crimedescr})
with c
call spatial.addNode("crime-spot", c) yield node
return node