From 01b94285778bc19d5106f5a8062c5b94eff6d44f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 08:46:03 -0400 Subject: [PATCH 1/3] CI(deps): Update actions/setup-python action to v5.3.0 (#1232) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/additional_checks.yml | 2 +- .github/workflows/black.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/flake8.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/additional_checks.yml b/.github/workflows/additional_checks.yml index 3c4fb2d649..08211bf2f4 100644 --- a/.github/workflows/additional_checks.yml +++ b/.github/workflows/additional_checks.yml @@ -45,7 +45,7 @@ jobs: exclude: mswindows .*\.bat .*/testsuite/data/.* - name: Set up Python - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: ${{ env.PYTHON_VERSION }} diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index 2d729716b8..cddfed507c 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -34,7 +34,7 @@ jobs: with: persist-credentials: false - name: Set up Python - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: ${{ env.PYTHON_VERSION }} cache: "pip" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18a55703aa..355307cb68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: sudo apt-get install -y --no-install-recommends --no-install-suggests - name: Set up Python ${{ matrix.python-version }} as default Python - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index e016bc1edc..5c71dcf6c0 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 - name: Set up Python - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 + uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: ${{ env.PYTHON_VERSION }} From f543c2e96b7ef3f5875cfc7d252dfb113829a69a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 08:48:00 -0400 Subject: [PATCH 2/3] CI(deps): Update actions/checkout action to v4.2.2 (#1229) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/additional_checks.yml | 2 +- .github/workflows/black.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/clang-format-check.yml | 2 +- .github/workflows/flake8.yml | 2 +- .github/workflows/super-linter.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/additional_checks.yml b/.github/workflows/additional_checks.yml index 08211bf2f4..7e30c9cef0 100644 --- a/.github/workflows/additional_checks.yml +++ b/.github/workflows/additional_checks.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository contents - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 31 diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index cddfed507c..e4ffe12182 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -30,7 +30,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false - name: Set up Python diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 355307cb68..16797b0c7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,14 +38,14 @@ jobs: steps: - name: Checkout core - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: repository: OSGeo/grass ref: ${{ matrix.grass-version }} path: grass - name: Checkout addons - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: path: grass-addons diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index b991cde77d..fe7282d27a 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -15,7 +15,7 @@ jobs: name: Formatting Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false - uses: DoozyX/clang-format-lint-action@c71d0bf4e21876ebec3e5647491186f8797fde31 # v0.18.2 diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index 5c71dcf6c0..ba65457b82 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up Python uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 42267522e0..cf18dfbf7b 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -26,7 +26,7 @@ jobs: # To report GitHub Actions status checks statuses: write steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: # super-linter needs the full git history to get the # list of files that changed across commits From f00067506253c89598cffadc3c7fa07cff7233fd Mon Sep 17 00:00:00 2001 From: Markus Neteler Date: Tue, 5 Nov 2024 09:35:47 +0100 Subject: [PATCH 3/3] manual: multiple http/https fixes (#1234) * manual: multiple http/https fixes * selected URL updates * multiple http/https fixes * fix NCSU GeoForAll Lab URLs --- src/display/d.mon2/d.mon2.html | 13 ++++++++----- .../g.download.location/g.download.location.html | 2 +- src/general/g.isis3mt/g.isis3mt.html | 4 ++-- src/general/g.proj.identify/g.proj.identify.html | 8 ++++---- .../wx.metadata/db.csw.run/db.csw.run.html | 11 +++++++---- .../g.gui.cswbrowser/g.gui.cswbrowser.html | 16 ++++++++-------- .../g.gui.metadata/g.gui.metadata.html | 12 ++++++------ .../wx.metadata/r.info.iso/r.info.iso.html | 10 +++++----- .../wx.metadata/t.info.iso/t.info.iso.html | 8 ++++---- .../wx.metadata/v.info.iso/v.info.iso.html | 10 +++++----- src/gui/wxpython/wx.mwprecip/g.gui.mwprecip.html | 2 +- src/hadoop/hd/hd.db.connect/hd.db.connect.html | 4 ++-- src/hadoop/hd/hd.esri2vector/hd.esri2vector.html | 4 ++-- src/hadoop/hd/hd.hdfs.in.fs/hd.hdfs.in.fs.html | 4 ++-- .../hd/hd.hdfs.in.vector/hd.hdfs.in.vector.html | 4 ++-- src/hadoop/hd/hd.hdfs.info/hd.hdfs.info.html | 4 ++-- .../hd.hdfs.out.vector/hd.hdfs.out.vector.html | 4 ++-- .../hd/hd.hive.csv.table/hd.hive.csv.table.html | 4 ++-- .../hd/hd.hive.execute/hd.hive.execute.html | 4 ++-- src/hadoop/hd/hd.hive.info/hd.hive.info.html | 4 ++-- .../hd.hive.json.table/hd.hive.json.table.html | 4 ++-- src/hadoop/hd/hd.hive.load/hd.hive.load.html | 4 ++-- src/hadoop/hd/hd.hive.select/hd.hive.select.html | 4 ++-- src/imagery/i.eb.z0m/i.eb.z0m.html | 4 ++-- src/imagery/i.evapo.potrad/i.evapo.potrad.html | 4 ++-- src/imagery/i.evapo.senay/i.evapo.senay.html | 2 +- src/imagery/i.evapo.zk/i.evapo.zk.html | 2 +- src/imagery/i.gcp/i.gcp.html | 2 +- src/imagery/i.in.probav/i.in.probav.html | 2 +- .../i.landsat8.swlst/i.landsat8.swlst.html | 4 ++-- .../i.modis.download/i.modis.download.html | 2 +- src/imagery/i.modis/i.modis.html | 8 ++++---- .../i.modis/i.modis.import/i.modis.import.html | 2 +- .../i.pysptools.unmix/i.pysptools.unmix.html | 4 ++-- src/imagery/i.segment.gsoc/i.segment.gsoc.html | 4 ++-- src/imagery/i.segment.uspo/i.segment.uspo.html | 8 ++++---- src/imagery/i.segment.uspo/i.segment.uspo.py | 4 ++-- .../i.sentinel.download/i.sentinel.download.html | 2 +- src/imagery/i.sentinel/i.sentinel.html | 2 +- .../i.sentinel.import/i.sentinel.import.html | 2 +- src/imagery/i.variance/i.variance.py | 2 +- src/imagery/i.wi/awei.c | 4 ++-- src/imagery/i.wi/i.wi.html | 8 ++++---- src/imagery/i.wi/ndwi.c | 4 ++-- src/imagery/i.wi/wi.c | 2 +- src/misc/m.gcp.filter/m.gcp.filter.html | 2 +- src/misc/m.printws/m.printws.html | 4 ++-- src/raster/r.basin/r.basin.html | 2 +- src/raster/r.change.info/r.change.info.html | 4 ++-- src/raster/r.clip/r.clip.html | 2 +- .../r.colors.cubehelix/r.colors.cubehelix.html | 2 +- .../r.colors.matplotlib/r.colors.matplotlib.html | 2 +- .../r.connectivity.distance.html | 4 ++-- src/raster/r.connectivity/r.connectivity.html | 4 ++-- .../r.connectivity.network.html | 16 ++++++++-------- src/raster/r.denoise/r.denoise.html | 4 ++-- src/raster/r.divergence/r.divergence.html | 4 ++-- .../r.futures.calib/r.futures.calib.html | 4 ++-- .../r.futures.demand/r.futures.demand.html | 4 ++-- .../r.futures.devpressure.html | 4 ++-- .../r.futures.gridvalidation.html | 4 ++-- src/raster/r.futures/r.futures.html | 4 ++-- .../r.futures.parallelpga.html | 4 ++-- .../r.futures/r.futures.pga/r.futures.pga.html | 4 ++-- .../r.futures.potential/r.futures.potential.html | 4 ++-- .../r.futures.potsurface.html | 4 ++-- .../r.futures.simulation.html | 4 ++-- .../r.futures.validation.html | 4 ++-- src/raster/r.fuzzy.system/r.fuzzy.system.html | 2 +- src/raster/r.green/r.green.gshp/libgshp/gpot.py | 2 +- src/raster/r.gwr/r.gwr.html | 2 +- src/raster/r.hants/r.hants.html | 2 +- src/raster/r.hazard.flood/r.hazard.flood.html | 2 +- src/raster/r.hydro.flatten/r.hydro.flatten.html | 5 ++--- src/raster/r.hydrodem/r.hydrodem.html | 2 +- src/raster/r.hypso/r.hypso.html | 2 +- src/raster/r.jpdf/r.jpdf.html | 2 +- .../r.maxent.lambdas/r.maxent.lambdas.html | 2 +- src/raster/r.mblend/r.mblend.html | 2 +- src/raster/r.mess/r.mess.html | 2 +- src/raster/r.out.kde/r.out.kde.html | 2 +- .../r.out.maxent_swd/r.out.maxent_swd.html | 2 +- src/raster/r.patch.smooth/r.patch.smooth.html | 2 +- src/raster/r.pops.spread/r.pops.spread.html | 2 +- .../r.roughness.vector/r.roughness.vector.html | 4 ++-- src/raster/r.scatterplot/r.scatterplot.html | 2 +- src/raster/r.series.lwr/r.series.lwr.html | 4 ++-- src/raster/r.sim.terrain/r.sim.terrain.html | 4 ++-- src/raster/r.sim.water.mp/r.sim.water.mp.html | 8 ++++---- src/raster/r.skyline/r.skyline.html | 4 ++-- src/raster/r.smooth.seg/r.smooth.seg.html | 6 +++--- src/raster/r.stream.basins/r.stream.basins.html | 2 +- .../r.stream.distance/r.stream.distance.html | 2 +- src/raster/r.stream.order/r.stream.order.html | 2 +- .../r.stream.segment/r.stream.segment.html | 2 +- src/raster/r.stream.slope/r.stream.slope.html | 2 +- src/raster/r.stream.snap/r.stream.snap.html | 2 +- src/raster/r.stream.stats/r.stream.stats.html | 2 +- .../r.subdayprecip.design.html | 6 +++--- src/raster/r.sun.daily/r.sun.daily.html | 4 ++-- src/raster/r.sun.hourly/r.sun.hourly.html | 4 ++-- src/raster/r.sun.mp/r.sun.mp.html | 2 +- src/raster/r.surf.nnbathy/r.surf.nnbathy.html | 4 ++-- src/raster/r.survey/r.survey.html | 2 +- src/raster/r.vect.stats/r.vect.stats.html | 4 ++-- .../r.vector.ruggedness/r.vector.ruggedness.html | 2 +- .../r.viewshed.exposure/r.viewshed.exposure.html | 4 ++-- src/raster/r.width.funct/r.width.funct.html | 2 +- src/raster/r.zonal.classes/r.zonal.classes.html | 6 +++--- src/temporal/t.rast.kappa/t.rast.kappa.html | 4 ++-- src/temporal/t.rast.line/t.rast.line.html | 2 +- src/temporal/t.rast.patch/t.rast.patch.html | 2 +- src/vector/v.build.pg/v.build.pg.html | 8 ++++---- src/vector/v.class.ml/v.class.ml.html | 16 ++++++++-------- src/vector/v.class.mlR/v.class.mlR.html | 2 +- src/vector/v.class.mlR/v.class.mlR.py | 2 +- src/vector/v.class.mlpy/v.class.mlpy.html | 2 +- src/vector/v.clean.ogr/v.clean.ogr.html | 12 ++++++------ src/vector/v.db.pyupdate/v.db.pyupdate.html | 16 ++++++++-------- src/vector/v.in.csv/v.in.csv.html | 2 +- src/vector/v.in.gbif/v.in.gbif.html | 10 +++++----- .../v.in.geopaparazzi/v.in.geopaparazzi.html | 2 +- src/vector/v.in.gps/v.in.gps.html | 4 ++-- src/vector/v.in.osm/v.in.osm.html | 2 +- src/vector/v.in.pygbif/v.in.pygbif.html | 10 +++++----- src/vector/v.krige/v.krige.html | 2 +- src/vector/v.lidar.mcc/v.lidar.mcc.html | 4 ++-- src/vector/v.nnstat/v.nnstat.html | 6 +++--- src/vector/v.out.gps/v.out.gps.html | 8 ++++---- .../v.profile.points/v.profile.points.html | 2 +- src/vector/v.rast.move/v.rast.move.html | 2 +- .../v.vect.stats.multi/v.vect.stats.multi.html | 2 +- 132 files changed, 282 insertions(+), 277 deletions(-) diff --git a/src/display/d.mon2/d.mon2.html b/src/display/d.mon2/d.mon2.html index 85652df147..3f804eb56e 100644 --- a/src/display/d.mon2/d.mon2.html +++ b/src/display/d.mon2/d.mon2.html @@ -4,21 +4,24 @@

DESCRIPTION

wximgview, and wxpyimgview programs a bit simpler to start up.

-Add this to your ~/.grass.bashrc file: -

+Add this to your ~/.grass.bashrc file:
+
+
   if [ `echo "$GRASS_VERSION" | cut -f1 -d.` -eq 7 ] ; then
      alias d.mon='eval `d.mon.py -b`'
   fi
-
+

By default the temporary file will be stored in $MAPSET/.tmp/ and cleared at the end of the session. You can put it somewhere else with the tempfile option. For example, when working remotely with PuTTY (ssh without tunnelled X) + Apache: -

+
+
    alias d.mon='eval `d.mon.py -b handler=none tempfile=/var/www/grassmap.png`'
-
+
+ then just hit reload in your web browser whenever a refresh is needed. diff --git a/src/general/g.download.location/g.download.location.html b/src/general/g.download.location/g.download.location.html index 28ad6bec9b..a6e1cfb4f3 100644 --- a/src/general/g.download.location/g.download.location.html +++ b/src/general/g.download.location/g.download.location.html @@ -22,4 +22,4 @@

SEE ALSO

AUTHOR

-Vaclav Petras, NCSU GeoForAll Lab +Vaclav Petras, NCSU GeoForAll Lab diff --git a/src/general/g.isis3mt/g.isis3mt.html b/src/general/g.isis3mt/g.isis3mt.html index 7ece6b0f12..8753ac525d 100644 --- a/src/general/g.isis3mt/g.isis3mt.html +++ b/src/general/g.isis3mt/g.isis3mt.html @@ -5,9 +5,9 @@

DESCRIPTION

NOTE

-The ISIS3 user should use matchmap=yes in cam2map +The ISIS3 user should use matchmap=yes in cam2mapi.

AUTHORS

-Alessandro Frigeri, INA, Ispra, Italy +Alessandro Frigeri, INA, Ispra, Italy
Added to GRASS 7 by Yann Chemin diff --git a/src/general/g.proj.identify/g.proj.identify.html b/src/general/g.proj.identify/g.proj.identify.html index a4a88ded02..2f087f65ff 100644 --- a/src/general/g.proj.identify/g.proj.identify.html +++ b/src/general/g.proj.identify/g.proj.identify.html @@ -22,14 +22,14 @@

SEE ALSO

g.proj, -m.proj, +m.proj, r.proj, v.proj

AUTHORS

-Matej Krejci, OSGeoREL +Matej Krejci, OSGeoREL at the Czech Technical University in Prague, developed -during Google -Summer of Code 2015 (mentors: Martin Landa) +during Google +Summer of Code 2015 (mentor: Martin Landa) diff --git a/src/gui/wxpython/wx.metadata/db.csw.run/db.csw.run.html b/src/gui/wxpython/wx.metadata/db.csw.run/db.csw.run.html index d0922b5c16..fd5a8364b5 100644 --- a/src/gui/wxpython/wx.metadata/db.csw.run/db.csw.run.html +++ b/src/gui/wxpython/wx.metadata/db.csw.run/db.csw.run.html @@ -1,8 +1,11 @@

DESCRIPTION

-... +db.csw.run is designed to interact with Catalog Service for the Web (CSW) +servers for metadata management purposes. It is implemented as a WSGI wrapper +for pycsw and the module for starting the server on localhost.

NOTES

+ ...

SEE ALSO

@@ -17,12 +20,12 @@

SEE ALSO

- See also related wiki page. +See also related wiki page.

AUTHORS

-Matej Krejci, OSGeoREL +Matej Krejci, OSGeoREL at the Czech Technical University in Prague, developed -during Google +during Google Summer of Code 2014 (mentors: Margherita Di Leo, Martin Landa) diff --git a/src/gui/wxpython/wx.metadata/g.gui.cswbrowser/g.gui.cswbrowser.html b/src/gui/wxpython/wx.metadata/g.gui.cswbrowser/g.gui.cswbrowser.html index 5feab0c936..1239e4edf8 100644 --- a/src/gui/wxpython/wx.metadata/g.gui.cswbrowser/g.gui.cswbrowser.html +++ b/src/gui/wxpython/wx.metadata/g.gui.cswbrowser/g.gui.cswbrowser.html @@ -1,7 +1,7 @@

DESCRIPTION

g.gui.cswbrowser supports searching and browsing metadata catalogs based on -Catalogue Service (CSW) standard . +Catalogue Service (CSW) standard .

The module allows to setting up connection to csw by uri and search metadata using advanced filter. @@ -9,7 +9,7 @@

DESCRIPTION

NOTES

For dependencies and installation instructions see the dedicated -wiki page. +wiki page.

Setting up connection

@@ -36,11 +36,11 @@

Bounding box

  • Keywords
    This filter allows to use basic or advance keyword filtering. In the simple case user can define - single keywords or multiple keywords with button "+". Logic operator between keywords is AND(&&). + single keywords or multiple keywords with button "+". Logic operator between keywords is AND(&&). Second, advanced is based on OGC list of expressions which means that can be set filtr with logic relations between keywords or sets of keywords. Dialog for settings kewords text string is under "Advanced" checkbox. Syntax of constraints is based on python list syntax. Each keywords must be - in braces<'>or<">. + in braces <'> or <">.
  • diff --git a/src/imagery/i.evapo.potrad/i.evapo.potrad.html b/src/imagery/i.evapo.potrad/i.evapo.potrad.html index 3563cac57e..589f7a53a2 100644 --- a/src/imagery/i.evapo.potrad/i.evapo.potrad.html +++ b/src/imagery/i.evapo.potrad/i.evapo.potrad.html @@ -37,13 +37,13 @@

    REFERENCES

    densities and moisture indicators in composite terrain; a remote sensing approach under clear skies in mediterranean climates. PhD thesis, Wageningen Agricultural Univ., The Netherland, 271 pp. -(PDF)
  • +(PDF)

    Chemin, Y., 2012. A Distributed Benchmarking Framework for Actual ET Models, in: Irmak, A. (Ed.), Evapotranspiration - Remote Sensing and Modeling. InTech. -(PDF) +(PDF)

    AUTHOR

    diff --git a/src/imagery/i.evapo.senay/i.evapo.senay.html b/src/imagery/i.evapo.senay/i.evapo.senay.html index aefb2f8963..571d942983 100644 --- a/src/imagery/i.evapo.senay/i.evapo.senay.html +++ b/src/imagery/i.evapo.senay/i.evapo.senay.html @@ -50,7 +50,7 @@

    REFERENCES

    Chemin, Y., 2012. A Distributed Benchmarking Framework for Actual ET Models, in: Irmak, A. (Ed.), Evapotranspiration - Remote Sensing and Modeling. InTech. -(PDF) +(PDF)

    AUTHOR

    diff --git a/src/imagery/i.evapo.zk/i.evapo.zk.html b/src/imagery/i.evapo.zk/i.evapo.zk.html index 70ea7ecf64..2904e9b8cc 100644 --- a/src/imagery/i.evapo.zk/i.evapo.zk.html +++ b/src/imagery/i.evapo.zk/i.evapo.zk.html @@ -98,7 +98,7 @@

    REFERENCES

    Chemin, Y., 2012. A Distributed Benchmarking Framework for Actual ET Models, in: Irmak, A. (Ed.), Evapotranspiration - Remote Sensing and Modeling. InTech. -(PDF) +(PDF)

    AUTHOR

    diff --git a/src/imagery/i.gcp/i.gcp.html b/src/imagery/i.gcp/i.gcp.html index d8a84db8ac..a1738204a3 100644 --- a/src/imagery/i.gcp/i.gcp.html +++ b/src/imagery/i.gcp/i.gcp.html @@ -74,7 +74,7 @@

    EXAMPLES

    SEE ALSO

    The GRASS 4 -Image +Image Processing manual

    diff --git a/src/imagery/i.in.probav/i.in.probav.html b/src/imagery/i.in.probav/i.in.probav.html index 2b744687c8..4fd55c086d 100644 --- a/src/imagery/i.in.probav/i.in.probav.html +++ b/src/imagery/i.in.probav/i.in.probav.html @@ -22,7 +22,7 @@

    Before Import

    When working with Proba-V NDVI, it it necessary to fix the range of the map because it exceeds the -180°..+180° range with entire world extent. You can shift the map slightly into the right position using -gdal_translate. +gdal_translate. This example in Global datasets may help you.

    EXAMPLE

    diff --git a/src/imagery/i.landsat8.swlst/i.landsat8.swlst.html b/src/imagery/i.landsat8.swlst/i.landsat8.swlst.html index 0426163a52..a4b5a08b7d 100644 --- a/src/imagery/i.landsat8.swlst/i.landsat8.swlst.html +++ b/src/imagery/i.landsat8.swlst/i.landsat8.swlst.html @@ -46,7 +46,7 @@

    Details

    where:

    diff --git a/src/raster/r.change.info/r.change.info.html b/src/raster/r.change.info/r.change.info.html index f3d883a69d..0da2ec53ac 100644 --- a/src/raster/r.change.info/r.change.info.html +++ b/src/raster/r.change.info/r.change.info.html @@ -214,11 +214,11 @@

    REFERENCES

    AUTHOR

    diff --git a/src/raster/r.clip/r.clip.html b/src/raster/r.clip/r.clip.html index c98c05dd57..54f139e034 100644 --- a/src/raster/r.clip/r.clip.html +++ b/src/raster/r.clip/r.clip.html @@ -193,4 +193,4 @@

    SEE ALSO

    AUTHOR

    -Vaclav Petras, NCSU GeoForAll Lab +Vaclav Petras, NCSU GeoForAll Lab diff --git a/src/raster/r.colors.cubehelix/r.colors.cubehelix.html b/src/raster/r.colors.cubehelix/r.colors.cubehelix.html index b063ff2955..56c1cb06f5 100644 --- a/src/raster/r.colors.cubehelix/r.colors.cubehelix.html +++ b/src/raster/r.colors.cubehelix/r.colors.cubehelix.html @@ -123,4 +123,4 @@

    SEE ALSO

    AUTHOR

    -Vaclav Petras, NCSU OSGeoREL +Vaclav Petras, NCSU GeoForAll Lab diff --git a/src/raster/r.colors.matplotlib/r.colors.matplotlib.html b/src/raster/r.colors.matplotlib/r.colors.matplotlib.html index f8adbe9968..88d0790b54 100644 --- a/src/raster/r.colors.matplotlib/r.colors.matplotlib.html +++ b/src/raster/r.colors.matplotlib/r.colors.matplotlib.html @@ -201,4 +201,4 @@

    SEE ALSO

    AUTHOR

    -Vaclav Petras, NCSU OSGeoREL +Vaclav Petras, NCSU GeoForAll Lab diff --git a/src/raster/r.connectivity/r.connectivity.distance/r.connectivity.distance.html b/src/raster/r.connectivity/r.connectivity.distance/r.connectivity.distance.html index b9b8675545..064f8c99b9 100644 --- a/src/raster/r.connectivity/r.connectivity.distance/r.connectivity.distance.html +++ b/src/raster/r.connectivity/r.connectivity.distance/r.connectivity.distance.html @@ -249,8 +249,8 @@

    REFERENCE

    Verneområdenes funksjon som økologisk nettverk og toleranse for klimaendringer. NINA Rapport 888: 126 pp. Norsk institutt for naturforskning (NINA), Trondheim. - - http://www.nina.no/archive/nina/PppBasePdf/rapport/2012/888.pdf + + https://www.nina.no/archive/nina/PppBasePdf/rapport/2012/888.pdf

    SEE ALSO

    diff --git a/src/raster/r.connectivity/r.connectivity.html b/src/raster/r.connectivity/r.connectivity.html index d9b6cfc9d3..894830d462 100644 --- a/src/raster/r.connectivity/r.connectivity.html +++ b/src/raster/r.connectivity/r.connectivity.html @@ -60,8 +60,8 @@

    REFERENCE

    Verneområdenes funksjon som økologisk nettverk og toleranse for klimaendringer. NINA Rapport 888: 126 pp. Norsk institutt for naturforskning (NINA), Trondheim. - - http://www.nina.no/archive/nina/PppBasePdf/rapport/2012/888.pdf + + https://www.nina.no/archive/nina/PppBasePdf/rapport/2012/888.pdf

    SEE ALSO

    diff --git a/src/raster/r.connectivity/r.connectivity.network/r.connectivity.network.html b/src/raster/r.connectivity/r.connectivity.network/r.connectivity.network.html index 596e9b0f20..543bbe2203 100644 --- a/src/raster/r.connectivity/r.connectivity.network/r.connectivity.network.html +++ b/src/raster/r.connectivity/r.connectivity.network/r.connectivity.network.html @@ -403,12 +403,12 @@

    REFERENCE

    Bunn, A. G., Urban, D. L. & Keitt, T. H. 2000: Landscape connectivity: A conservation application of graph theory. Journal of Environmental Management (2000) 59: 265-278 - -http://www.sciencedirect.com/science/article/pii/S0301479700903736
    + +https://www.sciencedirect.com/science/article/pii/S0301479700903736
    Calabrese, J. M. & Fagan, W. F. 2004: A comparison-shopper's guide to connectivity metrics. Front Ecol Environ 2 (10): 529-536 - -http://dx.doi.org/10.1890/1540-9295(2004)002[0529:ACGTCM]2.0.CO;2
    + +https://doi.org/10.1890/1540-9295(2004)002[0529:ACGTCM]2.0.CO;2
    Minor, E. S. & Urban, D. L. 2008: A Graph-Theory Framework for Evaluating Landscape Connectivity and Conservation Planning. Conservation Biology 22 (2): 297-307 @@ -417,8 +417,8 @@

    REFERENCE

    Zetterberg, A., Mörtberg, U. M. & Balfors, B. 2010: Making graph theory operational for landscape ecological assessments, planning, and design. Landscape and Urban Planning (2010) 95: 181-191 - -http://www.sciencedirect.com/science/article/pii/S0169204610000204
    + +https://www.sciencedirect.com/science/article/pii/S0169204610000204
    Ranius, T. & Roberge, J.-M. 2011: Effects of intensified forestry on the landscape-scale extinction risk of dead wood dependent species. Biodiversity and Conservation 20 (13): 2867-2882 @@ -429,8 +429,8 @@

    REFERENCE

    Verneområdenes funksjon som økologisk nettverk og toleranse for klimaendringer. NINA Rapport 888: 126 pp. Norsk institutt for naturforskning (NINA), Trondheim. - - http://www.nina.no/archive/nina/PppBasePdf/rapport/2012/888.pdf
    + + https://www.nina.no/archive/nina/PppBasePdf/rapport/2012/888.pdf
    Csardi G. & Nepusz T. 2006: The igraph software package for complex network research, InterJournal, Complex Systems 1695. 2006. http://igraph.sf.net
    diff --git a/src/raster/r.denoise/r.denoise.html b/src/raster/r.denoise/r.denoise.html index aa1e198bc0..34cc067ba6 100644 --- a/src/raster/r.denoise/r.denoise.html +++ b/src/raster/r.denoise/r.denoise.html @@ -57,8 +57,8 @@

    REQUIREMENTS

    REFERENCES

    SEE ALSO

    diff --git a/src/raster/r.divergence/r.divergence.html b/src/raster/r.divergence/r.divergence.html index ee83e2b0fb..5e23de50a4 100644 --- a/src/raster/r.divergence/r.divergence.html +++ b/src/raster/r.divergence/r.divergence.html @@ -49,5 +49,5 @@

    SEE ALSO

    AUTHORS

    -Anna Petrasova, NCSU OSGeoREL
    -Helena Mitasova, NCSU OSGeoREL +Anna Petrasova, NCSU GeoForAll Lab
    +Helena Mitasova, NCSU GeoForAll Lab diff --git a/src/raster/r.futures/r.futures.calib/r.futures.calib.html b/src/raster/r.futures/r.futures.calib/r.futures.calib.html index 624ca26b73..b5cb27d359 100644 --- a/src/raster/r.futures/r.futures.calib/r.futures.calib.html +++ b/src/raster/r.futures/r.futures.calib/r.futures.calib.html @@ -119,12 +119,12 @@

    REFERENCES