Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
clavrx-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CLAVR-x
clavrx-dev
Commits
8a766e63
Commit
8a766e63
authored
1 year ago
by
Coda Phillips
Browse files
Options
Downloads
Patches
Plain Diff
Revert "added uncertain phase median filter"
This reverts commit
9fb21829
.
parent
f8d50c4a
No related branches found
Branches containing commit
Tags
vgac-fusion-v6
No related merge requests found
Pipeline
#47109
passed
1 year ago
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cloud_mask/ECM2/nbm_cloud_mask_clavrx_bridge_module.f90
+7
-11
7 additions, 11 deletions
src/cloud_mask/ECM2/nbm_cloud_mask_clavrx_bridge_module.f90
with
7 additions
and
11 deletions
src/cloud_mask/ECM2/nbm_cloud_mask_clavrx_bridge_module.f90
+
7
−
11
View file @
8a766e63
...
...
@@ -117,7 +117,6 @@ module ECM2_CLOUD_MASK_CLAVRX_BRIDGE
private
::
BETA_11_12_OVERLAP_TEST
private
::
BETA_11_133_OVERLAP_TEST
private
::
WATER_EDGE_FILTER
private
::
UNCERTAIN_PHASE_FILTER
private
::
MODIS_AQUA_SBAF
private
::
ABI_GOES16_SBAF
private
::
SBAF_QUAD
...
...
@@ -446,21 +445,18 @@ contains
endif
!-- this logic could extend supercooled to water erroneously
if
((
Cld_Phase
(
i
,
j
)
==
sym
%
SUPERCOOLED_PHASE
)
.and.
(
Tc_Opaque_Cloud
(
i
,
j
)
>=
273.0
))
then
Cld_Phase
(
i
,
j
)
=
sym
%
WATER_PHASE
endif
endif
end
do
elem_loop_lrc
end
do
line_loop_lrc
!--- apply median filter to pixels with uncertain phase
call
UNCERTAIN_PHASE_FILTER
(
Cld_Phase
,
Cld_Phase_Uncertainty
,
5
)
!--- account for supercooled and water phase consistency
where
((
Cld_Phase
==
sym
%
SUPERCOOLED_PHASE
)
.and.
(
Tc_Opaque_Cloud
.GEfp.
273.0
))
Cld_Phase
=
sym
%
WATER_PHASE
end
where
where
((
Cld_Phase
==
sym
%
WATER_PHASE
)
.and.
(
Tc_Opaque_Cloud
<
273.0
))
Cld_Phase
=
sym
%
SUPERCOOLED_PHASE
end
where
!--- try to remove water edges around cirrus that impacts AMVs
call
WATER_EDGE_FILTER
(
Cld_Phase
,
2
)
!--- WAITPOINT cloud mask done
call
waitpoint
(
2
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment