Geographic Map Data
Map Analysis and Queries
The system leverages well known services for map data.
If we summarise GIS and GeoSpatial, geo spatial is GIS - the whole map data.
Only Map Analysis and Queries
* Measuring Unit for geographical points like we measure liquid in litres, m, solid kg
(30,15)
<gml:Point gml:id="p21" srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:coordinates>45.67, 88.56</gml:coordinates> </gml:Point>
"POINT (30 10)"
"LINESTRING (30 10, 10 30, 40 40)"
"POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))"
Our System Architecture
Point(5, 23)
LineString((0, 0), (0, 50), (50, 50), (50, 0), (0, 0))
Polygon( ((0.0, 0.0), (0.0, 50.0), (50.0, 50.0), (50.0, 0.0), (0.0, 0.0)) )
Factory.objects.filter(geofence__contains=geom)
Factory.objects.filter(geofence__intersects=geom)