mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-25 05:52:32 +03:00
tiger import: convert counties to str
For python2 the gdal features come out as str and cannot be combined with unicode strings.
This commit is contained in:
parent
a71200a57a
commit
9ac401267a
@ -161,9 +161,9 @@ def parse_shp_for_geom_and_tags( filename ):
|
||||
statefp = poFeature.GetField("STATEFP")
|
||||
countyfp = poFeature.GetField("COUNTYFP")
|
||||
if (statefp != None) and (countyfp != None):
|
||||
county_name = county_fips_data[statefp + '' + countyfp]
|
||||
county_name = county_fips_data.get(statefp + '' + countyfp)
|
||||
if county_name:
|
||||
tags["tiger:county"] = county_name
|
||||
tags["tiger:county"] = county_name.encode("utf-8")
|
||||
|
||||
# tlid = poFeature.GetField("TLID")
|
||||
# if tlid != None:
|
||||
|
Loading…
Reference in New Issue
Block a user