gera-richarte commited on
Commit
a38adb6
1 Parent(s): 67fe5dd

bump: version 0.2.0 → 0.3.0

Browse files
Files changed (3) hide show
  1. CHANGELOG.md +6 -0
  2. app.py +8 -2
  3. cz.yaml +1 -1
CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
 
 
 
 
 
 
1
  ## 0.2.0 (2024-10-15)
2
 
3
  ### Feat
 
1
+ ## 0.3.0 (2024-10-15)
2
+
3
+ ### Feat
4
+
5
+ - **earthview**: Sentinel_2 support
6
+
7
  ## 0.2.0 (2024-10-15)
8
 
9
  ### Feat
app.py CHANGED
@@ -66,9 +66,15 @@ def get_images(batch_size, only_rgb, state):
66
  images.extend(item["rgb"])
67
  if not only_rgb:
68
  images.extend(item["1m"])
69
- if subset == "sentinel_1":
70
  images.extend(item["10m"])
71
- if subset == "neon":
 
 
 
 
 
 
72
  images.extend(item["rgb"])
73
  if not only_rgb:
74
  images.extend(item["chm"])
 
66
  images.extend(item["rgb"])
67
  if not only_rgb:
68
  images.extend(item["1m"])
69
+ elif subset == "sentinel_1":
70
  images.extend(item["10m"])
71
+ elif subset == "sentinel_2":
72
+ images.extend(item["rgb"])
73
+ if not only_rgb:
74
+ images.extend(item["10m"])
75
+ images.extend(item["20m"])
76
+ images.extend(item["scl"])
77
+ elif subset == "neon":
78
  images.extend(item["rgb"])
79
  if not only_rgb:
80
  images.extend(item["chm"])
cz.yaml CHANGED
@@ -3,5 +3,5 @@ commitizen:
3
  name: cz_conventional_commits
4
  tag_format: $version
5
  update_changelog_on_bump: true
6
- version: 0.2.0
7
  version_scheme: semver
 
3
  name: cz_conventional_commits
4
  tag_format: $version
5
  update_changelog_on_bump: true
6
+ version: 0.3.0
7
  version_scheme: semver