GRASS GIS Standardized Sample Datasets: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
m (+World data set link)
(→‎Tools to help with managing a dataset: add the display Python script)
Line 72: Line 72:
* [http://grass.osgeo.org/grass70/manuals/addons/g.rename.many.html g.rename.many] for renaming large amount of maps (to standard names or to/from different language)
* [http://grass.osgeo.org/grass70/manuals/addons/g.rename.many.html g.rename.many] for renaming large amount of maps (to standard names or to/from different language)
* [http://grass.osgeo.org/grass70/manuals/addons/r.in.proj.html r.in.proj] and [http://grass.osgeo.org/grass70/manuals/addons/v.in.proj.html v.in.proj] for importing data with different coordinate system
* [http://grass.osgeo.org/grass70/manuals/addons/r.in.proj.html r.in.proj] and [http://grass.osgeo.org/grass70/manuals/addons/v.in.proj.html v.in.proj] for importing data with different coordinate system
* [https://trac.osgeo.org/grass/browser/grass-addons/tools/std_dataset_display.py Python script std_dataset_display.py]

Revision as of 11:34, 18 July 2015

See Trac wiki page for the development of the dataset.

List of datasets

Already published:

  • North Carolina GRASS Sample Location (map names partially standardized, content partially standardized, currently used dataset, to be deprecated)
  • Piemonte, Italy (map names not standardized, content not standardized, work in progress)
  • Spearfish, USA (to be phased out)

Planning - Future datasets

Examples

Computing slope and aspect

Compute slope, aspect and profile curvature of the terrain:

g.region raster=elevation
r.slope.aspect elevation=elevation slope=slope aspect=aspect pcurvature=profile_curvature


North Carolina (USA) dataset
Piemonte (Italy) dataset
Puerto Rico dataset
Czech Republic dataset

Visualizing shaded relief

Visualize digital elevation model with shaded relief:

g.region raster=elevation
r.relief input=elevation output=shade
d.shade shade=shade color=elevation

Where are the datasets used

Tools to help with managing a dataset