FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
QRaven/Dockerfile at main · Scriptbash/QRaven · GitHub
Scriptbash
/
QRaven
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1
Star
5
Code
Issues
13
Pull requests
2
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
QRaven
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
73 lines (73 loc) · 2.98 KB
Breadcrumbs
QRaven
/
Dockerfile
Copy path
File metadata and controls
73 lines (73 loc) · 2.98 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
ARG
ARCH=
FROM
${ARCH}ubuntu:jammy
ENV
LANG=en_EN.UTF-8 \
LANGUAGE=en_US:en
\
LC_ALL=en_US.UTF-8 \
DEBIAN_FRONTEND=noninteractive \
DISPLAY=:99
SHELL
[
"/bin/bash"
,
"-c"
]
RUN
apt-get update \
&& apt-get install --no-install-suggests --allow-unauthenticated -y \
gnupg \
ca-certificates \
software-properties-common \
wget \
locales \
qgis qgis-plugin-grass \
grass-gui \
grass-dev \
saga \
pip \
xvfb \
mpich \
netcdf-bin \
unzip \
&& localedef -i en_US -f UTF-8 en_US.UTF-8 \
#
&& python3 -m pip install https://github.com/dustming/basinmaker/archive/master.zip \
&& python3 -m pip install https://github.com/dustming/basinmaker/archive/refs/tags/v3.1.0.zip \
simpledbf \
grass_session \
joblib \
pandas \
scipy \
argparse \
geopandas \
netCDF4 \
GDAL \
numpy \
&& echo
"export GISBASE='/usr/lib/grass78'"
>> ~/.bashrc \
&& echo
"export QGIS_PREFIX_PATH='/usr'"
>> ~/.bashrc \
&& echo
"export PYTHONPATH=
\$
PYTHONPATH:'/usr/lib/grass78/etc/python'"
>> ~/.bashrc \
&& echo
"export PYTHONPATH=
\$
PYTHONPATH:'/usr/share/qgis/python/plugins'"
>> ~/.bashrc \
&& echo
"export PYTHONPATH=
\$
PYTHONPATH:'/usr/share/qgis/python'"
>> ~/.bashrc \
&& source /root/.bashrc \
&& mkdir -p ~/BasinMaker/Data/{bkf_width,DEM,extent_poly,flow_direction,hybasin,lakes,landuse,soil,stations} \
&& mkdir -p ~/Gridweights/Data \
&& mkdir -p ~/Raven/build \
&& mkdir -p ~/Ostrich/build \
&& cd ~/BasinMaker \
&& wget --secure-protocol=TLSv1_2 https://raw.githubusercontent.com/Scriptbash/QRaven/main/create_RVH.py \
&& cd ~/Gridweights \
&& wget --secure-protocol=TLSv1_2 https://raw.githubusercontent.com/dustming/GridWeightsGenerator/main/derive_grid_weights.py \
#
&& wget --secure-protocol=TLSv1_2 https://raw.githubusercontent.com/julemai/GridWeightsGenerator/main/derive_grid_weights.py \
&& cd ~/Raven/build \
&& wget --secure-protocol=TLSv1_2 http://raven.uwaterloo.ca/files/v3.7/RavenSource_v3.7.zip \
&& unzip RavenSource_v3.7.zip \
&& sed -i
's/^CXXFLAGS += -std=c++11/#&/'
Makefile \
&& sed -i
'/Options.pause =true;/c
\O
ptions.pause =false;'
RavenMain.cpp \
&& make \
&& cp Raven.exe /usr/local/bin \
&& rm -R ~/Raven/build \
&& cd ~/Ostrich/build \
&& wget --secure-protocol=TLSv1_2 https://github.com/usbr/ostrich/archive/refs/tags/v21.03.16.zip \
&& unzip v21.03.16.zip \
&& cd ostrich-21.03.16/make \
&& make GCC_MPI \
&& cp OstrichMPI /usr/local/bin \
&& rm -R ~/Ostrich/build \
&& cd ~ \
&& grass -c EPSG:4326 ~/grass_tmp --text --exec g.extension r.clip \
&& grass -c EPSG:4326 ~/grass_tmp2 --text --exec g.extension r.accumulate \
&& grass -c EPSG:4326 ~/grass_tmp3 --text --exec g.extension r.stream.basins \
&& grass -c EPSG:4326 ~/grass_tmp4 --text --exec g.extension r.stream.snap \
&& exit
Back
|
FazBrowse Home
|
New Git URL