Tagged Questions
1
vote
0answers
19 views
informations about “gdaltransform” utility of GDAL
I have a doubt about GDAL reprojection.
I use "gdalwarp" utility to reproject an image in a specific projection system (for example WGS84 UTM49).
"gdalinfo" on original image displays this corner ...
0
votes
0answers
17 views
Is it possible to keep tiling and overviews when reprojecting in GDAL?
I have the following script to reproject GeoTIFFs to EPSG:3857 and retile and then create overviews.
#!/bin/bash
#reproject all ...
0
votes
0answers
36 views
project geotiff to NSIDC Sea Ice Polar Stereographic North (EPSG:3411) with gdalwarp
I a trying to project a signed byte .tiff file (sea ice concentration data) from a uniform unprojected grid (latitudes: -89.875° to 89.875° by 0.25°, longitudes:-179.875° to 179.875° by 0.25°) to ...
2
votes
2answers
103 views
Cartesian world sized projection WKT/EPSG code?
I am after the EPSG code or Well Known Text (WKT) of a projection that puts the centre of the earth a 0,0,0 and each point is a cartesian XYZ distance from that.
My existing data is in WGS84 ...
2
votes
2answers
137 views
What's the best projection for rasterization of random latitude and longitude data in the northern Atlantic?
I have a dataset in the WGS84 geographic coordinate system that I would like to interpolate along a grid using Python.
It appears gdal_grid is not available through the Python bindings, so I plan to ...
1
vote
2answers
98 views
ESRI State Plane Coordinates as EPSG
I am working with some State Plane projections from Colorado. I have looked them up on spatialreference.org and they are the following:
ESRI:102254: NAD 1983 HARN StatePlane Colorado Central FIPS ...
0
votes
0answers
93 views
How to re-project the EASE (Equal Area Scalable Earth) grid with a ~25 km cylindrical projection to WGS84 0.25 degree?
I have nc files ,here is one file https://echange-fichiers.inra.fr/get?k=LUfqiyO1Dl7az5bihnS. from the metadata ,the projection is cylindrical and the resolution is 25 km:
...
3
votes
0answers
121 views
Bug in gdalwarp's simple nearest neighbor? Or more likely I need some help
I'm trying to understand how to use the GDAL utilities a little better. I think I've defined something incorrectly or I've found a bug in gdalwarp. My bet is that I've defined something incorrectly, ...
1
vote
0answers
56 views
resampling errors
I have to reproject my images, but it contains some resampling errors. Any one has any idea on significance of resampling error. Are they neglectable? Is there any good documentation to refer to? I'll ...
2
votes
1answer
713 views
Convert area from square meters to degrees globally
I have a global raster file with 3600x1800 pixels. I don't have any information about the projection used.
The raster contains one band with a quantity with the unit "per square meter". How can I ...
3
votes
1answer
385 views
Reproject script in Python with GDAL
I'm having a lot of trouble with GDAL. Besides just the at times lacking documentation, there seems to be little support in Python. Anyways this is just a batch reproject script that goes thusly:
...
1
vote
3answers
2k views
Convert Lambert Conformal Conic to WGS84
I am trying to convert my "Lambert Conformal Conic map with 2 standard parallels" to the basic/standard WGS84 projection that Google Maps use.
I have 30 of these maps which I need to convert. They ...
1
vote
1answer
410 views
Problems with gdal1.8 Java bindings gdal.ReprojectImage, produces no data
I have a problem with gdal.ReprojectImage from gdal1.8 Java
bindings. When I perform the reprojection, the projected image is
totally black. And the origin of the projected image is wrong too.
There ...
3
votes
1answer
185 views
Unexpected Result After Reprojection Attempt
I'm a member of a student team that is currently researching how to query raster information using PostGIS v2.0. Our raster's coordinate system is EPSG 2236 (NAD 83 / Florida East) and as we will be ...
2
votes
1answer
170 views
gdalwarp results all black
I'm trying to convert a bmp image in BNG to WGS84 using gdalwarp (via QGIS). It seems to be running without errors but the output is all black. What am I doing wrong?
4
votes
3answers
1k views
reprojecting geotiffs to spherical mercator using gdalwarp
I would like to reproject raster images (tiffs+proj+tfw) files too "google's" projection using gdalwarp. From what I understand, google uses epsg:900913/epsg:3785.
What I don't know is how to ...