geotiff icon indicating copy to clipboard operation
geotiff copied to clipboard

A noGDAL tool for reading and writing geotiff files

Results 16 geotiff issues
Sort by recently updated
recently updated
newest added

@KipCrossing In #48, I've staged the possibility of a potential git commit hook that runs [pydocstyle](http://www.pydocstyle.org/en/stable/). This is a linter that helps with ensuring that documentation of functions is properly...

documentation
enhancement

This PR will have breaking changes to allow the distributed (pickeling) of the classes and methods in this package. Specifically, it will remove the integration of `PyPorj` for transforming coordinates...

Adds methods for writing new geotiff files with new CRS, size and coordinates. Methods: - [ ] write - [ ] write_box ### TODO - Implement feature #25 - Read:...

Writing data to a tiff file should be easy via the tifffile package And writing the tags should also be straightforward using the [tifftools](https://github.com/DigitalSlideArchive/tifftools) package The hard part is mapping...

http://gis.ess.washington.edu/data/raster/drg/docs/geotiff.txt https://pyproj4.github.io/pyproj/stable/build_crs.html https://pyproj4.github.io/pyproj/stable/api/database.html#pyproj.database.get_codes https://pyproj4.github.io/pyproj/stable/api/enums.html#pyproj.enums.PJType eg: ```python log.info( pyproj.database.get_authorities()) log.info(pyproj.database.get_codes('EPSG', pyproj.enums.PJType.GEODETIC_CRS)) ```

New method `.close()` closes any connection opened by e.g. `read_box`, to the ZarrTiffStore corresponding to the GeoTiff. Fixes #69. ``` >>> import geotiff >>> import os >>> geo_tiff = geotiff.GeoTiff('o41078a7.tif')...

Hi! Thanks for the package- it's good to have a GeoTIFF reader that doesn't require struggling with GDAL. Unfortunately, I've been running into a bug in applying geotiff to my...

The bounding box cannot be determined using just two corners, but all the four corners should be taken into consideration. If using just two corners, it may happen that part...

At least with `as_crs=3857` I cannot correctly `read_box()` using the bounding box returned by `tif_bBox_converted`. This problem happens also when shrinking another dimension but keeping the other to match with...

Hi! I have been tracking your amazing library, which seems pretty cool. Yet, I have some problems with the Corine Land Cover geotiff ([link to download](https://land.copernicus.eu/pan-european/corine-land-cover/clc2018?tab=download)) As they say, the...