Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for g10016 #65

Merged
merged 6 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'll use the F18 CLASS NT tiepoints for G10016.

"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
Loading