Skip to main content

A Django application which manage administrative geographical data.

Project description

https://secure.travis-ci.org/saxix/django-geo.png?branch=master

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-geo-0.2.1b8.tar.gz (258.3 kB view details)

Uploaded Source

File details

Details for the file django-geo-0.2.1b8.tar.gz.

File metadata

File hashes

Hashes for django-geo-0.2.1b8.tar.gz
Algorithm Hash digest
SHA256 5f882d04dcb23ab4a7bff4cbae2222e7f6ea3b62deb9ed60d8e8a2d325e470f6
MD5 03d3706f02e9505e7c13e60abc2ce922
BLAKE2b-256 ed81bce62dd06e5bd13e12bf75d2649aa79fca3923de7716b714f1fde3cc0b44

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page