Tag Info

Hot answers tagged

3

You probably don't need to convert a GeoTiff to a Tiff. As a GeoTiff your image will not only be readable by any GIS package but probably can also be read by any image manipulation package too (e.g. Photoshop, GIMP etc) baring some exceptions. Image editing packages simply ignore the bits in the Tiff header that make it a GeoTiff - either that or they ...


3

AWK is perhaps the most effective tool for such text conversion (although if you're familiar with Perl you might prefer it, out of habit): it was designed for exactly this kind of one-off quick reformatting work. Here is the full AWK code to perform the requested operation on the input specified: BEGIN {OFS="\n"} {print $2, $3, $4, $5 $6, $7, $8 > $1} ...



Only top voted, non community-wiki answers of a minimum length are eligible