Skip to content
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

checks: fix pre-commit errors #3335

Merged
merged 1 commit into from
Jan 6, 2024
Merged
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 .github/workflows/verify-success.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ jobs:
echo "cancelled=${{ inputs.fail_if_cancelled &&
fromJson(steps.has-result.outputs.cancelled) && 1 || 0
}}" >> "$GITHUB_OUTPUT"
echo "skipped=${{ inputs.fail_if_skipped &&
echo "skipped=${{ inputs.fail_if_skipped &&
fromJson(steps.has-result.outputs.skipped) && 1 || 0
}}" >> "$GITHUB_OUTPUT"
echo "success=${{ inputs.require_success &&
echo "success=${{ inputs.require_success &&
!fromJson(steps.has-result.outputs.success) && 1 || 0
}}" >> "$GITHUB_OUTPUT"
- name: Set messages for each job result type
Expand Down
4 changes: 2 additions & 2 deletions imagery/i.evapo.time/i.evapo.time.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ <h2>NOTES</h2>

<p>
<img src="i_evapo_time.png" alt="Temporal integration from a weather station"><br>
<i>This is an example of a temporal integration from a weather station as done by
<i>This is an example of a temporal integration from a weather station as done by
Chemin and Alexandridis (2004)</i>
<p>

<h2>References</h2>

<p>
Chemin and Alexandridis, 2004. Spatial Resolution Improvement of Seasonal
Evapotranspiration for Irrigated Rice, Zhanghe Irrigation District, Hubei Province, China.
Evapotranspiration for Irrigated Rice, Zhanghe Irrigation District, Hubei Province, China.
Asian Journal of Geoinformatics, Vol. 5, No. 1, September 2004
(<a href="https://ikee.lib.auth.gr/record/270217/files/Chemin-Alexandridis.pdf">PDF</a>)

Expand Down
8 changes: 5 additions & 3 deletions lib/cdhc/doc/chd_statlib.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
Released in 1994 by Paul Johnson.

Retrieved from the Internet Archive for
[http://sunsite.univie.ac.at/statlib/general/cdh](https://web.archive.org/web/20001006232323/http://sunsite.univie.ac.at/statlib/general/cdh) -- 2000-10-06

[http://sunsite.univie.ac.at/statlib/general/cdh](https://web.archive.org/web/20001006232323/http://sunsite.univie.ac.at/statlib/general/cdh)
-- 2000-10-06

<!-- markdownlint-disable -->
```txt
TESTS OF COMPOSITE DISTRIBUTIONAL HYPOTHESES FOR
THE ANALYSIS OF BIOLOGICAL & ENVIRONMENTAL DATA
Expand Down Expand Up @@ -1974,4 +1975,5 @@ C
xinormal = px
RETURN
END
```
```
<!-- markdownlint-enable -->
2 changes: 1 addition & 1 deletion raster/r.walk/r.walk.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h2>NOTES</h2>

<p>The <b>friction</b> cost parameter represents a time penalty in seconds
of additional walking time to cross 1 meter distance.
Friction cost can be any floating point value &ge; 0.
Friction cost can be any floating point value &ge; 0.
A friction map is a required parameter; if no friction costs are desired,
a friction map should be a raster in which all cells have a value of 0.
<p>The <b>lambda</b> parameter is a dimensionless scaling factor of the friction cost:
Expand Down
Loading