├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── data ├── .gitignore ├── Makefile ├── ch-nw.pmtiles └── tiff │ ├── N265E425.tif │ ├── byte.tif │ ├── f32nan_data.tif │ ├── float32.tif │ ├── float64.tif │ ├── incomplete_strips.tiff │ ├── int16.tif │ ├── int32.tif │ ├── rgbsmall.tif │ ├── sat.tif │ ├── sat_multiband.tif │ ├── small_world.tif │ ├── small_world_pct.tif │ └── utm.tif ├── examples ├── crop.rs ├── geotiff_dtm.rs ├── http_dtm.rs ├── img2ascii.rs ├── info.rs └── pixel.rs ├── justfile ├── src ├── geo.rs ├── geotiff.rs ├── lib.rs └── pmtiles.rs └── tests └── geotiff.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/ch-nw.pmtiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/ch-nw.pmtiles -------------------------------------------------------------------------------- /data/tiff/N265E425.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/N265E425.tif -------------------------------------------------------------------------------- /data/tiff/byte.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/byte.tif -------------------------------------------------------------------------------- /data/tiff/f32nan_data.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/f32nan_data.tif -------------------------------------------------------------------------------- /data/tiff/float32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/float32.tif -------------------------------------------------------------------------------- /data/tiff/float64.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/float64.tif -------------------------------------------------------------------------------- /data/tiff/incomplete_strips.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/incomplete_strips.tiff -------------------------------------------------------------------------------- /data/tiff/int16.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/int16.tif -------------------------------------------------------------------------------- /data/tiff/int32.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/int32.tif -------------------------------------------------------------------------------- /data/tiff/rgbsmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/rgbsmall.tif -------------------------------------------------------------------------------- /data/tiff/sat.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/sat.tif -------------------------------------------------------------------------------- /data/tiff/sat_multiband.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/sat_multiband.tif -------------------------------------------------------------------------------- /data/tiff/small_world.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/small_world.tif -------------------------------------------------------------------------------- /data/tiff/small_world_pct.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/small_world_pct.tif -------------------------------------------------------------------------------- /data/tiff/utm.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/data/tiff/utm.tif -------------------------------------------------------------------------------- /examples/crop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/examples/crop.rs -------------------------------------------------------------------------------- /examples/geotiff_dtm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/examples/geotiff_dtm.rs -------------------------------------------------------------------------------- /examples/http_dtm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/examples/http_dtm.rs -------------------------------------------------------------------------------- /examples/img2ascii.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/examples/img2ascii.rs -------------------------------------------------------------------------------- /examples/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/examples/info.rs -------------------------------------------------------------------------------- /examples/pixel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/examples/pixel.rs -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/justfile -------------------------------------------------------------------------------- /src/geo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/src/geo.rs -------------------------------------------------------------------------------- /src/geotiff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/src/geotiff.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/pmtiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/src/pmtiles.rs -------------------------------------------------------------------------------- /tests/geotiff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pka/georaster/HEAD/tests/geotiff.rs --------------------------------------------------------------------------------