Skip to content

Commit

Permalink
Merge pull request #65 from nsidc/update-for-g10016
Browse files Browse the repository at this point in the history
Update for g10016
  • Loading branch information
trey-stafford authored Sep 25, 2024
2 parents 5ea24f9 + 82c944c commit d4f91a2
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.5.0

* Updates to support G10016 processing.

# v0.4.0

* Updates to support comparisons with CDR v4 code. The CDR v4 code was also
Expand Down
2 changes: 1 addition & 1 deletion pm_icecon/bt/params/nsidc0001.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def get_nsidc0001_bootstrap_params(
"F11",
"F13",
)
SSMIS_SAT_LIST = ("F17",)
SSMIS_SAT_LIST = ("F17", "F18")
if satellite in SSMI_SAT_LIST:
if hemisphere == "north":
initial_bt_params = NSIDC0001_BASE_PARAMS_NORTH.copy()
Expand Down
12 changes: 12 additions & 0 deletions pm_icecon/nt/params/gradient_thresholds.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
# TODO: These are referenced by platform.lower(), but the keys should be
# valid RSS satellites
CDR_RSS_THRESHOLDS_NORTH = dict(
f18=NasateamGradientRatioThresholds(
{
"3719": 0.050,
"2219": 0.045,
}
),
f17=NasateamGradientRatioThresholds(
{
"3719": 0.050,
Expand Down Expand Up @@ -48,6 +54,12 @@
)

CDR_RSS_THRESHOLDS_SOUTH = dict(
f18=NasateamGradientRatioThresholds(
{
"3719": 0.057,
"2219": 0.045,
}
),
f17=NasateamGradientRatioThresholds(
{
"3719": 0.057,
Expand Down
1 change: 1 addition & 0 deletions pm_icecon/nt/tiepoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ def get_tiepoints(
"18_class": "f18_class",
"18_final": "f18_class",
"F17": "f17_final",
"F18": "f18_class",
"F13": "f13",
"F11": "f11",
"F08": "f08",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pm_icecon"
version = "0.4.0"
version = "0.5.0"
description = "Sea ice concentration estimates from passive microwave data"

[tool.setuptools]
Expand Down Expand Up @@ -45,7 +45,7 @@ max-complexity = 8
inline-quotes = "double"

[tool.bumpversion]
current_version = "0.4.0"
current_version = "0.5.0"
commit = false
tag = false

Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pm_icecon
version: "0.4.0"
version: "0.5.0"

source:
path: ../
Expand Down

0 comments on commit d4f91a2

Please sign in to comment.