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

link|improve this question

1  
Although I've provided my own scraping-the-bottom-of-the-barrel solution, there must be a better way that is pure Java? As well as being complicated and potentially difficult to maintain, my solution would require a recompile for each platform. – winwaed Nov 4 '10 at 12:38
feedback

2 Answers

up vote 2 down vote accepted
+50

GeoTIFF-JAI should be able to do this:

http://sourceforge.net/projects/geotiff-jai/

GeoTIFF-AI incorporates Extensible-TIFF-JAI, which is an extensible codec allowing tiled images, etc.

There's also a GeoTIFF metadata adapter for Java ImageIO at:

www.gelbin.org/code/

and the NetCDF library also includes a GeoTIFF writer, documented at:

www.unidata.ucar.edu/software/netcdf-java/v4.0/javadocAll/ucar/nc2/geotiff/GeotiffWriter.html

link|improve this answer
1  
It looks like GeoTIFF-JAI hasn't been updated in well over a year, but the others look like they will be more useful. – winwaed Nov 4 '10 at 20:53
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.