Skip to content
Snippets Groups Projects
Commit aea02ddb authored by Jean-Marie Lepioufle's avatar Jean-Marie Lepioufle
Browse files

add tarball w/ version for docker

parent 8980a15c
No related branches found
No related tags found
No related merge requests found
Showing
with 98 additions and 0 deletions
^.*\.Rproj$
^\.Rproj\.user$
^\TODO.md
lib/
File added
File added
## osm data
wget --quiet https://cran.r-project.org/src/contrib/generics_0.0.2.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/lubridate/lubridate_1.7.4.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/stringi/stringi_1.4.3.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/stringr_1.4.0.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/selectr/selectr_0.4-1.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/rvest/rvest_0.3.4.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/lattice/lattice_0.20-38.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/sp/sp_1.3-2.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/osmdata/osmdata_0.1.1.tar.gz
## friendlyts
### ggplot2
wget --quiet https://cran.r-project.org/src/contrib/gtable_0.3.0.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/lazyeval_0.2.2.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/plyr/plyr_1.8.4.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/reshape2/reshape2_1.4.3.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/labeling_0.3.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/colorspace_1.4-1.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/munsell_0.5.0.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/RColorBrewer_1.1-2.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/viridisLite_0.3.0.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/scales/scales_1.0.0.tar.gz
wget --quiet https://cran.r-project.org/src/contrib/Archive/ggplot2/ggplot2_3.1.1.tar.gz
### tidyr
wget --quiet https://cran.r-project.org/src/contrib/Archive/tidyr/tidyr_0.8.3.tar.gz
### friendlyts
wget --quiet https://git.nilu.no/RSpaceTimeManip/timemanip/-/archive/0.9.4/timemanip-0.9.4.tar.gz
wget --quiet https://git.nilu.no/RfriendlyTS/friendlyts/-/archive/0.3.1/friendlyts-0.3.1.tar.gz
## friendlyr
wget --quiet https://git.nilu.no/Rfriendlyr/friendlyr/-/archive/1.1/friendlyr-1.1.tar.gz
File added
File added
File added
sourcedir <- file.path(getwd(),"lib")
install.packages(file.path(sourcedir,"data.eimetr-0.0.1.tar.gz"), repos=NULL, type='source')
# download repository
&& git clone https://git.nilu.no/rspacetimemanip/timemanip.git \
&& git clone https://git.nilu.no/rfriendlyts/friendlyts.git \
&& git clone https://git.nilu.no/rfriendlyr/friendlyr.git \
# install friendlyr and its dependencies
## osmdata
&& R -e "install.packages('https://cran.r-project.org/src/contrib/generics_0.0.2.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/lubridate/lubridate_1.7.4.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/stringi/stringi_1.4.3.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/stringr_1.4.0.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/selectr/selectr_0.4-1.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/rvest/rvest_0.3.4.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/lattice/lattice_0.20-38.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/sp/sp_1.3-2.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/osmdata/osmdata_0.1.1.tar.gz', repos=NULL, type='source')" \
## friendlyts
### ggplot2
&& R -e "install.packages('https://cran.r-project.org/src/contrib/gtable_0.3.0.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/lazyeval_0.2.2.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/plyr/plyr_1.8.4.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/reshape2/reshape2_1.4.3.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/labeling_0.3.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/colorspace_1.4-1.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/munsell_0.5.0.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/RColorBrewer_1.1-2.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/viridisLite_0.3.0.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/scales/scales_1.0.0.tar.gz', repos=NULL, type='source')" \
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/ggplot2/ggplot2_3.1.1.tar.gz', repos=NULL, type='source')" \
### tidyr
&& R -e "install.packages('https://cran.r-project.org/src/contrib/Archive/tidyr/tidyr_0.8.3.tar.gz', repos=NULL, type='source')" \
### friendlyts
&& R -e "install.packages('/tmp/timemanip',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/friendlyts', repos=NULL, type='source')" \
## friendlyr
&& R -e "install.packages('/tmp/friendlyr',repos=NULL,type='source')" \
# download repository
&& git clone https://git.nilu.no/rextdata/data.eimetr.git \
&& git clone https://git.nilu.no/runits/pollunits.git \
&& git clone https://git.nilu.no/rextdata/data.eipar.git \
&& git clone https://git.nilu.no/rextdata/data.luftkval.oslo10.git \
&& git clone https://git.nilu.no/rextdata/data.synthaq.oslo10.seed123.git \
&& git clone https://git.nilu.no/rextapi/rapiclient.git \
&& git clone https://git.nilu.no/rextapi/frostr.git \
&& git clone https://git.nilu.no/rfriendlyr/d.eimetlyr.git \
&& git clone https://git.nilu.no/rfriendlyr/d.eipalyr.git \
&& git clone https://git.nilu.no/rfriendlyr/d.luft.oslyr.git \
&& git clone https://git.nilu.no/rfriendlyr/d.synthaq.oslyr.git \
&& git clone https://git.nilu.no/rfriendlyr/frostlyr.git \
## dataset data.luftkval.oslo10
&& R -e "install.packages('/tmp/data.eimetr',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/data.eipar',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/data.luftkval.oslo10',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/data.synthaq.oslo10.seed123',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/rapiclient',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/frostr',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/d.eimetlyr',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/d.eipalyr',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/d.luft.oslyr',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/d.synthaq.oslyr',repos=NULL,type='source')" \
&& R -e "install.packages('/tmp/frostlyr',repos=NULL,type='source')" \
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment