Skip to content

Commit

Permalink
docs: doc option that controls verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle committed Feb 28, 2024
1 parent 5a34446 commit 26e47b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The goal of EMODnetWFS is to allow interrogation of and access to [EMODnet geogr
[Web Feature services (WFS)](https://www.ogc.org/standard/wfs/) represent a change in the way geographic information is created, modified and exchanged on the Internet and offer direct fine-grained access to geographic information at the feature and feature property level.
EMODnetWFS aims at offering an user-friendly interface to this rich data.

## Installation
## Installation and setup

You can install the development version of EMODnetWFS from GitHub with:

Expand All @@ -35,6 +35,13 @@ You can install the development version of EMODnetWFS from GitHub with:
pak::pak("EMODnet/EMODnetWFS")
```

If you want to avoid reading messages from EMODnetWFS such as "WFS client created successfully",
set the `"EMODnetWFS.quiet"` option to `TRUE`.

```r
options("EMODnetWFS.quiet" = TRUE)
```

## Available services

All available services are contained in the tibble returned by `emodnet_wfs()`.
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Internet and offer direct fine-grained access to geographic information
at the feature and feature property level. EMODnetWFS aims at offering
an user-friendly interface to this rich data.

## Installation
## Installation and setup

You can install the development version of EMODnetWFS from GitHub with:

Expand All @@ -33,6 +33,14 @@ You can install the development version of EMODnetWFS from GitHub with:
pak::pak("EMODnet/EMODnetWFS")
```

If you want to avoid reading messages from EMODnetWFS such as “WFS
client created successfully”, set the `"EMODnetWFS.quiet"` option to
`TRUE`.

``` r
options("EMODnetWFS.quiet" = TRUE)
```

## Available services

All available services are contained in the tibble returned by
Expand Down

0 comments on commit 26e47b5

Please sign in to comment.