projectionintro.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Projections in GRASS GIS</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  6. <meta name="Author" content="Markus Neteler/GRASS Development Team">
  7. <link rel="stylesheet" href="grassdocs.css" type="text/css">
  8. </head>
  9. <body bgcolor="white">
  10. <img src="grass_logo.png" alt="GRASS logo"><hr align=center size=6 noshade>
  11. <!-- file source: doc/projectionintro.html -->
  12. <!-- meta page description: Projections and spatial transformations -->
  13. <h2>Projections and spatial transformations in GRASS GIS</h2>
  14. <h3>Introduction</h3>
  15. A GRASS location is referenced with a single projection and coordinate system
  16. (or unreferenced as XY location). When creating a new location from an existing
  17. raster or vector map using the tools available from the startup screen or
  18. the map import commands, projection and coordinate system are defined.
  19. To change the projection of maps, a new location has to be created and
  20. the desired maps have to be reprojected into it from the source location
  21. as explained below.
  22. <h3>Raster map projections</h3>
  23. Raster maps are backward projected in GRASS. This means that the
  24. user has to run the raster projection command (<a href=r.proj.html>r.proj</a>)
  25. in the target location and "pull" the map from the source location.
  26. Both locations need to have a projection defined.
  27. <h3>Raster map transformation</h3>
  28. To transform an unprojected map from a XY location into a projected
  29. location (or another XY location), a forward transformation is performed.
  30. The unreferenced map is geocoded within the XY location by defining
  31. four corner points or by seeking several ground control points
  32. (<a href="i.group.html">i.group</a>, <a href="i.target.html">i.target</a>,
  33. <a href="i.points.html">i.points</a>) and then transformed into the
  34. target location (<a href="i.rectify.html">i.rectify</a>). Polynomial
  35. transformation of 1st, 2nd and 3rd order are supported.
  36. <P>
  37. A graphical user interface is provided by <a href="gis.m.html">gis.m</a>.
  38. <P>
  39. To simply translate a raster map (without stretching or rotation), the
  40. <a href="r.region.html">r.region</a> command can be used.
  41. <h3>Vector map projections</h3>
  42. Vector maps are backward projected in GRASS. This means that the
  43. user has to run the vector projection command (<a href=v.proj.html>v.proj</a>)
  44. in the target location and "pull" the map from the source location.
  45. Both locations need to have a projection defined.
  46. <h3>Vector map transformation</h3>
  47. To transform an unprojected map (e.g. CAD map) into projected coordinates,
  48. a forward transformation is performed. The unreferenced map is imported
  49. into the location with projection and geocoded within this location by
  50. defining four corner points or by seeking several ground control points.
  51. These points are stored into an ASCII file and then transformed within
  52. the same location (<a href="v.transform.html">v.transform</a>).
  53. <P>
  54. A graphical user interface is provided by <a href="gis.m.html">gis.m</a>.
  55. <h3>References</h3>
  56. <ul>
  57. <li> <a href="http://www.asprs.org/resources/grids/">ASPRS Grids and Datum</a>
  58. <li> <a href="http://www.remotesensing.org/geotiff/proj_list/">Projections Transform List</a> (PROJ4)
  59. <li> <a href="http://www.mapref.org">MapRef - The Collection of Map Projections and Reference Systems for Europe</a>
  60. <li> <a href="http://crs.bkg.bund.de/crs-eu/">Information and Service System for European Coordinate Reference Systems - CRS</a>
  61. </ul>
  62. <h3>See also</h3>
  63. <ul>
  64. <li><a href=rasterintro.html>Introduction to GRASS raster map processing</a></li>
  65. <li><a href=imageryintro.html>Introduction to GRASS image processing</a></li>
  66. <li><a href=vectorintro.html>Introduction to GRASS vector map processing</a></li>
  67. </ul>
  68. <HR>
  69. <P><a href="index.html">Main index</a> - <a href="full_index.html">full index</a>
  70. <P>&copy; 2008 <a href="http://grass.osgeo.org">GRASS Development Team</a></P>
  71. </body>
  72. </html>