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
{{ message }}
This repository was archived by the owner on Sep 3, 2018. It is now read-only.
I just tried to upload this file (changed .kml extension for upload here) to a fusion table based on your script. Unfortunately I got the following error:
python ./ogr2ft.py -i test.kml -o test_fusion_table
Creating Fusion Table: test_fusion_table
Traceback (most recent call last):
File "./ogr2ft.py", line 184, in
convert(args.input_file, args.output_fusion_table, args.add_missing)
File "./ogr2ft.py", line 141, in convert
[dst_layer.CreateField(f.GetFieldDefnRef(i)) for i in range(f.GetFieldCount())]
AttributeError: 'NoneType' object has no attribute 'GetFieldCount'
I tried to strip your code to get to this point of error, but that seems to work on my system? E.g.:
from osgeo import ogr
ifile = "./test.kml"
driver = ogr.GetDriverByName('KML')
src_ds = driver.Open(ifile)
src_layer = src_ds.GetLayerByIndex(0)
f = src_layer.GetFeature(1)
for i in range(f.GetFieldCount()):
print(i,f.GetFieldDefnRef(i))
Hi Gena,
I just tried to upload this file (changed .kml extension for upload here) to a fusion table based on your script. Unfortunately I got the following error:
I tried to strip your code to get to this point of error, but that seems to work on my system? E.g.:
So I am not sure what's going on? Any ideas?
System: Ubuntu 16.04 64-bit, Python 3.6.4 |Anaconda custom (64-bit), osgeo gdal 2.2.2