Skip to content

Commit 9759155

Browse files
committed
update urls after transferring package from bgctw/REddyProc to EarthySciences/REddyProc
1 parent 43eea8d commit 9759155

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- include mlegp dependency again - its on CRAN again
1111

1212
# REddyProc 1.3.2
13-
- Avoid strong dependency on mlegp (https://github.com/bgctw/REddyProc/issues/58).
13+
- Avoid strong dependency on mlegp (https://github.com/EarthyScience/REddyProc/issues/58).
1414
Daytime partitioning, unfortunately, now requires users to install package
1515
mlegp by hand.
1616
- support reading basic variables from Ameriflux data files
@@ -19,7 +19,7 @@
1919
# REddyProc 1.3.1
2020
- bug fix for day-time partitioning: Adapt default of argument uStarScenKeep
2121
to reflect changes in naming the uStar threshold scenarios
22-
[#55](https://github.com/bgctw/REddyProc/issues/55#issue-1068184211).
22+
[#55](https://github.com/EarthyScience/REddyProc/issues/55#issue-1068184211).
2323

2424
# REddyProc 1.3.0
2525
Accumulations of improvements warrant a new version and new CRAN release

R/Example.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ getExamplePath <- function(
2424
# set default remoteDir inside function instead of argument default,
2525
# because it screws function signature
2626
if (!nzchar(remoteDir) ) remoteDir <-
27-
"https://raw.githubusercontent.com/bgctw/REddyProc/master/examples"
27+
"https://raw.githubusercontent.com/EarthyScience/REddyProc/master/examples"
2828
fullname <- file.path(exampleDir, filename)
2929
if (file.exists(fullname) ) return(fullname)
3030
if (isTRUE(isTryDownload) ) {

R/FileHandling.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ help_export <- function(
4747
## \item Read basic variables from Ameriflux standard (as of 2022) files:
4848
## \code{\link{fLoadAmeriflux22}}
4949
## \item Read NetCDF files -> moved to separate package REddyProcNCDF
50-
## (https://github.com/bgctw/REddyProcNCDF)
50+
## (https://github.com/EarthyScience/REddyProcNCDF)
5151
## }
5252
##
5353
## Back to \link{REddyProc-package}.

README.Rmd

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ knitr::opts_chunk$set(
2222

2323
<!-- badges: start -->
2424
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/REddyProc)](http://cran.r-project.org/package=REddyProc)
25-
[![R-CMD-check](https://github.com/bgctw/REddyProc/workflows/R-CMD-check/badge.svg)](https://github.com/bgctw/REddyProc/actions)
25+
[![R-CMD-check](https://github.com/EarthyScience/REddyProc/workflows/R-CMD-check/badge.svg)](https://github.com/EarthyScience/REddyProc/actions)
2626
<!-- badges: end -->
2727

2828
## Overview
@@ -40,7 +40,7 @@ install.packages("REddyProc")
4040
4141
# The development version from GitHub using devtools:
4242
# install.packages("devtools")
43-
devtools::install_github("bgctw/REddyProc")
43+
devtools::install_github("EarthyScience/REddyProc")
4444
```
4545

4646
The REddyProc~package requires a quite recent
@@ -98,21 +98,21 @@ EProc$sPlotFingerprintY('NEE_f', Year = 1998)
9898

9999

100100
Further examples are in
101-
[vignette(useCase)](https://github.com/bgctw/REddyProc/blob/master/vignettes/useCase.md)
101+
[vignette(useCase)](https://github.com/EarthyScience/REddyProc/blob/master/vignettes/useCase.md)
102102
and
103-
[vignette(DEGebExample)](https://github.com/bgctw/REddyProc/blob/master/vignettes/DEGebExample.md)
103+
[vignette(DEGebExample)](https://github.com/EarthyScience/REddyProc/blob/master/vignettes/DEGebExample.md)
104104
and further md-files of the
105-
[vignettes directory](https://github.com/bgctw/REddyProc/blob/master/vignettes).
105+
[vignettes directory](https://github.com/EarthyScience/REddyProc/blob/master/vignettes).
106106

107107

108108
## Docker images
109109
Docker images are provided that comprise rstudio, rocker/tidyverse, and REddyProc.
110110
There are different version for the latest push to github, for the version on CRAN and for specific tags starting
111111
from 1.1.4.
112112

113-
- bgctw/reddyproc:latest
114-
- bgctw/reddyproc_cran
115-
- bgctw/reddyproc:`tag`
113+
- EarthyScience/reddyproc:latest
114+
- EarthyScience/reddyproc_cran
115+
- EarthyScience/reddyproc:`tag`
116116

117117
They are usually run with installed docker by typing at a shell:
118118
```

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ maybe clear cache before
88
<!-- badges: start -->
99

1010
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/REddyProc)](http://cran.r-project.org/package=REddyProc)
11-
[![R-CMD-check](https://github.com/bgctw/REddyProc/workflows/R-CMD-check/badge.svg)](https://github.com/bgctw/REddyProc/actions)
11+
[![R-CMD-check](https://github.com/EarthyScience/REddyProc/workflows/R-CMD-check/badge.svg)](https://github.com/EarthyScience/REddyProc/actions)
1212
<!-- badges: end -->
1313

1414
## Overview
@@ -28,7 +28,7 @@ install.packages("REddyProc")
2828

2929
# The development version from GitHub using devtools:
3030
# install.packages("devtools")
31-
devtools::install_github("bgctw/REddyProc")
31+
devtools::install_github("EarthyScience/REddyProc")
3232
```
3333

3434
The REddyProc~package requires a quite recent versions of the tidyverse
@@ -87,21 +87,21 @@ EProc$sPlotFingerprintY('NEE_f', Year = 1998)
8787
![](README-example-1.png)<!-- -->
8888

8989
Further examples are in
90-
[vignette(useCase)](https://github.com/bgctw/REddyProc/blob/master/vignettes/useCase.md)
90+
[vignette(useCase)](https://github.com/EarthyScience/REddyProc/blob/master/vignettes/useCase.md)
9191
and
92-
[vignette(DEGebExample)](https://github.com/bgctw/REddyProc/blob/master/vignettes/DEGebExample.md)
92+
[vignette(DEGebExample)](https://github.com/EarthyScience/REddyProc/blob/master/vignettes/DEGebExample.md)
9393
and further md-files of the [vignettes
94-
directory](https://github.com/bgctw/REddyProc/blob/master/vignettes).
94+
directory](https://github.com/EarthyScience/REddyProc/blob/master/vignettes).
9595

9696
## Docker images
9797

9898
Docker images are provided that comprise rstudio, rocker/tidyverse, and
9999
REddyProc. There are different version for the latest push to github,
100100
for the version on CRAN and for specific tags starting from 1.1.4.
101101

102-
- bgctw/reddyproc:latest
103-
- bgctw/reddyproc_cran
104-
- bgctw/reddyproc:`tag`
102+
- EarthyScience/reddyproc:latest
103+
- EarthyScience/reddyproc_cran
104+
- EarthyScience/reddyproc:`tag`
105105

106106
They are usually run with installed docker by typing at a shell:
107107

develop/compareOldTool/EvaluationGLPartitioning.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Script for testing the new partitioning GL for REddyProc
22
## install (newer version of) REddyProc
3-
# install_github(repo = "bgctw/REddyProc",branch = "master")
3+
# install_github(repo = "EarthyScience/REddyProc",branch = "master")
44

55
library(REddyProc)
66
# alternative

develop/compareOldTool/GLPartitioningTestCase.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Script for running REddyProc with different options on 29 site-years
22
# same as was used in Wutzler17 for benchmarking daytime data
33

4-
# install_github(repo = "bgctw/REddyProc",branch = "master")
4+
# install_github(repo = "EarthyScience/REddyProc",branch = "master")
55

66
if (!exists("partitionNEEGL") ) library(REddyProc) # only load library if not sourced its already
77
.tmp.f <- function(){

0 commit comments

Comments
 (0)