On 10/06/11 14:39, [email protected] wrote: > > Hi Andréas, > thank you for your advice, but.. > can it be done programmatically? Geotiffs sent to our system should be > registered automatically, so there is nobody doing "gdalling". > > Of course it can be done, but I mean with a reasonable amount of efforts? >
mmm, not sure if that helps but it can be done easily programatically using a script. If you are using Linux, just execute the script I attached. Save it in a directory containing your TIF files and it will generate new files with the SRS set to EPSG:23029. Change that to fit your needs. If you use gdal, take into account the document I sent you before. Using GDAL will modify how the info is stored inside your file (creating biggers tiles or so). If you want to integrate in an existent application, AFAIK, gdal supports that by means of its API. Check out: http://www.gdal.org/ Don't know if it can be done with other technologies. best, amaneiro PS: the script #!/bin/bash for i in `ls *tif`; do gdal_translate -a_srs "EPSG:23029" $i output_$i done ------------------------------------------------------------------------------ EditLive Enterprise is the world's most technically advanced content authoring tool. Experience the power of Track Changes, Inline Image Editing and ensure content is compliant with Accessibility Checking. http://p.sf.net/sfu/ephox-dev2dev _______________________________________________ Geoserver-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geoserver-users
