Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I write a GEOTIFF in Java?

I want to write a GEOTIFF, with all the geographic metadata in Java. Which library etc. works best for this purpose?

like image 215
Mnementh Avatar asked Sep 15 '10 09:09

Mnementh


2 Answers

This isn't an ideal solution but as no one else has replied in two months...

libgeotiff is a pretty good open source C++ library that I have successfully used in production code to read geotiff meta data. This could be used in Java with a bridge.

like image 166
winwaed Avatar answered Nov 02 '22 15:11

winwaed


check out geotools geotiffwriter: http://docs.geotools.org/stable/javadocs/org/geotools/gce/geotiff/GeoTiffWriter.html

like image 1
Andrew Cassidy Avatar answered Nov 02 '22 14:11

Andrew Cassidy