Skip to content

Commit 7a92154

Browse files
committed
update documentation to point to Atlantis-Ecosystem-Model rather than andybeet
1 parent cfa1248 commit 7a92154

File tree

4 files changed

+22
-19
lines changed

4 files changed

+22
-19
lines changed

Diff for: DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Authors@R:
66
c(person("Alexander", "Keth", email = "[email protected]", role = c("aut")),
77
person("Andy", "Beet", email = "[email protected]", role = c("cre")))
88
Description: Atlantis is an end-to-end marine ecosystem modelling framework. It was originally developed in Australia by E.A. Fulton, A.D.M. Smith and D.C. Smith (2007) and has since been adopted in many marine ecosystems around the world (<http://atlantis.cmar.csiro.au>). The output of an Atlantis simulation is stored in various file formats like .netcdf and .txt and different output structures are used for the output variables like e.g. productivity or biomass. This package is used to convert the different output types to a unified format according to the "tidy-data" approach by H. Wickham (2014) <DOI:10.18637/jss.v059.i10>. Additionally, ecological metrics like for example spatial overlap of predator and prey or consumption can be calculated and visualised with this package. Due to the unified data structure it is very easy to share model output with each other and perform model comparisons.
9-
URL: https://github.com/andybeet/atlantistools
10-
BugReports: https://github.com/andybeet/atlantistools/issues
9+
URL: https://github.com/Atlantis-Ecosystem-Model/atlantistools
10+
BugReports: https://github.com/Atlantis-Ecosystem-Model/atlantistools/issues
1111
Depends:
1212
R (>= 3.2.3)
1313
License: GPL-3

Diff for: README.Rmd

+8-7
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ output:
99
# atlantistools
1010

1111
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/atlantistools)](https://cran.r-project.org/package=atlantistools)
12-
[![R-CMD-check](https://github.com/andybeet/atlantistools/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/andybeet/atlantistools/actions/workflows/R-CMD-check.yaml)
13-
[![gh-pages](https://github.com/andybeet/atlantistools/actions/workflows/pkgdown.yml/badge.svg)](https://github.com/andybeet/atlantistools/actions/workflows/pkgdown.yml)
12+
[![R-CMD-check](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/R-CMD-check.yaml)
13+
[![gh-pages](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/pkgdown.yml/badge.svg)](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/pkgdown.yml)
1414

1515
`atlantistools` is a data processing and visualisation tool for R, which helps to process output from Atlantis models within R.
1616
Using atlantistools makes sure that Atlantis users use the same input/output file structure which facilitates intra and inter model comparisons.
@@ -20,23 +20,24 @@ Using atlantistools makes sure that Atlantis users use the same input/output fil
2020
Install from CRAN: (Version 0.4.3 only)
2121

2222
```R
23-
install.packages("atlantistools")
23+
install.packages("Atlantis-Ecosystem-Model/atlantistools")
2424
```
2525

26-
Since version 0.4.3 all development resides on GitHub.
26+
Since version 0.4.3 all development resides on GitHub. To view the changes to `atlantistools` since version 0.4.3 please read the [NEWS.md](https://Atlantis-Ecosystem-Model.github.io/atlantistools/news/index.html)
27+
2728
To Install the development version from Github:
2829

2930
```R
30-
remotes::install_github("")
31+
remotes::install_github("Atlantis-Ecosystem-Model/atlantistools")
3132
```
3233

3334
# Documentation
3435

3536
All documentation can now be found online in the gh-pages branch of this repo
3637

37-
Full documentation can be found [here](https://andybeet.github.io/atlantistools/index.html)
38+
Full documentation can be found [here](https://Atlantis-Ecosystem-Model.github.io/atlantistools/index.html)
3839

39-
Vignettes can be found [here](https://andybeet.github.io/atlantistools/articles/)
40+
Vignettes can be found [here](https://Atlantis-Ecosystem-Model.github.io/atlantistools/articles/)
4041

4142

4243

Diff for: README.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ atlantistools
44
=============
55

66
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/atlantistools)](https://cran.r-project.org/package=atlantistools)
7-
[![R-CMD-check](https://github.com/andybeet/atlantistools/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/andybeet/atlantistools/actions/workflows/R-CMD-check.yaml)
8-
[![gh-pages](https://github.com/andybeet/atlantistools/actions/workflows/pkgdown.yml/badge.svg)](https://github.com/andybeet/atlantistools/actions/workflows/pkgdown.yml)
7+
[![R-CMD-check](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/R-CMD-check.yaml)
8+
[![gh-pages](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/pkgdown.yml/badge.svg)](https://github.com/Atlantis-Ecosystem-Model/atlantistools/actions/workflows/pkgdown.yml)
99

1010
`atlantistools` is a data processing and visualisation tool for R, which
1111
helps to process output from Atlantis models within R. Using
@@ -18,14 +18,17 @@ Installation
1818
Install from CRAN: (Version 0.4.3 only)
1919

2020
``` r
21-
install.packages("atlantistools")
21+
install.packages("Atlantis-Ecosystem-Model/atlantistools")
2222
```
2323

24-
Since version 0.4.3 all development resides on GitHub. To Install the
25-
development version from Github:
24+
Since version 0.4.3 all development resides on GitHub. To view the
25+
changes to `atlantistools` since version 0.4.3 please read the
26+
[NEWS.md](https://Atlantis-Ecosystem-Model.github.io/atlantistools/news/index.html)
27+
28+
To Install the development version from Github:
2629

2730
``` r
28-
remotes::install_github("")
31+
remotes::install_github("Atlantis-Ecosystem-Model/atlantistools")
2932
```
3033

3134
Documentation
@@ -35,7 +38,7 @@ All documentation can now be found online in the gh-pages branch of this
3538
repo
3639

3740
Full documentation can be found
38-
[here](https://andybeet.github.io/atlantistools/index.html)
41+
[here](https://Atlantis-Ecosystem-Model.github.io/atlantistools/index.html)
3942

4043
Vignettes can be found
41-
[here](https://andybeet.github.io/atlantistools/articles/)
44+
[here](https://Atlantis-Ecosystem-Model.github.io/atlantistools/articles/)

Diff for: vignettes/atlantistools.Rmd

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ knitr::opts_chunk$set(
1818
library(atlantistools)
1919
```
2020

21-
The original `atlantistools` was created and maintained by Alexander Keth. However development was ceased on January, 2018.
21+
`atlantistools` was created by [Alexander Keth](https://github.com/alketh). In October 2021 `altantistools` was transferred to the atlantis group at [CSIRO](https://github.com/Atlantis-Ecosystem-Model) for continued development
2222

23-
This repo is forked from the original. It will be further developed here
2423

2524

2625

0 commit comments

Comments
 (0)