Update README.md
Browse files
README.md
CHANGED
@@ -31,6 +31,13 @@ We opted to use HDF5 to grant better portability and lower file size than GeoTIF
|
|
31 |
|
32 |
### Dataset opening
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
The dataset was compressed using `h5py` and BZip2 from `hdf5plugin`. **WARNING: `hdf5plugin` is necessary to extract data**.
|
35 |
|
36 |
### Data Instances
|
|
|
31 |
|
32 |
### Dataset opening
|
33 |
|
34 |
+
```python
|
35 |
+
from dataset import load_dataset
|
36 |
+
|
37 |
+
# There are two available configurations "post-fire" and "pre-post-fire"
|
38 |
+
dataset = load_dataset("DarthReca/california_burned_areas", name="post-fire")
|
39 |
+
```
|
40 |
+
|
41 |
The dataset was compressed using `h5py` and BZip2 from `hdf5plugin`. **WARNING: `hdf5plugin` is necessary to extract data**.
|
42 |
|
43 |
### Data Instances
|