Changes between Version 16 and Version 17 of FAQ


Ignore:
Timestamp:
Apr 22, 2007, 10:48:09 AM (17 years ago)
Author:
Mateusz Łoskot
Comment:

Migrated FAQ for CRS and Projs

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v16 v17  
    77 5. [wiki:FAQCoordinateSystemsAndProjections Coordinate Systems and Projections]
    88 6. [wiki:FAQMiscellaneous Miscellaneous]
    9 
    10 == Vector Support ==
    11 
    12 ''TBD''
    13 
    14 == Coordinate Systems and Projections ==
    15 
    16 === What are ''Well Known Text'' projections, and how do I use them? ===
    17 
    18 ''OpenGIS Well Known Text'' is a textual format for defining coordinate systems. It is loosely based on the [http://www.epsg.org/ EPSG] coordinate systems model. While GDAL itself just passes these definitions around as text strings, there is also an [http://www.gdal.org/ogr/classOGRSpatialReference.html OGRSpatialReference] class in ''gdal/ogr'' for manipulating them and a linkage to [http://proj.maptools.org/ 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 [http://www.gdal.org/ogr/osr_tutorial.html OGR Projections Tutorial].
    19 
    20 === Can I reproject rasters with GDAL? ===
    21 
    22 Yes, you can use the gdalwarp utility program or programmatically use the [http://www.gdal.org/classGDALWarpOperation.html GDALWarpOperation] class described in the [http://www.gdal.org/warptut.html GDAL Warp API Tutorial].
    239
    2410== Miscellaneous ==