Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django: How do i store a geo point in database

Needed correct datatype for geo points.

I will get and display it with google map API so format like

  • 42.761819,11.104863
  • 41.508577,-101.953125

Usecase:

  • user click on map
  • django save this point with additional data
  • on next visiting django display this points on map

So, no distances beetween points and etc hacks.

DB: postgres 8

Django: 1.4

like image 788
b1_ Avatar asked Jul 10 '12 20:07

b1_


People also ask

How does Django store data in database?

Creating objectsTo create an object, instantiate it using keyword arguments to the model class, then call save() to save it to the database. This performs an INSERT SQL statement behind the scenes. Django doesn't hit the database until you explicitly call save() . The save() method has no return value.

What is Srid in Django?

The SRID is an integer specifier that corresponds to the projection system that will be used to interpret the data in the spatial database. [3] Projection systems give the context to the coordinates that specify a location.

Where is Django data stored?

By default, Django stores files locally, using the MEDIA_ROOT and MEDIA_URL settings.


2 Answers

Check out GeoDjango and see if it helps you. If your stack is configured to run GeoDjango, you can do this.

Your models will looks like this

from django.contrib.gis.db import models
class LocationPoint(models.Model):
    point = models.PointField(srid=4326,dim=3)
    accuracy = models.FloatField(default=0.0)
    objects = models.GeoManager()

To save the point to the database all you will have to do is

from django.contrib.gis.geos import Point
point = Point(x=12.734534, y=77.2342, z=0, srid=4326)

location = LocationPoint()
location.point = point
location.save()

GeoDjango gives you extended abilities to do geospatial queries which you might be interested in the near future, like finding the distance between points, finding the nearest locations around a point etc.

Here's the link to GeoDjango

like image 143
Mevin Babu Avatar answered Oct 07 '22 18:10

Mevin Babu


From django documentation about DecimalField:

DecimalField.max_digits

The maximum number of digits allowed in the number. Note that this number must be greater than or equal to decimal_places.

DecimalField.decimal_places

The number of decimal places to store with the number.

which is refering to the Python Decimal

To make good choice about accurate data type and precission you should consider:

  1. what is minimum possible value (latitude can be from 0 (down)up to (-)90 degrees) _ _.
  2. what is maximum possible value (longitude can range from 0 (down)up to (-)180 degrees) _ _ _.
  3. what is accuracy (decimal_places), you wish. Pleas notice that it has impact on zoom level on Google Maps.

By the way, for better understanding, it is good to know how the calculation is done (Python code):

def deg_to_dms(deg):
    d = int(deg)
    md = abs(deg - d) * 60
    m = int(md)
    sd = (md - m) * 60
    return [d, m, sd]

def decimal(deg,min,sec): 
    if deg < 0:
       dec= -1.0 * deg + 1.0 * min/60.0 + 1.0 * sec/3600.0
       return -1.0 * dec
    else:
        dec=1.0 * deg + 1.0 * min/60.0 + 1.0 * sec/3600.0;

    return dec
like image 26
andilabs Avatar answered Oct 07 '22 18:10

andilabs