Commit e538619e authored by Grelot Frederic's avatar Grelot Frederic :swimmer_tone5:
Browse files

MAJ README

parent 495b6bd9
1 merge request!26Resolve "manage BAN"
Showing with 32 additions and 0 deletions
+32 -0
......@@ -32,6 +32,38 @@ In this context, the development of **floodam.data** has received the support of
- download and prepare data from INSEE.
## How to get **floodam.data** ?
You can download and install it from this archive:
[www.floodam.org/library/floodam.data_0.9.37.0.tar.gz](http://www.floodam.org/library/floodam.data_0.9.37.0.tar.gz).
For instance, in a linux environment, you can use those bash instructions:
```
# without devtools
wget www.floodam.org/library/floodam.data_0.9.37.0.tar.gz
R -e "install.packages(pkgs = 'floodam.data_0.9.37.0.tar.gz', type = 'source', repos = NULL, dependencies = TRUE)"
rm floodam.data_0.9.37.0.tar.gz
# with devtools
R -e "devtools::install_url('www.floodam.org/library/floodam.data_0.9.37.0.tar.gz')"
```
In case you are not using a linux environment, you can do the same within a R session:
```
# without devtools
archive = "floodam.data_0.9.37.0.tar.gz"
url = file.path("www.floodam.org/library", archive)
download.file(url = url, destfile = archive)
install.packages(pkgs = archive, type = 'source', repos = NULL, dependencies = TRUE)
unlink(archive)
# with devtools
devtools::install_url('www.floodam.org/library/floodam.data_0.9.37.0.tar.gz')
```
## How to get **floodam.data** ?
For the moment, ask us. It will be public soon.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment