From 7752984ef0e5acccca96246c8fd9dc0500294185 Mon Sep 17 00:00:00 2001 From: Mehmet Cem Gunturkun Date: Fri, 3 Jun 2022 12:30:41 -0400 Subject: [PATCH] Update md5sum of the s1 data file Md5 value for file BigEarthNet-S1-v1.0.tar.gz seems like incorrect which causes code to download the whole data from scratch even though it exists. $ cat BigEarthNet-S1-v1.0.tar.gz.md5sum 94ced73440dea8c7b9645ee738c5a172 BigEarthNet-S1-v1.0.tar.gz $ cat BigEarthNet-S2-v1.0.tar.gz.md5sum 5a64e9ce38deb036a435a7b59494924c BigEarthNet-S2-v1.0.tar.gz --- torchgeo/datasets/bigearthnet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchgeo/datasets/bigearthnet.py b/torchgeo/datasets/bigearthnet.py index 64812d27c0b..645ca418c45 100644 --- a/torchgeo/datasets/bigearthnet.py +++ b/torchgeo/datasets/bigearthnet.py @@ -245,7 +245,7 @@ class BigEarthNet(VisionDataset): metadata = { "s1": { "url": "http://bigearth.net/downloads/BigEarthNet-S1-v1.0.tar.gz", - "md5": "5a64e9ce38deb036a435a7b59494924c", + "md5": "94ced73440dea8c7b9645ee738c5a172", "filename": "BigEarthNet-S1-v1.0.tar.gz", "directory": "BigEarthNet-S1-v1.0", },