{"id":20198191,"url":"https://github.com/osgeo/grass-addons","last_synced_at":"2025-04-06T09:10:27.761Z","repository":{"id":38548899,"uuid":"187248482","full_name":"OSGeo/grass-addons","owner":"OSGeo","description":"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/grass83/addons/grass-8.3.2/logs/) ","archived":false,"fork":false,"pushed_at":"2024-04-29T14:42:41.000Z","size":217188,"stargazers_count":92,"open_issues_count":80,"forks_count":142,"subscribers_count":38,"default_branch":"grass8","last_synced_at":"2024-05-01T11:44:29.893Z","etag":null,"topics":["addons","extensions","geospatial-analysis","grass-gis","hacktoberfest","osgeo","raster","vector"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OSGeo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-17T16:24:48.000Z","updated_at":"2024-05-02T13:36:26.169Z","dependencies_parsed_at":"2024-05-02T13:48:02.389Z","dependency_job_id":null,"html_url":"https://github.com/OSGeo/grass-addons","commit_stats":{"total_commits":8471,"total_committers":154,"mean_commits":"55.006493506493506","dds":0.8352024554361941,"last_synced_commit":"300bc101acff15a99ea1f61964af864ee5044ce1"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSGeo%2Fgrass-addons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSGeo%2Fgrass-addons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSGeo%2Fgrass-addons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OSGeo%2Fgrass-addons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OSGeo","download_url":"https://codeload.github.com/OSGeo/grass-addons/tar.gz/refs/heads/grass8","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247457803,"owners_count":20941906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["addons","extensions","geospatial-analysis","grass-gis","hacktoberfest","osgeo","raster","vector"],"created_at":"2024-11-14T04:29:49.011Z","updated_at":"2025-04-06T09:10:27.740Z","avatar_url":"https://github.com/OSGeo.png","language":"Python","readme":"# GRASS GIS Addons Code Repository\n\n## How to get the addon code\n\nClone of the entire repository:\n\n```bash\ngit clone https://github.com/OSGeo/grass-addons.git grass-addons\n```\n\n## How to install or remove addons in your GRASS installation\n\nThe simplest way to install GRASS GIS Addons is to use the `g.extension`\nmodule:\n\u003chttps://grass.osgeo.org/grass-stable/manuals/g.extension.html\u003e\n\n`g.extension` can install from the online repository (the default) or from\nlocal source code (not available on Windows).\n\n## How to compile addon code\n\n### Compilation with GRASS GIS binaries on your computer\n\nIn this case, compile GRASS addon modules into your installed GRASS code\nby setting `MODULE_TOPDIR` to where to the GRASS binaries are located:\n\n```bash\nmake MODULE_TOPDIR=/usr/lib/grass/\n```\n\n### Compilation with GRASS GIS core source code locally compiled\n\nPreparations (assuming the [GRASS GIS core source code](https://github.com/OSGeo/grass)\nbeing stored in `$HOME/grass/` - if you have already built GRASS GIS core from\nsource code you don't need to do this again. If adding to a binary install,\nthe versions must match exactly. You need to `git checkout` the exact tag\nor commit used for the binary.)\n\n```bash\n# GRASS GIS core source code\n./configure # [optionally flags]\nmake\n```\n\nThe easiest way to compile GRASS addons modules into your GRASS code\nis by setting `MODULE_TOPDIR` on the fly to tell `make` where to\nfind the prepared GRASS source code:\n\n```bash\nmake MODULE_TOPDIR=$HOME/grass/\n```\n\n(adapt as needed to your `/path/to/grass/`). Each module in the GRASS\nAddons repository should have a Makefile to support easy\ninstallation.\n\nInstall then into your existing GRASS installation with\n\n```bash\nmake MODULE_TOPDIR=$HOME/grass/ install\n```\n\nFor system-wide installation the install step usually requires \"root\" privileges\n(so, also `sudo` may help).\n\n## How to submit your contributions\n\nWhile read access is granted to the public, for submissions you best fork\nthis repository, insert your addon or fix an existing one in a new branch\nand finally open a [pull request](https://help.github.com/en/articles/about-pull-requests).\n\nPlease note the following submitting rules: To successfully\nsubmit your GRASS GIS Addon module here, please check\n\n\u003chttps://grass.osgeo.org/development/\u003e\n\nYour submission must be compliant with the GRASS\nsubmission rules as found in the GRASS source code\nand [RFC2 (Legal aspects of submission)](https://github.com/OSGeo/grass/blob/main/doc/development/rfc/legal_aspects_of_code_contributions.md).\n\nAlso, please read the contributing instructions before creating a pull request:\n\u003chttps://github.com/OSGeo/grass-addons/blob/grass8/CONTRIBUTING.md\u003e\n\nIf you aim at becoming code maintainer with full write access, this must be\nformally requested, see here for details:\n\u003chttps://trac.osgeo.org/grass/wiki/HowToContribute#WriteaccesstotheGRASSaddonsrepository\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosgeo%2Fgrass-addons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fosgeo%2Fgrass-addons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosgeo%2Fgrass-addons/lists"}