Skip to content

Commit

Permalink
updated docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaccorley committed Oct 17, 2021
1 parent 684fafc commit 5b66e01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion torchgeo/datasets/bigearthnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ class BigEarthNet(VisionDataset):
* Sentinel-1 bands: (VV, VH)
* Sentinel-2 bands: (B01, B02, B03, B04, B05, B06, B07, B08, B8A, B09, B11, B12)
* All bands: (VV, VH, B01, B02, B03, B04, B05, B06, B07, B08, B8A, B09, B11, B12)
* Sentinel-2 bands are of different spatial resolutions and upsampled to 10m
Dataset classes:
Expand Down Expand Up @@ -274,7 +275,7 @@ def _load_image(self, index: int) -> Tensor:
paths = self._load_paths(index)
images = []
for path in paths:
# Images are of different spatial resolutions
# Bands are of different spatial resolutions
# Resample to (120, 120)
with rasterio.open(path) as dataset:
array = dataset.read(
Expand Down

0 comments on commit 5b66e01

Please sign in to comment.