Skip to content

Commit 18f89a1

Browse files
committed
Fixing gitignore and table visualisation
1 parent 7e2d749 commit 18f89a1

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ __pycache__/
6060
# output and intermediate data
6161
src/data/output/*
6262
**/*_pa.tif
63-
src/data/input/affinity
64-
src/data/input/protected_areas
65-
src/data/input/vector
63+
src/data/input/affinity/*
64+
src/data/input/protected_areas/*
65+
src/data/input/vector/*
6666

6767
# Distribution / packaging
6868
.Python

readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,13 @@ As a rule of thumb, it is recommended to use input land-use/land-cover (LULC) da
5656
2. You have a corresponding landscape impedance/resistance dataset in GeoTIFF format [here](src/data/input/impedance), which filename ends with year, for example `impedance_lulc_esa_2017.tif`. You have also put the filename of impedance dataset to the [configuration file](src/config/config.yaml) in `impedance_tif` key.
5757

5858

59-
3. You also have a table [here](src/data/input/impedance) that maps all LULC categories from the 1st input with the values from the 2nd input. Do not rename columns as it might break some parts of Notebooks. \
59+
3. You also have a table [here](src/data/input/impedance) that maps all LULC categories from the 1st input with the values from the 2nd input. Do not rename columns as it might break some parts of Notebooks.
60+
6061
You should have five columns:
62+
6163
| lulc | impedance | type | edge_effect | vector_refine |
6264
|------|-----------|--------|-------------|---------------|
63-
| 1 | 100 | roads | 1 | 1 |
65+
| 1 | 100 | roads | 1 | 1 |
6466
| 2 | 5 | forest | 0 | 0 |
6567

6668
- `lulc` points out the LULC category from the input LULC raster file

0 commit comments

Comments
 (0)