SlideShare a Scribd company logo
http://linkedin.com/in/dannylane
http://twitter.com/_danny_lane_
http://dannylane.github.io
GEOSPATIAL QUERIES IN MONGODB
Working With Location Based Data
Geospatial Queries in MongoDB
MONGODB
NoSQL
{
"_id": 1234,
"vesselName": “Boaty McBoatface",
"engineSize": "1200cc"
}
db.activeTrips.find({"vesselName": "Boaty McBoatface"});
STORING LOCATION DATA
• Point
• Polygon
• LineString
• MultiPoint
• MultiLineString
• MultiPolygon
"currentPosition": [-11.469727, 51.88624]
"currentPosition": {
"type": "Point",
"coordinates": [-19.753418, 54.542995]
}
Legacy & GeoJSON
{
"_id": 1234,
"vesselName": "Boaty McBoatface",
"engineSize": "1200cc",
"currentPosition": {
"type": "Point",
"coordinates": [
-7.322388,
51.852746
]}}
$nearSphere
db.activeTrips.find({
currentPosition: {
$nearSphere: {
$geometry: {
type: "Point",
coordinates: [
-8.497925, 51.69299
]},
$maxDistance: 100000
}}});
$geoWithin db.activeTrips.find({
currentPosition: {
$geoWithin: {
$geometry: {
type: "Polygon",
coordinates: [
[[-8.497925, 51.69299],
[-7.15211, 52.153714],
[-6.624756, 51.37864],
[-8.497925, 51.69299]]
]}}}});
$geoIntersects
db.counties.find({
geometry: {
$geoIntersects: {
$geometry: {
type: "Polygon",
coordinates: [[[-8.76709, 53.47497],
[-7.349854, 54.303704],
[-6.602783, 52.609719],
[-8.76709, 53.47497]]]
}}}});
Galway Offaly Wexford Cavan
Roscommon Laois Wicklow Monaghan
Leitrim Kilkenny Kildare Fermanagh
Longford Carlow Meath Westmeath
BEYOND GEOLOCATION
• https://docs.mongodb.com
• http://geojson.org
• db.collection.mapReduce()
• db.collection.aggregate()
• Replica Sets
• Sharding

More Related Content

What's hot (20)

PDF
Hadoop - MongoDB Webinar June 2014
MongoDB
 
PPTX
1403 app dev series - session 5 - analytics
MongoDB
 
PDF
Mobile Application Development for the Web Developer
Craig Johnston
 
PPTX
Webinar: Applikationsentwicklung mit MongoDB : Teil 5: Reporting & Aggregation
MongoDB
 
PDF
MongoDB
Rawin Windygallery
 
PPT
Introduction to MongoDB
Nosh Petigara
 
PPT
Server side geo_tools_in_drupal_pnw_2012
Mack Hardy
 
KEY
MongoDB hearts Django? (Django NYC)
Mike Dirolf
 
PPTX
Introduction to MongoDB for C# developers
Taras Romanyk
 
PDF
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB
 
PDF
Analytics with MongoDB Aggregation Framework and Hadoop Connector
Henrik Ingo
 
ZIP
Web+GISという視点から見たGISの方向性
Hidenori Fujimura
 
PPTX
Docker & Azure
Alessandro Melchiori
 
PDF
MongoDB.local Paris Keynote
MongoDB
 
PDF
ENIB 2015 2016 - CAI Web S02E03 - Forge JS 2/4 - MongoDB and NoSQL
Horacio Gonzalez
 
PDF
Indexing
Mike Dirolf
 
PDF
ENIB 2015-2016 - CAI Web - S01E01- MongoDB and NoSQL
Horacio Gonzalez
 
PDF
Mongo Presentation by Metatagg Solutions
Metatagg Solutions
 
PPTX
Back to Basics Webinar 1: Introduction to NoSQL
MongoDB
 
PDF
CouchDB Open Source Bridge
Chris Anderson
 
Hadoop - MongoDB Webinar June 2014
MongoDB
 
1403 app dev series - session 5 - analytics
MongoDB
 
Mobile Application Development for the Web Developer
Craig Johnston
 
Webinar: Applikationsentwicklung mit MongoDB : Teil 5: Reporting & Aggregation
MongoDB
 
Introduction to MongoDB
Nosh Petigara
 
Server side geo_tools_in_drupal_pnw_2012
Mack Hardy
 
MongoDB hearts Django? (Django NYC)
Mike Dirolf
 
Introduction to MongoDB for C# developers
Taras Romanyk
 
MongoDB SoCal 2020: Best Practices for Working with IoT and Time-series Data
MongoDB
 
Analytics with MongoDB Aggregation Framework and Hadoop Connector
Henrik Ingo
 
Web+GISという視点から見たGISの方向性
Hidenori Fujimura
 
Docker & Azure
Alessandro Melchiori
 
MongoDB.local Paris Keynote
MongoDB
 
ENIB 2015 2016 - CAI Web S02E03 - Forge JS 2/4 - MongoDB and NoSQL
Horacio Gonzalez
 
Indexing
Mike Dirolf
 
ENIB 2015-2016 - CAI Web - S01E01- MongoDB and NoSQL
Horacio Gonzalez
 
Mongo Presentation by Metatagg Solutions
Metatagg Solutions
 
Back to Basics Webinar 1: Introduction to NoSQL
MongoDB
 
CouchDB Open Source Bridge
Chris Anderson
 

Similar to Geospatial Queries in MongoDB (20)

PPTX
MongoDB GeoSpatial Feature
Hüseyin BABAL
 
PPTX
Getting Started with Geospatial Data in MongoDB
MongoDB
 
PPTX
Open Source Mapping with Python, and MongoDB
techprane
 
PDF
Geospatial and MongoDB
Norberto Leite
 
KEY
Geospatial Indexing and Querying with MongoDB
Grant Goodale
 
PDF
Geospatial Enhancements in MongoDB 2.4
MongoDB
 
PPTX
Geoindexing with MongoDB
leafnode
 
PDF
MongoSF - Spatial MongoDB in OpenShift - script file
Steven Pousty
 
PPTX
Conceptos básicos. Seminario web 5: Introducción a Aggregation Framework
MongoDB
 
KEY
Mapping Flatland: Using MongoDB for an MMO Crossword Game (GDC Online 2011)
Grant Goodale
 
PDF
Comparing Geospatial Implementation in MongoDB, Postgres, and Elastic
Antonios Giannopoulos
 
PDF
Some cool features of MongoDB
Tugdual Grall
 
PPT
Mongo Web Apps: OSCON 2011
rogerbodamer
 
PPTX
Conceptos básicos. Seminario web 4: Indexación avanzada, índices de texto y g...
MongoDB
 
PDF
Spatial script for Spatial mongo for PHP and Zend
Steven Pousty
 
PPT
Building Applications with MongoDB - an Introduction
MongoDB
 
PPTX
Webinar: MongoDB 2.4 Feature Demo and Q&A on Geo Capabilities
MongoDB
 
PPT
Building Your First MongoDB Application (Mongo Austin)
MongoDB
 
PPT
Building web applications with mongo db presentation
Murat Çakal
 
PDF
A Century Of Weather Data - Midwest.io
Randall Hunt
 
MongoDB GeoSpatial Feature
Hüseyin BABAL
 
Getting Started with Geospatial Data in MongoDB
MongoDB
 
Open Source Mapping with Python, and MongoDB
techprane
 
Geospatial and MongoDB
Norberto Leite
 
Geospatial Indexing and Querying with MongoDB
Grant Goodale
 
Geospatial Enhancements in MongoDB 2.4
MongoDB
 
Geoindexing with MongoDB
leafnode
 
MongoSF - Spatial MongoDB in OpenShift - script file
Steven Pousty
 
Conceptos básicos. Seminario web 5: Introducción a Aggregation Framework
MongoDB
 
Mapping Flatland: Using MongoDB for an MMO Crossword Game (GDC Online 2011)
Grant Goodale
 
Comparing Geospatial Implementation in MongoDB, Postgres, and Elastic
Antonios Giannopoulos
 
Some cool features of MongoDB
Tugdual Grall
 
Mongo Web Apps: OSCON 2011
rogerbodamer
 
Conceptos básicos. Seminario web 4: Indexación avanzada, índices de texto y g...
MongoDB
 
Spatial script for Spatial mongo for PHP and Zend
Steven Pousty
 
Building Applications with MongoDB - an Introduction
MongoDB
 
Webinar: MongoDB 2.4 Feature Demo and Q&A on Geo Capabilities
MongoDB
 
Building Your First MongoDB Application (Mongo Austin)
MongoDB
 
Building web applications with mongo db presentation
Murat Çakal
 
A Century Of Weather Data - Midwest.io
Randall Hunt
 
Ad

Recently uploaded (20)

PPTX
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
PDF
Mobile CMMS Solutions Empowering the Frontline Workforce
CryotosCMMSSoftware
 
PPTX
MailsDaddy Outlook OST to PST converter.pptx
abhishekdutt366
 
PPTX
Platform for Enterprise Solution - Java EE5
abhishekoza1981
 
PPTX
How Apagen Empowered an EPC Company with Engineering ERP Software
SatishKumar2651
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PDF
Revenue streams of the Wazirx clone script.pdf
aaronjeffray
 
PPTX
Engineering the Java Web Application (MVC)
abhishekoza1981
 
PPTX
Revolutionizing Code Modernization with AI
KrzysztofKkol1
 
PDF
Salesforce CRM Services.VALiNTRY360
VALiNTRY360
 
PPTX
Fundamentals_of_Microservices_Architecture.pptx
MuhammadUzair504018
 
PPTX
Human Resources Information System (HRIS)
Amity University, Patna
 
PPTX
A Complete Guide to Salesforce SMS Integrations Build Scalable Messaging With...
360 SMS APP
 
PDF
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
PPTX
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
3uTools Full Crack Free Version Download [Latest] 2025
muhammadgurbazkhan
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Mobile CMMS Solutions Empowering the Frontline Workforce
CryotosCMMSSoftware
 
MailsDaddy Outlook OST to PST converter.pptx
abhishekdutt366
 
Platform for Enterprise Solution - Java EE5
abhishekoza1981
 
How Apagen Empowered an EPC Company with Engineering ERP Software
SatishKumar2651
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
Revenue streams of the Wazirx clone script.pdf
aaronjeffray
 
Engineering the Java Web Application (MVC)
abhishekoza1981
 
Revolutionizing Code Modernization with AI
KrzysztofKkol1
 
Salesforce CRM Services.VALiNTRY360
VALiNTRY360
 
Fundamentals_of_Microservices_Architecture.pptx
MuhammadUzair504018
 
Human Resources Information System (HRIS)
Amity University, Patna
 
A Complete Guide to Salesforce SMS Integrations Build Scalable Messaging With...
360 SMS APP
 
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
Ad

Geospatial Queries in MongoDB

Editor's Notes

  • #4: NoSQL JSON-like documents Rows & tables vs documents & collections
  • #5: GeoJSON is a standard format for encoding a variety of geographic data structures Well supported by google maps js, leaflet.js, mapbox Point is a single gps position Polygon is a bounded area, represented by an array of coordinates, first + last same, closed loop.
  • #6: Off coast between dungarvan & youghal
  • #7: Allows you to search for documents in a collection that are near a point you specify in your query Min and max optional and specified in Meters Use case – operator can send messages to active boaters near a specific location
  • #8: Allows search for documents in a collection that are enclosed in a specific boundary Use case – we could define a boundary for each coastguard flotaill and then use those boundaries to search for active trips that are within area of responsibility
  • #9: Intersects allows search for geographical areas in a collection that partially overlap with an area you supply in your query Geojson collection of counties Aprox 500k gps positions in the county collection