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
In the config there is this line of code for district types:
district_types = ['PPLX']
I have seen that the parents of PPLX is ADM5. I would like to include both.
But how can I later see the difference between those two kinds?
I guess there should also be a type field for districts.
Hi,
is it possible to get only the boroughs of a city?
Example:
berlin = City.objects.filter(name="Berlin")[0]
len(District.objects.filter(city=berlin))
This should be 12 but gives me 205 because it includes boroughs and districts.
https://en.wikipedia.org/wiki/Boroughs_and_neighborhoods_of_Berlin
Thank you :)
The text was updated successfully, but these errors were encountered: