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
There is an issue having to do with writing "list" properties in the GeoJSON driver (fiona / GDAL)
Looking at the testenv, it seems to be caused by GDAL 3.5. Tests with Gdal 3.4 (and the same Fiona) do not have the error. As I have GDAL 3.4 locally I am unable to reproduce this.
The issue is that the record to be written has fields ['str', 'dct', 'float', 'int'] while the existing schema (derived from the first file) has fields ['int', 'str', 'lst', 'dct', 'float']. I think empty lists are not written with the GDAL 3.5 GeoJSON driver anymore (see commit 0c39dfd)
There is an issue having to do with writing "list" properties in the GeoJSON driver (fiona / GDAL)
Looking at the testenv, it seems to be caused by GDAL 3.5. Tests with Gdal 3.4 (and the same Fiona) do not have the error. As I have GDAL 3.4 locally I am unable to reproduce this.
The issue is that the record to be written has fields
['str', 'dct', 'float', 'int']
while the existing schema (derived from the first file) has fields['int', 'str', 'lst', 'dct', 'float']
. I think empty lists are not written with the GDAL 3.5 GeoJSON driver anymore (see commit 0c39dfd)The text was updated successfully, but these errors were encountered: