Skip to content

docs: update grass-stable URL to grass-devel #5809

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/interfaces_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ r.slope.aspect elevation=elevation slope=slope aspect=aspect
GRASS Python interface provides libraries to create GRASS scripts and access
the internal data structures of GRASS. The Python interface consists of
two main libraries:
*[grass.script](https://grass.osgeo.org/grass-stable/manuals/libpython/script_intro.html)*
*[grass.script](https://grass.osgeo.org/grass-devel/manuals/libpython/script_intro.html)*
provides a Python interface to GRASS tools
and *[grass.pygrass](https://grass.osgeo.org/grass-stable/manuals/libpython/pygrass_index.html)*
and *[grass.pygrass](https://grass.osgeo.org/grass-devel/manuals/libpython/pygrass_index.html)*
enables access to the internal data structures of GRASS.

To get started with scripting, create a new project with `gs.create_project` and
Expand Down
8 changes: 4 additions & 4 deletions doc/jupyter_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ m.show()
```

!!! grass-tip "Map Size and Extent"
See [detailed documentation](https://grass.osgeo.org/grass-stable/manuals/libpython/grass.jupyter.html#module-grass.jupyter.map)
See [detailed documentation](https://grass.osgeo.org/grass-devel/manuals/libpython/grass.jupyter.html#module-grass.jupyter.map)
for changing the map size and geographic extent.

## Interactive map
Expand All @@ -138,7 +138,7 @@ m.show()

The map gives you the ability to query the map, zoom in and out, and pan around,
set the computational region, and create simple vector data by digitizing.
To change the default basemap, see [documentation](https://grass.osgeo.org/grass-stable/manuals/libpython/grass.jupyter.html#module-grass.jupyter.interactivemap).
To change the default basemap, see [documentation](https://grass.osgeo.org/grass-devel/manuals/libpython/grass.jupyter.html#module-grass.jupyter.interactivemap).

## 3D map

Expand Down Expand Up @@ -250,11 +250,11 @@ flow_map.show()
## Python library documentation

For complete documentation on the `grass.jupyter` package, see the
[grass.jupyter](https://grass.osgeo.org/grass-stable/manuals/libpython/grass.jupyter.html)
[grass.jupyter](https://grass.osgeo.org/grass-devel/manuals/libpython/grass.jupyter.html)
library documentation page.

For complete documentation on the `grass.script` package, see the
[grass.script](https://grass.osgeo.org/grass-stable/manuals/libpython/script_intro.html)
[grass.script](https://grass.osgeo.org/grass-devel/manuals/libpython/script_intro.html)
library documentation page.

## Tutorials
Expand Down
154 changes: 77 additions & 77 deletions doc/python_intro.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion imagery/i.gensigset/i.gensigset.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This map must be prepared by the user in advance by using a combination
of *[wxGUI vector digitizer](wxGUI.vdigit.md)* and
*[v.to.rast](v.to.rast.md)*, or some other import/development process
(e.g.,
*[v.transects](https://grass.osgeo.org/grass-stable/manuals/addons/v.transects.html))*
*[v.transects](https://grass.osgeo.org/grass-devel/manuals/addons/v.transects.html))*
to define the areas representative of the classes in the image.

At present, there is no fully-interactive tool specifically designed for
Expand Down
2 changes: 1 addition & 1 deletion imagery/i.landsat.toar/i.landsat.toar.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ settings, in order to have the largest possible sample of pixels from
where to get the darkest one of the scene and perform the DOS
correction. To limit the results to a custom region, the user is advised
to clip the results (with
[r.clip](https://grass.osgeo.org/grass-stable/manuals/addons/r.clip.html),
[r.clip](https://grass.osgeo.org/grass-devel/manuals/addons/r.clip.html),
for instance) or to define the region first, import the images with
region cropping, and then running the module.

Expand Down
2 changes: 1 addition & 1 deletion imagery/i.pca/i.pca.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ of Texas, Austin, 1990.

*[i.cca](i.cca.md), [g.gui.iclass](g.gui.iclass.md), [i.fft](i.fft.md),
[i.ifft](i.ifft.md),
[m.eigensystem](https://grass.osgeo.org/grass-stable/manuals/addons/m.eigensystem.html),
[m.eigensystem](https://grass.osgeo.org/grass-devel/manuals/addons/m.eigensystem.html),
[r.covar](r.covar.md), [r.mapcalc](r.mapcalc.md)*

*[Principal Components Analysis
Expand Down
6 changes: 3 additions & 3 deletions man/mkdocs/docs/development_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ title: Development Introduction

## API reference and documentation

- [Python library](https://grass.osgeo.org/grass-stable/manuals/libpython/index.html)
- [Python library](https://grass.osgeo.org/grass-devel/manuals/libpython/index.html)
- [C API reference and developer manual](https://grass.osgeo.org/programming8/)
- [Tools](full_index.md)
- [Standard parser options](parser_standard_options.md)
(for writing new or custom tools)

## Testing

- [Testing](https://grass.osgeo.org/grass-stable/manuals/libpython/gunittest_testing.html)
- [Testing](https://grass.osgeo.org/grass-devel/manuals/libpython/gunittest_testing.html)

## Addons

Expand All @@ -25,7 +25,7 @@ repository and are a great place to plubish and share custom tools, models, and
The addons are maintained by the GRASS community and are a great way to extend the
functionality of GRASS.

- [Addons](https://grass.osgeo.org/grass-stable/manuals/addons/)
- [Addons](https://grass.osgeo.org/grass-devel/manuals/addons/)

## Contributing

Expand Down
4 changes: 2 additions & 2 deletions raster/r.buildvrt/r.buildvrt.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ maps, especially on slower file systems with latency like NFS.
Performance degradation may also occur on local file systems, but is
usually less severe. For such use cases consider using the GRASS GIS
addon
[r.buildvrt.gdal](https://grass.osgeo.org/grass-stable/manuals/addons/r.buildvrt.gdal.html)
[r.buildvrt.gdal](https://grass.osgeo.org/grass-devel/manuals/addons/r.buildvrt.gdal.html)
or building GDAL VRTs, e.g. with *gdalbuildvrt*.

## SEE ALSO

*[r.tile](r.tile.md), [r.patch](r.patch.md), [r.external](r.external.md)
[r.buildvrt.gdal](https://grass.osgeo.org/grass-stable/manuals/addons/r.buildvrt.gdal.html)*
[r.buildvrt.gdal](https://grass.osgeo.org/grass-devel/manuals/addons/r.buildvrt.gdal.html)*

The equivalent GDAL utility
*[gdalbuildvrt](https://gdal.org/en/stable/programs/gdalbuildvrt.html)*
Expand Down
4 changes: 2 additions & 2 deletions raster/r.covar/r.covar.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ would result in N real eigen values and N eigen vectors (each composed
of N real numbers).

The module
*[m.eigensystem](https://grass.osgeo.org/grass-stable/manuals/addons/m.eigensystem.html)*
*[m.eigensystem](https://grass.osgeo.org/grass-devel/manuals/addons/m.eigensystem.html)*
in [GRASS GIS Addons](https://grass.osgeo.org/download/addons/) can be
installed and used to generate the eigenvalues and vectors.

Expand Down Expand Up @@ -68,7 +68,7 @@ This can be done with *[r.rescale](r.rescale.md)*.
## SEE ALSO

*[i.pca](i.pca.md),
[m.eigensystem](https://grass.osgeo.org/grass-stable/manuals/addons/m.eigensystem.html)
[m.eigensystem](https://grass.osgeo.org/grass-devel/manuals/addons/m.eigensystem.html)
(Addon), [r.mapcalc](r.mapcalc.md), [r.rescale](r.rescale.md)*

## AUTHOR
Expand Down
2 changes: 1 addition & 1 deletion raster/r.mapcalc/r.mapcalc.md
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ Anil K. Jain (Prentice Hall, NJ, 1989; p 67).
## SEE ALSO

*[g.region](g.region.md),
[r.bitpattern](https://grass.osgeo.org/grass-stable/manuals/addons/r.bitpattern.html),
[r.bitpattern](https://grass.osgeo.org/grass-devel/manuals/addons/r.bitpattern.html),
[r.blend](r.blend.md), [r.colors](r.colors.md),
[r.fillnulls](r.fillnulls.md), [r.mapcalc.simple](r.mapcalc.simple.md)*

Expand Down
2 changes: 1 addition & 1 deletion raster/r.smooth.edgepreserve/r.smooth.edgepreserve.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ r.smooth.edgepreserve function=tukey input=ortho_2001_t792_1m \

- Smooth with statistics: *[r.neighbours](r.neighbours)*
- The Mumford-Shah variational model for image segmentation (an add-on):
*[r.smooth.seg](https://grass.osgeo.org/grass-stable/manuals/addons/r.smooth.seg.html)*
*[r.smooth.seg](https://grass.osgeo.org/grass-devel/manuals/addons/r.smooth.seg.html)*

## REFERENCES

Expand Down
2 changes: 1 addition & 1 deletion raster/r.texture/r.texture.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ algorithms such as [i.maxlik](i.maxlik.md) or [i.smap](i.smap.md), or
for the identification of objects in [i.segment](i.segment.md), and/or
for the characterization of these objects and thus, for example, as one
of the raster inputs of the
[i.segment.stats](https://grass.osgeo.org/grass-stable/manuals/addons/i.segment.stats.html)
[i.segment.stats](https://grass.osgeo.org/grass-devel/manuals/addons/i.segment.stats.html)
addon.

In general, several variables constitute texture: differences in grey
Expand Down
2 changes: 1 addition & 1 deletion scripts/g.download.project/g.download.project.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ grass --tmp-project XY --exec g.download.project url=https://grass.osgeo.org/sam

*[g.mapset](g.mapset.md), [g.mapsets](g.mapsets.md),
[r.proj](r.proj.md), [v.proj](v.proj.md),
[g.proj.all](https://grass.osgeo.org/grass-stable/manuals/addons/g.proj.all.html)*
[g.proj.all](https://grass.osgeo.org/grass-devel/manuals/addons/g.proj.all.html)*

## AUTHOR

Expand Down
2 changes: 1 addition & 1 deletion vector/v.info/v.info.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ bottom=0.000000
## PYTHON

See *[Python Scripting
Library](https://grass.osgeo.org/grass-stable/manuals/libpython/)* for
Library](https://grass.osgeo.org/grass-devel/manuals/libpython/)* for
more info.

Note: The Python tab in the *wxGUI* can be used for entering the
Expand Down
Loading