I am using the queries below to create users with lat,lng .
MERGE (n { user:'a', id:1,lat:40.736184,lng:-73.992006 })
MERGE (n { user:'b', id:2,lat:40.748475,lng:-73.993808 })
MERGE (n { user:'c', id:3,lat:40.744638,lng:-73.982135 })
MERGE (n { user:'d', id:4,lat:40.708929,lng:-74.005567 })
MERGE (n { user:'e', id:5,lat:40.729615,lng:-73.975698 })
How to get all users around 40.724152, -74.001276
within 1 km
radius?
I really appreciate any help.