cuibinge commited on
Commit
618a738
Β·
verified Β·
1 Parent(s): 22cbc6e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +142 -1
README.md CHANGED
@@ -1 +1,142 @@
1
- hello
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Polar Glacier Bitemporal Remote Sensing Dataset"
3
+ language:
4
+ - en
5
+ license: "cc-by-4.0"
6
+ tags:
7
+ - remote-sensing
8
+ - glacier-change-detection
9
+ - bitemporal
10
+ - landsat
11
+ - geospatial
12
+ - image
13
+ - environmental-monitoring
14
+ task_categories:
15
+ - image-classification
16
+ - image-segmentation
17
+ ---
18
+ # Polar Glacier Bitemporal Remote Sensing Dataset
19
+
20
+ ## Dataset Overview
21
+
22
+ This dataset contains bitemporal remote sensing images from two representative polar regions:
23
+
24
+ ### Southeastern Coast of Greenland
25
+ (Latitude 64°–66Β°N, Longitude 51°–56Β°W):
26
+ Dominated by glaciers and icefields, this area features exposed bedrock mountains and narrow coastal vegetation zones. It is a key region for studying glacier dynamics, with typical crevasse systems on the glacier surface and primitive vegetation emerging in coastal areas following glacier retreat.
27
+
28
+ ### Svalbard Archipelago
29
+ (Latitude 74°–81Β°N, Longitude 10°–35Β°E):
30
+ Approximately 60% of this region is covered by glaciers, while the remainder consists of exposed land and Arctic tundra vegetation. It includes various glacier types such as ice caps, valley glaciers, and icefields, making it an ideal site for studying glacier–permafrost interactions in the Arctic.
31
+
32
+ ---
33
+
34
+ ## Dataset Specifications
35
+
36
+ | Property | Description |
37
+ |----------------------|-----------------------------------------|
38
+ | Source | Landsat-8 Satellite |
39
+ | Spectral Bands | Red, Green, Blue (RGB composite) |
40
+ | Spatial Resolution | 30 meters |
41
+ | Image Patch Size | 256 Γ— 256 pixels |
42
+ | Total Image Pairs | 683 |
43
+ | Preprocessing | Georeferenced and Cropped |
44
+
45
+ ---
46
+
47
+ ## Data Construction and Patch Sampling
48
+
49
+ To construct a high-quality glacier change detection dataset, we first collected bi-temporal Landsat-8 imagery covering polar regions, with an original size of 8541 Γ— 8601 pixels and a spatial resolution of 30 meters. To focus on glacier-dominated areas and exclude irrelevant background, we manually selected and cropped a subregion of 5109 Γ— 4801 pixels. A sliding window approach with a patch size of 256 Γ— 256 pixels and a stride of 128 pixels was then applied, resulting in 683 bi-temporal image pairs. This number is determined by the spatial extent of the region and the patch extraction strategy.
50
+
51
+ The choice of 256Γ—256 resolution was a trade-off between spatial detail and computational efficiency. Larger patches (e.g., 512Γ—512) were avoided because they require significantly more GPU memory, reduce training speed, and tend to include a higher proportion of unchanged areas. This can lead to class imbalance, increasing the number of negative samples and causing the model to favor β€œno-change” predictions, ultimately lowering recall rate. In contrast, 256-sized patches ensure sufficient contextual information while maintaining a more balanced representation of change and no-change areas, thereby supporting more effective learning.
52
+
53
+ ---
54
+
55
+ ## Dataset Structure and File Organization
56
+
57
+ The dataset is organized into paired folders for bitemporal image patches and corresponding change labels:
58
+ ```
59
+ -Glacier-Dataset/
60
+ β”œβ”€β”€ A/ (earlier timepoint)
61
+ β”‚ β”œβ”€β”€ 1_1_1.png
62
+ β”‚ β”œβ”€β”€ 1_1_2.png
63
+ β”‚ └── ...
64
+ β”œβ”€β”€ B/ (later timepoint)
65
+ β”‚ β”œβ”€β”€ 1_1_1.png
66
+ β”‚ β”œβ”€β”€ 1_1_2.png
67
+ β”‚ └── ...
68
+ β”œβ”€β”€ labels/
69
+ β”‚ β”œβ”€β”€ 1_1_1.png
70
+ β”‚ β”œβ”€β”€ 1_1_2.png
71
+ β”‚ └── ...
72
+ β”œβ”€β”€ samples/
73
+ β”‚ β”œβ”€β”€ greenland_A.png
74
+ β”‚ β”œβ”€β”€ greenland_B.png
75
+ β”‚ └── ...
76
+ └── README.md
77
+ ```
78
+ - Each sample consists of a pair of images (`images_A` and `images_B`) representing two different timepoints.
79
+ - The corresponding binary change map is stored in the `labels` directory.
80
+ - Image and label files are matched by filename: e.g., `1_1_1.png` in `A/`, `B/`, and `labels/` belong to the same sample.
81
+ - The samples folder contains thumbnail versions of the complete georeferenced remote sensing images used for patch sampling. These are downscaled bitemporal Landsat-8 images covering the glacier regions.
82
+
83
+ ---
84
+
85
+ ## Labels
86
+
87
+ The label files are binary masks:
88
+
89
+ - Pixel value `0`: no change
90
+ - Pixel value `1`: glacier change
91
+
92
+ ---
93
+
94
+ ## Sample Images
95
+
96
+ **Southeastern Coast of Greenland**
97
+
98
+ ![Greenland Sample A](samples/greenland_A.png)
99
+ *Sample from 2015*
100
+
101
+ ![Greenland Sample B](samples/greenland_B.png)
102
+ *Sample from 2023*
103
+
104
+ **Svalbard Archipelago**
105
+
106
+ ![Svalbard Sample A](samples/svalbard_A.png)
107
+ *Sample from 2015*
108
+
109
+ ![Svalbard Sample B](samples/svalbard_B.png)
110
+ *Sample from 2020*
111
+
112
+ ---
113
+
114
+ ## Potential Applications
115
+
116
+ - Glacier dynamics monitoring
117
+ - Polar environmental change detection
118
+ - Multispectral image analysis
119
+ - Time-series remote sensing research
120
+ - Climate-related environmental studies
121
+
122
+ ---
123
+
124
+ ## Dataset Access
125
+
126
+ The complete dataset is publicly available on GitHub:
127
+ πŸ‘‰ [https://github.com/cuibinge/Glacier-Dataset](https://github.com/cuibinge/Glacier-Dataset)
128
+
129
+ ---
130
+
131
+ ## Citation
132
+
133
+ If you use this dataset in your research, please cite:
134
+
135
+ **VPGCD-Net: A Visual Prompt Driven Network for Glacier Change Detection in Remote Sensing Imagery**. Zhishen Shi, Bing'e Cui, et al. *IEEE Geoscience and Remote Sensing Letters*, 2025.
136
+
137
+ ---
138
+
139
+ ## Contact
140
+
141
+ For dataset-related inquiries, please contact:
142
+ πŸ“§ [email protected]