DarthReca commited on
Commit
015d51b
·
verified ·
1 Parent(s): c085dd4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -2
README.md CHANGED
@@ -51,8 +51,16 @@ All climate data are contained in *climate.h5*. Each identifier contains the fol
51
  The data for the two satellites and DEM are contained in the respective folders.
52
  For portability, the whole dataset is divided into parts. You can easily iterate over the whole dataset using the *_main.h5* files,
53
  since they contain the [external links](https://docs.h5py.org/en/stable/high/group.html#external-links) to the correct file
54
- ```bash
55
- ```
 
 
 
 
 
 
 
 
56
 
57
  ## Citation
58
 
 
51
  The data for the two satellites and DEM are contained in the respective folders.
52
  For portability, the whole dataset is divided into parts. You can easily iterate over the whole dataset using the *_main.h5* files,
53
  since they contain the [external links](https://docs.h5py.org/en/stable/high/group.html#external-links) to the correct file
54
+
55
+ | Key | Shape | Data Type | Description |
56
+ | :--- | :--- | :--- | :--- |
57
+ | `bands` | `(6, T, 256, 256)` | `uint8/16` | Contains the 6 multispectral image bands. |
58
+ | `dem` | `(1, 256, 256)` | `int16` | Digital Elevation Model for the location. |
59
+ | `qa_mask` | `(T, 256, 256)` | `bool` | Cloud mask for each time step. |
60
+ | `months` | `(T,)` | `uint8` | The month (1-12) for each time step. |
61
+ | `years` | `(T,)` | `int64` | The year for each time step. |
62
+ | `x` | `(256,)` | `float32` | The x-coordinate of the location in WGS84. |
63
+ | `y` | `(256,)` | `float32` | The y-coordinate of the location in WGS84. |
64
 
65
  ## Citation
66