Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avdata99/testing-geodjango
Pruebas sobre GeoDjango y postgis
https://github.com/avdata99/testing-geodjango
Last synced: about 1 month ago
JSON representation
Pruebas sobre GeoDjango y postgis
- Host: GitHub
- URL: https://github.com/avdata99/testing-geodjango
- Owner: avdata99
- License: gpl-3.0
- Created: 2016-07-09T14:49:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-09T15:03:52.000Z (over 8 years ago)
- Last Synced: 2024-10-13T20:42:10.181Z (3 months ago)
- Language: Python
- Size: 6.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Testing GeoDjango
Pruebas sobre GeoDjango y postgisSiguiendo el tutorial en
https://docs.djangoproject.com/es/1.9/ref/contrib/gis/### Instalar
```
# Crear entorno
mkvirtualenv geodjango --python=python3
pip install -r requirements.txt
# crear una base de datos en postres segun las instrucciones
python manage.py migrate
python manage.py loaddata fixtures.json
```### Editar GIS directo desde el admin:
Hay widgets especiales para administrar estos modelos
```
from django.contrib.gis import admin
```Puede usarse el estándar _GeoModelAdmin_
```
admin.site.register(WorldBorder, admin.GeoModelAdmin)
```
O el especial de _OpenStreetMaps_
```
admin.site.register(WorldBorder, admin.OSMGeoAdmin)
```#### Imágenes
![Imagen1](https://github.com/avdata99/testing-GeoDjango/blob/master/Selección_082.png?raw=true)
![Imagen2](https://github.com/avdata99/testing-GeoDjango/blob/master/Selección_083.png?raw=true)