Skip to content

Commit b92ca56

Browse files
authored
update links to github user to earthysciences (#44)
1 parent db60d97 commit b92ca56

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ jobs:
4646
- uses: actions/checkout@v4
4747
with:
4848
ref: 'keepalive' # The branch, tag or SHA to checkout.
49-
- uses: bgctw/keepalive-workflow@master
49+
- uses: earthyscience/keepalive-workflow@master
5050

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Bigleaf
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://bgctw.github.io/Bigleaf.jl/stable)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://bgctw.github.io/Bigleaf.jl/dev)
5-
[![Build Status](https://github.com/bgctw/Bigleaf.jl/workflows/CI/badge.svg)](https://github.com/bgctw/Bigleaf.jl/actions)
6-
[![Coverage](https://codecov.io/gh/bgctw/Bigleaf.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/bgctw/Bigleaf.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://earthyscience.github.io/Bigleaf.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://earthyscience.github.io/Bigleaf.jl/dev)
5+
[![Build Status](https://github.com/earthyscience/Bigleaf.jl/workflows/CI/badge.svg)](https://github.com/earthyscience/Bigleaf.jl/actions)
6+
[![Coverage](https://codecov.io/gh/earthyscience/Bigleaf.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/earthyscience/Bigleaf.jl)
77

88

99
**Bigleaf.jl** is a partial Julia port of Jürgen Knauer's
@@ -29,20 +29,20 @@ using Pkg
2929
Pkg.add("Bigleaf")
3030
```
3131

32-
And then importet to the every Julia session by:
32+
And then imported to every Julia session by:
3333
```julia
3434
using Bigleaf
3535
```
3636

3737
## Usage
38-
See the [Documentation](https://bgctw.github.io/Bigleaf.jl/dev/)
39-
that includes a [walkthrough](https://bgctw.github.io/Bigleaf.jl/dev/walkthrough/).
38+
See the [Documentation](https://earthyscience.github.io/Bigleaf.jl/dev/)
39+
that includes a [walkthrough](https://earthyscience.github.io/Bigleaf.jl/dev/walkthrough/).
4040

41-
[Please report bugs or issues here](https://github.com/bgctw/Bigleaf.jl/issues)
41+
[Please report bugs or issues here](https://github.com/earthyscience/Bigleaf.jl/issues)
4242

4343
## Package content
4444
We are porting functionality of the [R package](https://bitbucket.org/juergenknauer/Bigleaf) as needed. Please
45-
file an [issue](https://github.com/bgctw/Bigleaf.jl/issues) if you need a specific feature.
45+
file an [issue](https://github.com/earthyscience/Bigleaf.jl/issues) if you need a specific feature.
4646

4747
At the current state we ported
4848
- Meteorological variables

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ doctest(Bigleaf, manual = false)
1212
makedocs(;
1313
# modules=[Bigleaf], # uncomment to show warnings on non-included docstrings
1414
authors="Thomas Wutzler <[email protected]>, Jürgen Knauer <[email protected]> and contributors",
15-
#repo="https://github.com/bgctw/Bigleaf.jl/blob/{commit}{path}#{line}",
16-
repo = Remotes.GitHub("bgctw", "Bigleaf.jl"),
15+
#repo="https://github.com/earthyscience/Bigleaf.jl/blob/{commit}{path}#{line}",
16+
repo = Remotes.GitHub("earthyscience", "Bigleaf.jl"),
1717
sitename="Bigleaf.jl",
1818
doctestfilters=[r".*Info.*"],
1919
format=Documenter.HTML(;
2020
prettyurls=get(ENV, "CI", "false") == "true",
21-
canonical="https://bgctw.github.io/Bigleaf.jl",
21+
canonical="https://earthyscience.github.io/Bigleaf.jl",
2222
assets=String[],
2323
),
2424
pages=[
@@ -43,6 +43,6 @@ makedocs(;
4343
)
4444

4545
deploydocs(;
46-
repo="github.com/bgctw/Bigleaf.jl",
46+
repo="github.com/earthyscience/Bigleaf.jl",
4747
devbranch="main",
4848
)

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CurrentModule = Bigleaf
33
```
44

55
# Bigleaf
6-
Documentation for [Bigleaf](https://github.com/bgctw/Bigleaf.jl).
6+
Documentation for [Bigleaf](https://github.com/earthyscience/Bigleaf.jl).
77

88
```@contents
99
Pages = ["index.md",]

docs/src/walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ from the `bigleaf`
4141
[R package](https://bitbucket.org/juergenknauer/Bigleaf/) repository and contains
4242
half-hourly data of meteorological and flux measurements made in June 2014. For loading the
4343
RData into Julia, see the
44-
[source](https://github.com/bgctw/Bigleaf.jl/blob/main/docs/src/walkthrough.md?plain=1#L26)
44+
[source](https://github.com/earthyscience/Bigleaf.jl/blob/main/docs/src/walkthrough.md?plain=1#L26)
4545
of this file. We give the data.frame a shorter name here and create a timestamp.
4646

4747
```@example doc

src/surface_roughness.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ function roughness_parameters(method::Roughness_wind_profile,
188188
# zr, d, Tair, pressure, ustar, H; stab_formulation, constants)).psi_m
189189
psi_m = getindex.(stability_correction.(
190190
zr, d, Tair, pressure, ustar, H; stab_formulation, constants), :psi_m)
191-
# https://discourse.julialang.org/t/eltype-changed-during-broadcast-with-missing/71312?u=bgctw
191+
# https://discourse.julialang.org/t/eltype-changed-during-broadcast-with-missing/71312?u=earthyscience
192192
res_eltype = Union{eltype(ustar),eltype(wind),eltype(Tair),eltype(pressure),eltype(H)}
193193
psi_m = convert(Vector{res_eltype}, psi_m)::Vector{res_eltype}
194194
rp = roughness_parameters(method, ustar, wind, psi_m; zh, zr, d, constants, kwargs...)

0 commit comments

Comments
 (0)