You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django 1.8.4, Python 2.7.6.
Omitting the --format argument successfully produces a json file, but QGIS doesn't recognize it even with a geojson extension.
First of all, Django>=1.8 comes with the built in GeoJSON serializer, so most probably you don't need to use djgeojson at all. What about __init__() got an unexpected keyword argument 'use_natural_foreign_keys' error, the reason is that use_natural_keys option deprecated since Django 1.7 and another new ones introduced: use_natural_foreign_keys and use_natural_primary_keys.
Trying to use the serializer to make use of
python manage.py dumpdata --format=geojson find_my_place.County > find_my_place/data/counties.geojson
I have 'djgeojson' in my apps, and i have
Django 1.8.7, Python 2.7.10...
The text was updated successfully, but these errors were encountered: