Skip to content

Commit 25ebd52

Browse files
authored
add m.neural_network and Training Data Generation Documentation (#90)
2 parents f78e195 + 1551279 commit 25ebd52

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osgeo/grass-gis:main-ubuntu_wxgui
1+
FROM osgeo/grass-gis:8.4.0-ubuntu_wxgui
22

33
# Version of GRASS GIS Addons
44
ENV V_ALKIS_BUILDINGS_IMPORT_VERSION 1.1.0
@@ -19,19 +19,22 @@ ENV PROJ_NETWORK=ON
1919
ENV GRASS_ADDON_BASE=/usr/local/grass84
2020

2121
# install external dependencies
22-
# do not use scikit-learn >=1.6 because it introduced breaking changes incompatible with r.learn.ml2
23-
RUN pip3 install py7zr tqdm requests psutil "scikit-learn==1.5.2" pyproj pandas
22+
# do not use scikit-learn >=1.6 because it introduced breaking changes incompatible with r.learn.ml2
23+
RUN pip3 install py7zr tqdm requests psutil "scikit-learn==1.5.2" pyproj pandas grass-gis-helpers
24+
2425

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

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

36+
RUN grass --tmp-location EPSG:4326 --exec g.extension m.neural_network url=https://github.com/mundialis/m.neural_network -s
37+
3538
# install RVR-specific GRASS GIS addons
3639
COPY grass-gis-addons /src/grass-gis-addons
3740

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Repo for code and script transfer between mundialis and RVR - GRASS GIS addons:
44

55
- **m.import.rvr** imports data for the processing of <b>buildings analysis</b>,
6-
<b>green roofs</b> and/or <b>trees analysis</b>.
6+
<b>green roofs</b>, <b>trees analysis</b>. or <b>neural network</b>.
77

88
- **r.import.dtm_nrw** downloads and imports the NRW digital terrain model
99
(DTM) 1m into the current mapset. Only the extent of the current region is

docs/Dokumentation_NN_v1.0.0.pdf

430 KB
Binary file not shown.

0 commit comments

Comments
 (0)