AddOns/GRASS 7/general: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
(updated)
(update to GitHub URLs)
 
Line 1: Line 1:
{{AddOns}}
{{AddOns}}
* '''[http://grass.osgeo.org/grass70/manuals/addons/ GRASS GIS 7 Addons Manual pages] - a complete overview of available Addons'''
* '''[https://grass.osgeo.org/grass7/manuals/addons/ GRASS GIS 7 Addons Manual pages] - a complete overview of available Addons'''
* [https://trac.osgeo.org/grass/browser/grass-addons Browse the Svn add-ons code in the Trac system]
* [https://github.com/OSGeo/grass-addons/ Browse the GRASS GIS add-ons code on GitHub]
* For addon installation, simply use {{cmd|g.extension}}
* For addon installation, simply use {{cmd|g.extension}}
* Source code download: get all addons from the svn repository with:
* Source code download: get all addons from the git repository with:
  svn co https://svn.osgeo.org/grass/grass-addons/grass7/general/
  <code>git clone https://github.com/OSGeo/grass-addons.git</code>


__TOC__
__TOC__
Line 11: Line 11:
Connects GRASS session with another one in a cluster system.
Connects GRASS session with another one in a cluster system.


Source code: https://svn.osgeo.org/grass/grass-addons/grass7/general/g.cloud/
Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.cloud/


==== g.compare.md5 ====
==== g.compare.md5 ====
Line 17: Line 17:
g.md5sum is a module that checks if two GRASS maps are identical. It uses the MD5 cryptographic hash function. For vector map layers it does not check if the attribute table(s) are identical, too.  
g.md5sum is a module that checks if two GRASS maps are identical. It uses the MD5 cryptographic hash function. For vector map layers it does not check if the attribute table(s) are identical, too.  


Source code: https://svn.osgeo.org/grass/grass-addons/grass7/general/g.compare.md5/
Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.compare.md5/


==== g.copyall ====
==== g.copyall ====
Line 23: Line 23:
g.copyall copies maps/files of a specified from a selected mapset to the current working mapset. All maps/files can be copied or a subset of maps/files specified by a wildcard pattern or regular expression. Optionally, a prefix can be added to all files copied and vector topology can be rebuilt to match currently running version of GRASS.
g.copyall copies maps/files of a specified from a selected mapset to the current working mapset. All maps/files can be copied or a subset of maps/files specified by a wildcard pattern or regular expression. Optionally, a prefix can be added to all files copied and vector topology can be rebuilt to match currently running version of GRASS.


Source code: https://svn.osgeo.org/grass/grass-addons/grass7/general/g.copyall/
Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.copyall/


==== g.isis3mt ====
==== g.isis3mt ====
Line 29: Line 29:
g.isis3mt Generates an ISIS3 map template file according to the current GRASS projection parameters  
g.isis3mt Generates an ISIS3 map template file according to the current GRASS projection parameters  


Source code: https://svn.osgeo.org/grass/grass-addons/grass7/general/g.isis3mt/
Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.isis3mt/


==== g.proj.all ====
==== g.proj.all ====
Line 35: Line 35:
g.proj.all reprojects all raster and vector maps from given location and mapset to the current mapset. If flag r is set, current computational region is used for raster maps reprojection. Otherwise, each raster map is reprojected to its bounds, ignoring computational region in the current mapset. Modules r.proj and v.proj are used for reprojecting.  
g.proj.all reprojects all raster and vector maps from given location and mapset to the current mapset. If flag r is set, current computational region is used for raster maps reprojection. Otherwise, each raster map is reprojected to its bounds, ignoring computational region in the current mapset. Modules r.proj and v.proj are used for reprojecting.  


Source code: https://svn.osgeo.org/grass/grass-addons/grass7/general/g.proj.all/
Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.proj.all/


==== g.rename.many ====
==== g.rename.many ====
Line 41: Line 41:
g.rename.many renames multiple maps at once using g.rename module. Old and new names are read from a text file. The file format is a simple CSV (comma separated values) format with no text delimiter (e.g. no quotes around cell content). Comma is a default cell delimiter but it can be changed to anything.
g.rename.many renames multiple maps at once using g.rename module. Old and new names are read from a text file. The file format is a simple CSV (comma separated values) format with no text delimiter (e.g. no quotes around cell content). Comma is a default cell delimiter but it can be changed to anything.


Source code: https://svn.osgeo.org/grass/grass-addons/grass7/general/g.rename.many/
Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.rename.many/

Latest revision as of 07:31, 25 June 2020

git clone https://github.com/OSGeo/grass-addons.git

g.cloud

Connects GRASS session with another one in a cluster system.

Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.cloud/

g.compare.md5

g.md5sum is a module that checks if two GRASS maps are identical. It uses the MD5 cryptographic hash function. For vector map layers it does not check if the attribute table(s) are identical, too.

Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.compare.md5/

g.copyall

g.copyall copies maps/files of a specified from a selected mapset to the current working mapset. All maps/files can be copied or a subset of maps/files specified by a wildcard pattern or regular expression. Optionally, a prefix can be added to all files copied and vector topology can be rebuilt to match currently running version of GRASS.

Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.copyall/

g.isis3mt

g.isis3mt Generates an ISIS3 map template file according to the current GRASS projection parameters

Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.isis3mt/

g.proj.all

g.proj.all reprojects all raster and vector maps from given location and mapset to the current mapset. If flag r is set, current computational region is used for raster maps reprojection. Otherwise, each raster map is reprojected to its bounds, ignoring computational region in the current mapset. Modules r.proj and v.proj are used for reprojecting.

Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.proj.all/

g.rename.many

g.rename.many renames multiple maps at once using g.rename module. Old and new names are read from a text file. The file format is a simple CSV (comma separated values) format with no text delimiter (e.g. no quotes around cell content). Comma is a default cell delimiter but it can be changed to anything.

Source code: https://github.com/OSGeo/grass-addons/tree/master/grass7/general/g.rename.many/