Elmir, > I was trying to orthorectify World View 4 raster image using the gdalwarp. > I used '-rpc' with the input of DEM file. > However, I am wondering whether this method of orthorectification is making > use of the ".RBP" file data available with the World View image OR is it > just warping with the input DEM file without reading the ".RPB" file > contents? How can I make it read the ".RPB" file during > gdalwarp/orthorectification?
When you use -rpc, if there is no RPC information available, an error would be emitted. """ERROR 1: Unable to compute a RPC based transformation between pixel/line and georeferenced coordinates for .....""" So as you don't get one, you can assume the .RPB is used. You can also look at the output of gdalinfo on your input image, and you should show a "RPC Metadata" section Even -- Spatialys - Geospatial professional services http://www.spatialys.com _______________________________________________ gdal-dev mailing list [email protected] https://lists.osgeo.org/mailman/listinfo/gdal-dev
