Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Rust library for accessing geospatial raster images

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
NotificationsYou must be signed in to change notification settings

pka/georaster

Repository files navigation

crates.io versiondocs.rs docs

Rust library for accessing geospatial raster images.

Usage examples

Read pixel value from GeoTIFF:

let img_file =BufReader::new(File::open("N265E425.tif").unwrap());letmut tiff =GeoTiffReader::open(img_file).unwrap();match tiff.read_pixel(x, y){RasterValue::U16(v) =>println!("Height: {v}"),    _ =>println!("Unexpected pixel type"),};

Extract part of GeoTIFF into a PNG:

let img_file =BufReader::new(File::open("N265E425.tif").unwrap());letmut tiff =GeoTiffReader::open(img_file).unwrap();let(x0, y0, w, h) =(2500,3000,100,100);letmut img =ImageBuffer::new(w, h);for(x, y, pixel)in tiff.pixels(x0, y0, w, h){ifletRasterValue::U16(v) = pixel{        img.put_pixel(x - x0, y - y0, image::Luma([v]));}}img.save("dtm.png").unwrap();

Running the examples

Download test data:

cd datamake
cargo run --example info data/tiff/N265E425.tifcargo run --example pixel data/tiff/N265E425.tif 2550 3050cargo run --example crop data/tiff/N265E425.tif 100x100+2500+3000 dtm.pngcargo run --example img2ascii data/tiff/sat.tifcargo run --example http_dtm

About

Rust library for accessing geospatial raster images

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp