sandanusm commited on
Commit
0eb8330
·
verified ·
1 Parent(s): 2c48dbb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -3
README.md CHANGED
@@ -57,17 +57,28 @@ Raw and processed folder contains identical data.
57
 
58
  ## Curvature
59
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/H1r3Gb1Fho2h-Unc7gy6e.png)
60
- TODO
 
 
61
 
62
  ## Hillshade
63
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/sNOv4JhLJA0rvGHYYPtVo.png)
64
- The hillshade layer was created
 
 
65
 
66
  ## NDVI
67
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/o0AwliWCg5QA6ZlsRGf99.png)
 
68
 
69
  ## Roughness
70
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/qcLbwXT_n_uQpywolUX7N.png)
 
 
 
71
 
72
  ## Slope
73
- ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/jnLfos8FD2t9-gcvmDtgM.png)
 
 
 
 
57
 
58
  ## Curvature
59
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/H1r3Gb1Fho2h-Unc7gy6e.png)
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
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/sNOv4JhLJA0rvGHYYPtVo.png)
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
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/o0AwliWCg5QA6ZlsRGf99.png)
72
+ TODO
73
 
74
  ## Roughness
75
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/qcLbwXT_n_uQpywolUX7N.png)
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
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/651d578a1819d9e5754ffc47/jnLfos8FD2t9-gcvmDtgM.png)
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.