use rasterfakers::FakeGeoTiffBuilder; fn main() -> Result<(), Box> { let geotiff = FakeGeoTiffBuilder::new() .dimensions(256, 256)? .bands(1)? .projection("EPSG:4326") .output_path("basic_output.tiff") .build::()?; geotiff.write()?; println!("Basic GeoTIFF generated successfully!"); Ok(()) }