All Projects → OSGeo → grass-addons

OSGeo / grass-addons

Licence: GPL-2.0 license
GRASS GIS Addons Repository (Manuals: https://grass.osgeo.org/grass-stable/manuals/addons/ | Linux-logs: https://grass.osgeo.org/addons/grass8/logs/ | Windows logs: https://wingrass.fsv.cvut.cz/grass82/addons/grass-8.2.0/logs/)

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
HTML
75241 projects
C++
36643 projects - #6 most used programming language
shell
77523 projects
fortran
972 projects

Projects that are alternatives of or similar to grass-addons

mightyscape-1.X
A maintained extension collection for Inkscape 1.0+, working on Windows and Linux
Stars: ✭ 23 (-64.06%)
Mutual labels:  extensions, vector, addons
grass-ci
OUTDATED, use https://github.com/OSGeo/grass/ ! Continuous integration for GRASS GIS
Stars: ✭ 27 (-57.81%)
Mutual labels:  osgeo, geospatial-analysis, grass-gis
Free Gophers Pack
✨ This pack of 100+ gopher pictures and elements will help you to build own design of almost anything related to Go Programming Language: presentations, posts in blogs or social media, courses, videos and many, many more.
Stars: ✭ 2,343 (+3560.94%)
Mutual labels:  vector, raster
Gdal
GDAL is an open source X/MIT licensed translator library for raster and vector geospatial data formats.
Stars: ✭ 2,797 (+4270.31%)
Mutual labels:  vector, raster
Earthpy
A package built to support working with spatial data using open source python
Stars: ✭ 236 (+268.75%)
Mutual labels:  vector, raster
Geocube
Tool to convert geopandas vector data into rasterized xarray data.
Stars: ✭ 87 (+35.94%)
Mutual labels:  vector, raster
Mapchete
Tile-based geodata processing using rasterio & Fiona
Stars: ✭ 129 (+101.56%)
Mutual labels:  vector, raster
Earthenterprise
Google Earth Enterprise - Open Source
Stars: ✭ 2,425 (+3689.06%)
Mutual labels:  vector, raster
GDAL.jl
Thin Julia wrapper for GDAL - Geospatial Data Abstraction Library
Stars: ✭ 78 (+21.88%)
Mutual labels:  vector, raster
Ramda Adjunct
Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
Stars: ✭ 550 (+759.38%)
Mutual labels:  extensions, addons
Grass
GRASS GIS - free and open source Geographic Information System (GIS)
Stars: ✭ 281 (+339.06%)
Mutual labels:  vector, raster
library
Optimizely Library
Stars: ✭ 62 (-3.12%)
Mutual labels:  extensions, addons
Geospatial Python CourseV1
This is an collection of blog posts turned into a course format
Stars: ✭ 53 (-17.19%)
Mutual labels:  vector, raster
Python Geospatial
A collection of Python packages for geospatial analysis with binder-ready notebook examples
Stars: ✭ 187 (+192.19%)
Mutual labels:  vector, raster
actinia core
Actinia Core is an open source REST API for scalable, distributed, high performance processing of geographical data that uses mainly GRASS GIS for computational tasks (DOI: https://doi.org/10.5281/zenodo.5879231)
Stars: ✭ 41 (-35.94%)
Mutual labels:  geospatial-analysis, grass-gis
Ca Archive
Catalog of classic Firefox add-ons created before WebExtensions apocalypse
Stars: ✭ 383 (+498.44%)
Mutual labels:  extensions, addons
fasterRaster
Faster raster processing using GRASS GIS
Stars: ✭ 18 (-71.87%)
Mutual labels:  raster, grass-gis
profiletool
Home to the QGis Profiletool plugin. Initial work on this fork was partially funded by the C.A. La Rioja
Stars: ✭ 23 (-64.06%)
Mutual labels:  vector, raster
vsc-material-theme-icons
Material Theme Icons, the most epic icons theme for Visual Studio Code and Material Theme.
Stars: ✭ 90 (+40.63%)
Mutual labels:  vector
safe-svg
Enable SVG uploads and sanitize them to stop XML/SVG vulnerabilities in your WordPress website.
Stars: ✭ 129 (+101.56%)
Mutual labels:  vector

GRASS Addons git repository

How to get write access here

Read access is granted to the public, write access must be requested, see here for details: https://trac.osgeo.org/grass/wiki/HowToContribute#WriteaccesstotheGRASSaddonsrepository

However, it is also possible to fork this repository, insert your AddOn or fix an existing one in a new branch and finally open a pull request.

In either case, please read the submitting rules at the bottom of this page.

How to get the AddOn code

Clone of the entire AddOns git repository:

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

How to install or remove AddOns in your GRASS installation

The simplest way to install GRASS GIS AddOns is to use the g.extension module: https://grass.osgeo.org/grass-stable/manuals/g.extension.html

How to compile AddOn code

C code/Scripts, with GRASS source code on your computer

Preparations (assuming the source code in $HOME/grass/): (if you have already built GRASS from source you don't need to do this again. If adding to a binary install, the versions must match exactly. You need to git checkout the exact tag or commit used for the binary.)

./configure # [optionally flags]
make libs

The easiest way to compile GRASS AddOns modules into your GRASS code is by setting MODULE_TOPDIR on the fly to tell 'make' where to find the prepared GRASS source code:

make MODULE_TOPDIR=$HOME/grass/

(adapt to your /path/to/grass/). Each module/script in the GRASS AddOns git repository should have a Makefile to support easy installation.

Install then into your existing GRASS installation with

make MODULE_TOPDIR=$HOME/grass/ install

For system-wide installation this usually requires "root" privileges (so, also 'sudo' may help).

C code/Scripts, with GRASS binaries on your computer

compile GRASS AddOns modules into your GRASS code by setting MODULE_TOPDIR to where to the GRASS binaries are located:

make MODULE_TOPDIR=/usr/lib/grass/

How to submit contributions

To submit your GRASS GIS module here, please check

https://grass.osgeo.org/development/

The submission must be compliant with the GRASS submission rules as found in the GRASS source code and RFC2 (Legal aspects of submission):

https://trac.osgeo.org/grass/wiki/RFC

Also read submitting instructions before committing any changes!

https://trac.osgeo.org/grass/wiki/Submitting

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].