Update README.md
Browse files
README.md
CHANGED
|
@@ -57,17 +57,28 @@ Raw and processed folder contains identical data.
|
|
| 57 |
|
| 58 |
## Curvature
|
| 59 |

|
| 60 |
-
TODO
|
|
|
|
|
|
|
| 61 |
|
| 62 |
## Hillshade
|
| 63 |

|
| 64 |
-
The hillshade layer was created
|
|
|
|
|
|
|
| 65 |
|
| 66 |
## NDVI
|
| 67 |

|
|
|
|
| 68 |
|
| 69 |
## Roughness
|
| 70 |

|
|
|
|
|
|
|
|
|
|
| 71 |
|
| 72 |
## Slope
|
| 73 |
-

|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
|
| 58 |
## Curvature
|
| 59 |

|
| 60 |
+
The curvature layer was calculated as follows: TODO formula. The disance between the center and the edge points is set to 5 meters to cover wider area.
|
| 61 |
+
The raw folder contains the data with the above mentioned formula applied. The edges with artifacts were cropped from dataset. Values above 0 presents convexe surfaces. Values below 0 presents concave surfaces.
|
| 62 |
+
The data in processed folder were clipped with value +-2 - e.g. the values below -2 were set to -2 and the values above 2 were set to 2. Finally, the data is normalized to values from interval [0, 1] by setting the minimum value to -2 and the maximum to 2.
|
| 63 |
|
| 64 |
## Hillshade
|
| 65 |

|
| 66 |
+
The hillshade layer was created from DEM by using multidirectional hillshade function in QGIS and by applying 45° vertical angle.
|
| 67 |
+
Raw folder contains RGB image with pixel values from 0 to 196.
|
| 68 |
+
The processed folder contains a selected single band from RGB image. CLAHE filter was applied to this band to enhance contrast and the output was normalized to values in interval [0, 1].
|
| 69 |
|
| 70 |
## NDVI
|
| 71 |

|
| 72 |
+
TODO
|
| 73 |
|
| 74 |
## Roughness
|
| 75 |

|
| 76 |
+
The roughness layer was created from DEM by using roughness function in QGIS.
|
| 77 |
+
The raw folder contains single band data with unchanged values.
|
| 78 |
+
The proceesed folder contains the normalized data to interval [0,1] where the minimum was set to 0 and maximum to TODO.
|
| 79 |
|
| 80 |
## Slope
|
| 81 |
+

|
| 82 |
+
The slope layer was created from DEM by using slope function in QGIS.
|
| 83 |
+
The raw folder contains single band data with unchanged values (degrees of slope inclination).
|
| 84 |
+
The proceesed folder contains the normalized data to interval [0,1] where the minimum was set to 0 degrees and maximum to 90 degrees.
|