[gdal-dev] GDAL/OGR 1.7.0 RC1 Available

2010-01-19 Thread Frank Warmerdam
Folks, I have prepared a first release candidate for the GDAL/OGR 1.7.0 release. http://download.osgeo.org/gdal/gdal-1.7.0RC1.tar.gz http://download.osgeo.org/gdal/gdal170RC1.zip News at: http://svn.osgeo.org/gdal/trunk/gdal/NEWS Also docs and autotest suite: http://download.osgeo.or

Re: [gdal-dev] scale in gdal_translate

2010-01-19 Thread Frank Warmerdam
Shawn GONG wrote: hi Frank and list, Does gdal_translate do individual band scaling ? i.e. gdal_translate -b 1 -scale [min1 max1] -b 2 -scale [min2 max2] -b 3 -scale [min3 max3] Shawn, No, you would need to scale them to individual files, and then restack them. Best regards, --

[gdal-dev] scale in gdal_translate

2010-01-19 Thread Shawn GONG
hi Frank and list, Does gdal_translate do individual band scaling ? i.e. gdal_translate -b 1 -scale [min1 max1] -b 2 -scale [min2 max2] -b 3 -scale [min3 max3] Thanks, Shawn ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/m

Re: [gdal-dev] error about gdal shared libraries from within GRASS

2010-01-19 Thread Isaac Ullah
Hi Roger, Thanks for the tips! Unfortunately, I think my problem is somehow different than what yours was. My GDAL installation is perfectly fine: $ gdalinfo --formats Supported Formats: VRT (rw+): Virtual Raster GTiff (rw+): GeoTIFF NITF (rw+): National Imagery Transmission Format ...

Re: [gdal-dev] No PROJ.4 translation for source SRS

2010-01-19 Thread Jamie Adams
There is no UTM zone specified in the input proj string. Is that the issue? On Tue, Jan 19, 2010 at 5:36 AM, Smart, Gary wrote: > I still can’t get to the bottom of this message – can anyone explain it… > > > > *ERROR 1: No PROJ.4 translation for source SRS, coordinate transformation > initial

Re: [gdal-dev] gdalwarp query

2010-01-19 Thread Frank Warmerdam
sriram.prasadbhas...@rmsi.com wrote: Hi. GDAL Warp generates a Resampled Output Image along with a TFW for a provided set of GCP's My question is .. is there any Parameter by which we keep the raw image untouched & generate only the TFW. By Adjusting the TFW parameters we can position the raw

RE: [gdal-dev] No PROJ.4 translation for source SRS

2010-01-19 Thread Harsh Govind
I have a feeling that you are missing GDAL_DATA environment variable with path to directory containing coordinate information. I have usually seen such errors in that case. Regards, Harsh Govind From: gdal-dev-boun...@lists.osgeo.org [gdal-dev-boun...@lis

Re: [gdal-dev] No PROJ.4 translation for source SRS

2010-01-19 Thread Frank Warmerdam
Smart, Gary wrote: I still can’t get to the bottom of this message – can anyone explain it… *ERROR 1: No PROJ.4 translation for source SRS, coordinate transformation initialization has failed*. I’m trying to convert the native coordinates in a file into WGS84 lat/longs. However, whe

[gdal-dev] No PROJ.4 translation for source SRS

2010-01-19 Thread Smart, Gary
I still can't get to the bottom of this message - can anyone explain it... ERROR 1: No PROJ.4 translation for source SRS, coordinate transformation initialization has failed. I'm trying to convert the native coordinates in a file into WGS84 lat/longs. However, when I create the OGRCoord

Re: [gdal-dev] gdalwarp query

2010-01-19 Thread Chaitanya kumar CH
Prasad, gdalwarp stretches the image to fit to the GCPs. The situation you described is only possible if the GCPs can be located with a first order polynomial. There will be no need to touch the image file except to read its filename and the dimensions. In that case you just need a small script t

[gdal-dev] gdalwarp query

2010-01-19 Thread SriRam . PrasadBhasker
Hi. GDAL Warp generates a Resampled Output Image along with a TFW for a provided set of GCP's My question is .. is there any Parameter by which we keep the raw image untouched & generate only the TFW. By Adjusting the TFW parameters we can position the raw image @ geopositioned Location.. Any