Sean Gillies

Results 508 comments of Sean Gillies
trafficstars

Thank you @olenaboiko303. I lack experience with Windows and PyCharm and don't know what the cause could be. I've just read that some Python packages can inadvertently change floating point...

@adehecq your analysis right on. I don't believe your number 3 would be very difficult to achieve.

@Erotemic rasterio has some north-up bias. We've eliminated some of it, but some may remain. The `tests/data/rotated.tif` file is our one (that I recall) case of a rotated file. If...

@fbunt thanks for reporting this! I'm not sure what to do about this at the moment. Being a namedtuple was supposed to be only an implementation detail for affine, but...

@groutr well, I was thinking to use attrs or a data class instead.

@yannforget I'll merge this PR if you make the change suggested by @tmcw, but FYI the project is currently unmaintained and there are no future releases scheduled at this time.

@snowman2 thank you for the explanation!

@jreiberkyle a work around exists: always open and access Fiona collections within the context of a `fiona.Env`: ``` with fiona.Env(), fiona.open("example.shp") as collection: print(collection.crs) ```