UNKNOWN
Project description
A Django application which manage administrative geographical data. It use Modified Preorder Tree Traversal, provided by django-mptt https://github.com/django-mptt/django-mptt/
Geo is not intented to replace a GIS, but to manage all the cases where you have administrative trees, with a strict/lazy hierarchy.
Models
Country
Area
Location
AdministrativeAreaType
Currency
Examples
Three levels
italy = Country.objects.get(iso_code='IT') regione, __ = italy.administrativeareatype_set.get_or_create(name='Regione') provincia,__ = italy.administrativeareatype_set.get_or_create(name='Provincia', parent=regione) comune, __= italy.administrativeareatype_set.get_or_create(name='Comune', parent=provincia) lazio, __ = AdministrativeArea.objects.get_or_create(country=italy, name ='Lazio', type=regione) roma_provincia, __ = AdministrativeArea.objects.get_or_create(country=italy, name ='Provincia di Roma', type=provincia, parent=lazio) roma_comune, __ = AdministrativeArea.objects.get_or_create(country=italy, name ='Comune di Roma', type=comune, parent=roma_provincia) roma, __ = Location.objects.get_or_create(country=italy, name ='Roma', type=Location.CITY, area=roma_comune)Two levels,
us = Country.objects.get(iso_code='US') state, __ = italy.administrativeareatype_set.get_or_create(name='State') county,__ = italy.administrativeareatype_set.get_or_create(name='County', parent=state) ny, __ = AdministrativeArea.objects.get_or_create(country=us, name ='New York', type=state) columbia, __ = AdministrativeArea.objects.get_or_create(country=us, name ='Columbia', type=county, parent=ny) hudson, __ = Location.objects.get_or_create(country=us, name ='Hudson', type=Location.CITY, area=columbia, is_administrative=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Close
Hashes for django-geo-0.0.1.dev712b2db7d5d2a750f91d3c7164b5a44d4e8b5b2a.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef0a34dcdabc777c77c12648f4f9fa3e3de26126e1c83b40674d0dce6067e444 |
|
MD5 | 56a1a00d26bc9d1886dc2cc2a23f6bf0 |
|
BLAKE2b-256 | 81df9daa59804bd975941b5aebaca7ada39c55e58c7a090ba28627e19f84da40 |