glam-processing 0.3.0__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: glam-processing
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary:
5
5
  Author: John Keniston
6
6
  Author-email: jfkeniston@gmail.com
@@ -8,6 +8,7 @@ Requires-Python: >=3.11,<4.0
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.11
10
10
  Classifier: Programming Language :: Python :: 3.12
11
+ Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
11
12
  Requires-Dist: cryptography (>=43.0.0,<44.0.0)
12
13
  Requires-Dist: earthaccess (>=0.10.0,<0.11.0)
13
14
  Requires-Dist: h5py (>=3.11.0,<4.0.0)
@@ -186,7 +186,7 @@ def apply_mask(in_array, source_dataset, nodata):
186
186
  # product-conditional behavior
187
187
 
188
188
  # MODIS pre-generated VI masking
189
- if suffix in ["MOD13Q1", "MOD13Q4", "MOD13Q4N"]:
189
+ if suffix in ["MOD13Q1", "MOD13Q4", "MOD13Q4N", "MYD13Q1"]:
190
190
  if suffix[-1] == "1":
191
191
  pr_arr, pr_nodata = get_sds(
192
192
  source_dataset, "250m 16 days pixel reliability"
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "glam-processing"
3
- version = "0.3.0"
3
+ version = "0.3.2"
4
4
  description = ""
5
5
  authors = ["John Keniston <jfkeniston@gmail.com>"]
6
6
  readme = "README.md"
@@ -14,6 +14,7 @@ cryptography = "^43.0.0"
14
14
  h5py = "^3.11.0"
15
15
  rasterio = "^1.3.11"
16
16
  rioxarray = "^0.17.0"
17
+ beautifulsoup4 = "^4.12.3"
17
18
 
18
19
  [tool.poetry.scripts]
19
20
  glam = "glam_processing.cli:cli"