Skip to content

Commit f344268

Browse files
committed
readme
1 parent dfe9146 commit f344268

3 files changed

Lines changed: 56 additions & 6 deletions

File tree

README.Rmd

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,32 @@ knitr::opts_chunk$set(
1414
```
1515
# seaice
1616

17-
The goal of seaice is to provide access to sea ice concentration data.
17+
The goal of seaice is to provide easy access to sea ice concentration data.
1818

19-
Now that bowerbird and blueant are able to reliably synchronize these data it's time to unpack the support for these data in raadtools and raadfiles and make a sea ice data specifica package that can be used on its own.
19+
Seaice uses [bowerbird and blueant](https://github.com/AustralianAntarcticDivision/bowerbird) to obtain the entire collection of near-real time NSIDC 25km raw binary files, and keep it up to date. This is a manageably small set of data (<300Mb) that is current, but only extends back two or three years and has some "near real time" artefacts. In future we aim to make it easy to obtain the entire time series (from late 1978), and to prioritize the better quality data as it becomes available.
2020

21+
Currently the file cataloguing and data read is restricted to the northern polar data, although both polar regions are downloaded, and updated when re-running `bb_sync` (see the vignettes).
2122

22-
WIP
23+
This project aims to separate out similar functionality in the institutional packages [raadtools and raadfiles]((https://github.com/AustralianAntarcticDivision/raadtools) that provide a powerful but not generally accessible set of data tools.
2324

25+
## Installation
26+
27+
You can install seaice from GitHub with:
28+
29+
```{r gh-installation, eval = FALSE}
30+
# install.packages("devtools")
31+
devtools::install_github("mdsumner/seaice")
32+
```
33+
34+
## Example
35+
36+
37+
WIP - see the vignettes and the inst/examples/.
38+
39+
```{r}
40+
library(seaice)
41+
library(raster)
42+
x <- read_north_seaice(latest = TRUE)
43+
plot(x, col = grey(seq(0, 1, length = 100)), axes = FALSE, colNA = "grey")
44+
title(format(getZ(x)))
45+
```

README.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,36 @@
33
seaice
44
======
55

6-
The goal of seaice is to provide access to sea ice concentration data.
6+
The goal of seaice is to provide easy access to sea ice concentration data.
77

8-
Now that bowerbird and blueant are able to reliably synchronize these data it's time to unpack the support for these data in raadtools and raadfiles and make a sea ice data specifica package that can be used on its own.
8+
Seaice uses [bowerbird and blueant](https://github.com/AustralianAntarcticDivision/bowerbird) to obtain the entire collection of near-real time NSIDC 25km raw binary files, and keep it up to date. This is a manageably small set of data (&lt;300Mb) that is current, but only extends back two or three years and has some "near real time" artefacts. In future we aim to make it easy to obtain the entire time series (from late 1978), and to prioritize the better quality data as it becomes available.
99

10-
WIP
10+
Currently the file cataloguing and data read is restricted to the northern polar data, although both polar regions are downloaded, and updated when re-running `bb_sync` (see the vignettes).
11+
12+
This project aims to separate out similar functionality in the institutional packages \[raadtools and raadfiles\]((<https://github.com/AustralianAntarcticDivision/raadtools>) that provide a powerful but not generally accessible set of data tools.
13+
14+
Installation
15+
------------
16+
17+
You can install seaice from GitHub with:
18+
19+
``` r
20+
# install.packages("devtools")
21+
devtools::install_github("mdsumner/seaice")
22+
```
23+
24+
Example
25+
-------
26+
27+
WIP - see the vignettes and the inst/examples/.
28+
29+
``` r
30+
library(seaice)
31+
library(raster)
32+
#> Loading required package: sp
33+
x <- read_north_seaice(latest = TRUE)
34+
plot(x, col = grey(seq(0, 1, length = 100)), axes = FALSE, colNA = "grey")
35+
title(format(getZ(x)))
36+
```
37+
38+
<img src="man/figures/README-unnamed-chunk-1-1.png" width="100%" />
15 KB
Loading

0 commit comments

Comments
 (0)