Opened 13 years ago
Closed 13 years ago
#1238 closed defect (fixed)
[raster] Resample and upperleftx , upperlefty
Reported by: | standa | Owned by: | pracine |
---|---|---|---|
Priority: | medium | Milestone: | PostGIS 2.0.0 |
Component: | raster | Version: | master |
Keywords: | ST_Resample | Cc: |
Description
Hi I load in the raster having SRID = 4326 I like to reproject this raster to the 3844 when I test
SELECT rid, (foo.md).* FROM (SELECT rid,ST_MetaData(ST_Resample(rast,3844,0.002,0.002)) As md FROM dem_table1 WHERE rid=1) as foo;
and obtain the same upperleftx , upperlefty as for the original raster. I tested also ST_Transform - the same result → is it OK? Thank you
Change History (9)
comment:1 by , 13 years ago
Summary: | Resample and upperleftx , upperlefty → [raster] Resample and upperleftx , upperlefty |
---|
comment:4 by , 13 years ago
I obtain wrong result = I have wrong version
I am using version downloaded from
http://www.postgis.org/download/windows/experimental.php#wktraster
For PostgreSQL 9.0(compiled …..)
Where I can download proper one? I am new in this area.
comment:5 by , 13 years ago
I'm pretty sure that you have the correct version. But, I can't tell which Windows package you are using. You should be using http://www.postgis.org/download/windows/pg90/experimental/postgis/postgis-pg90-binaries-2.0.0svn.zip
My guess is that GDAL isn't able to find the PROJ library since the upper-left corner isn't changing. You may want to try setting the environmental variable PROJSO and see if that helps.
http://trac.osgeo.org/gdal/wiki/ConfigOptions#PROJSO
Can you post your results from the SQL query I posted?
As I don't use Windows, I'm hoping Regina can chime in and offer some wisdom.
comment:6 by , 13 years ago
rid;upperleftx;upperlefty;width;height;scalex;scaley;skewx;skewy;srid;numbands 1;24.818115;45.822675;1;1;0.01;0.01;0;0;4326;1 2;24.818115;45.832675;1;1;0.00999999999999979;-0.00999999999999979;0;0;3844;1
comment:7 by , 13 years ago
I am going home - I will connect in 1 hour. I use Transform for shape - and it look OK
comment:8 by , 13 years ago
Can you set the environmental variable PROJSO to the path and filename of the PROJ library and try again?
No. That is incorrect. What versions (and revisions) of GDAL and PostGIS are you using? I created a test transforming from 4326 to 3844
If you run the SQL above, the results should be similar to:
The results above are from a machine running GDAL svn-trunk r23215 and PostGIS svn-trunk r7964.