Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,7 @@ The following archive files and folders are available :<br>
|
|
| 40 |
The Sentinel Time Series are provided for each patch in HDF format (.h5) with several datasets :
|
| 41 |
|
| 42 |
`sen-1-asc-data` : Sentinel-1 ascending orbit backscattering coefficient data (Tx2x6x6) | Channels: VV, VH <br>
|
| 43 |
-
`sen-1-asc-products` : Sentinel-1 ascending orbit product names (T)
|
| 44 |
|
| 45 |
`sen-1-des-data`: Sentinel-1 descending orbit backscattering coefficient data (Tx2x6x6) | Channels: VV, VH <br>
|
| 46 |
`sen-1-des-data` : Sentinel-1 ascending orbit product names (T) <br>
|
|
@@ -49,21 +49,18 @@ The Sentinel Time Series are provided for each patch in HDF format (.h5) with se
|
|
| 49 |
`sen-2-masks` : Sentinel-2 cloud cover masks (Tx2x6x6) | Channels: snow probability, cloud probability <br>
|
| 50 |
`sen-2-products` : Sentinel-2 product names (T) <br>
|
| 51 |
|
|
|
|
| 52 |
****
|
| 53 |
|
| 54 |
-
To access the data in python you can use :
|
| 55 |
|
| 56 |
```
|
| 57 |
import h5py
|
| 58 |
-
|
| 59 |
with h5py.File(path/to/h5/file, 'r') as h5:
|
| 60 |
-
|
| 61 |
sen_1_asc_data = f['sen-1-asc-data'][:]
|
| 62 |
sen_1_asc_products = f['sen-1-asc-products'][:]
|
| 63 |
-
|
| 64 |
sen_1_des_data = f['sen-1-des-data'][:]
|
| 65 |
sen_1_des_products = f['sen-1-des-products'][:]
|
| 66 |
-
|
| 67 |
sen_2_data = f['sen-2-data'][:]
|
| 68 |
sen_2_products = f['sen-2-products'][:]
|
| 69 |
sen_2_masks = f['sen-2-masks'][:]
|
|
@@ -76,4 +73,4 @@ with h5py.File(path/to/h5/file, 'r') as h5:
|
|
| 76 |
This dataset is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
|
| 77 |
|
| 78 |
### Contact
|
| 79 |
-
|
|
|
|
| 40 |
The Sentinel Time Series are provided for each patch in HDF format (.h5) with several datasets :
|
| 41 |
|
| 42 |
`sen-1-asc-data` : Sentinel-1 ascending orbit backscattering coefficient data (Tx2x6x6) | Channels: VV, VH <br>
|
| 43 |
+
`sen-1-asc-products` : Sentinel-1 ascending orbit product names (T) <br>
|
| 44 |
|
| 45 |
`sen-1-des-data`: Sentinel-1 descending orbit backscattering coefficient data (Tx2x6x6) | Channels: VV, VH <br>
|
| 46 |
`sen-1-des-data` : Sentinel-1 ascending orbit product names (T) <br>
|
|
|
|
| 49 |
`sen-2-masks` : Sentinel-2 cloud cover masks (Tx2x6x6) | Channels: snow probability, cloud probability <br>
|
| 50 |
`sen-2-products` : Sentinel-2 product names (T) <br>
|
| 51 |
|
| 52 |
+
Sentinel product names follow the official naming convention from the European SPace Agency.
|
| 53 |
****
|
| 54 |
|
| 55 |
+
To access the Sentinel Time Series data in python you can use :
|
| 56 |
|
| 57 |
```
|
| 58 |
import h5py
|
|
|
|
| 59 |
with h5py.File(path/to/h5/file, 'r') as h5:
|
|
|
|
| 60 |
sen_1_asc_data = f['sen-1-asc-data'][:]
|
| 61 |
sen_1_asc_products = f['sen-1-asc-products'][:]
|
|
|
|
| 62 |
sen_1_des_data = f['sen-1-des-data'][:]
|
| 63 |
sen_1_des_products = f['sen-1-des-products'][:]
|
|
|
|
| 64 |
sen_2_data = f['sen-2-data'][:]
|
| 65 |
sen_2_products = f['sen-2-products'][:]
|
| 66 |
sen_2_masks = f['sen-2-masks'][:]
|
|
|
|
| 73 |
This dataset is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
|
| 74 |
|
| 75 |
### Contact
|
| 76 |
+
If you have any questions, issues or feedback, you can contact us at: [email protected]
|