Skip to content

Commit

Permalink
add ggh and new nn addon
Browse files Browse the repository at this point in the history
  • Loading branch information
griembauer committed Dec 23, 2024
1 parent b392b3f commit ba4b449
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,20 @@ ENV PROJ_NETWORK=ON
ENV GRASS_ADDON_BASE=/usr/local/grass84

# install external dependencies
RUN pip3 install py7zr tqdm requests psutil scikit-learn pyproj pandas
RUN pip3 install py7zr tqdm requests psutil scikit-learn pyproj pandas grass-gis-helpers

# install official addons
RUN grass --tmp-location EPSG:4326 --exec g.extension r.mapcalc.tiled -s
RUN grass --tmp-location EPSG:4326 --exec g.extension v.centerpoint -s
RUN grass --tmp-location EPSG:4326 --exec g.extension r.learn.ml2 -s

# install an addon from mundialis
# install addons from mundialis
RUN wget https://github.com/mundialis/v.alkis.buildings.import/archive/refs/tags/${V_ALKIS_BUILDINGS_IMPORT_VERSION}.zip \
&& grass --tmp-location EPSG:4326 --exec g.extension v.alkis.buildings.import url=${V_ALKIS_BUILDINGS_IMPORT_VERSION}.zip -s \
&& rm ${V_ALKIS_BUILDINGS_IMPORT_VERSION}.zip

RUN grass --tmp-location EPSG:4326 --exec g.extension m.neural_network url=https://github.com/mundialis/m.neural_network -s

# install RVR-specific GRASS GIS addons
COPY grass-gis-addons /src/grass-gis-addons

Expand Down

0 comments on commit ba4b449

Please sign in to comment.