wiki:FAQCoordinateSystemsAndProjections

Version 1 (modified by Mateusz Łoskot, 17 years ago) ( diff )

New page for FAQ for CRS and Projs

FAQ - Coordinate Systems and Projections

What are Well Known Text projections, and how do I use them?

OpenGIS Well Known Text is a textual format for defining coordinate systems. It is loosely based on the EPSG coordinate systems model. While GDAL itself just passes these definitions around as text strings, there is also an OGRSpatialReference class in gdal/ogr for manipulating them and a linkage to PROJ.4 for transforming between coordinate systems. The OGRSpatialReference, and PROJ.4 linkaged (but not PROJ.4 itself) is linked into the GDAL shared library by default. More documentation on WKT and OGRSpatialReference can be found in the OGR Projections Tutorial.

Can I reproject rasters with GDAL?

Yes, you can use the gdalwarp utility program or programmatically use the GDALWarpOperation class described in the GDAL Warp API Tutorial.

Note: See TracWiki for help on using the wiki.