Skip to content

Instantly share code, notes, and snippets.

@cnmoro
Created May 28, 2019 18:49
Show Gist options
  • Save cnmoro/18225e76d3ea8f72d4eb621c6794f4d0 to your computer and use it in GitHub Desktop.
Save cnmoro/18225e76d3ea8f72d4eb621c6794f4d0 to your computer and use it in GitHub Desktop.
MongoDB Convert Geo Fields into GeoJSON
db.getCollection('COLL_NAME').find().forEach(function(element) {
element.LOCATION = {
"type": "Point",
"coordinates": [element.LON, element.LAT]
};
db.getCollection('COLL_NAME').save(element);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment