Sean Gillies

Results 508 comments of Sean Gillies
trafficstars

@grwhumphries It's my understanding that I can't redistribute Esri's FileGDB API SDK. You have to download it yourself and make a GDAL plugin. Once you have, it should only take...

@dzanaga does this problem persist with newer versions of fiona and GDAL? Have you checked to see if this is a consequence of enabling partial reprojection?

@dzanaga thanks for the update. Let me see if I understand -- `box(199980., 2890200., 309780., 3000000.)` when reprojected to long/lat exactly touches the antimeridian?

@dzanaga although I don't understand why we see a problem with GDAL 2.4, I see a solution for you with GDAL 3+. Use OGC:CRS84 (strictly long/lat coordinate order) instead of...

I'm sorry it took me so long to realize that this is another manifestation of #919. Thank you so much for the data and code!

Potentially related: https://github.com/OSGeo/gdal/pull/2942.

In the first example you're using gpd.read_file. Different fiona installs perhaps? I found https://github.com/OSGeo/gdal/blob/master/gdal/NEWS#L1109, which indicates to me that this is a GDAL bug in 2.4.4 that has been fixed...

@fmaussion thanks for the report. Currently, Fiona obliges developers to cast values to Python types that map to the OGR field types. If your feature property was `str(np.int64(12))` the `write()`...

@LewisJarrod I wonder if this is related to https://github.com/rasterio/rasterio/issues/1521? The fiona 1.8.x series lacks that fix, and I will look into that. @rbuffat's suggestion of creating a new session object...

@rbuffat historically, the tests were all based on shapefiles, which was at the time the most used and most tested driver. And we did assume preservation of order. I would...