Skip to content

Handling fill_value in plot_data_plane #2715

Closed Locked Answered by JohnHalleyGotway
DanielAdriaansen asked this question in Configuration
Discussion options

You must be logged in to vote

Hi @DanielAdriaansen I see you have a question about how bad data values are plotted by the plot_data_plane tool in MET.

Let me provide some details about plot_data_plane to help clarify.

The plot_data_plane usage statement includes a [-color_table color_table_name] option. It is optional, not required, but can be used to override the default color table, met_default.ctable, that's used.

Here's a selection from that color table:

-9999       { 150, 150, 150 } // -9999 indicates bad data
0.000 0.000 { 255, 255, 255 }
0.000 0.025 { 175, 175, 175 }
0.025 0.050 { 161, 161, 161 }
...
0.950 0.975 { 209,   0, 111 }
0.975 1.000 { 234,   0, 191 }

Note the following:

  • The first line defines the RGB…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@DanielAdriaansen
Comment options

DanielAdriaansen Oct 7, 2024
Collaborator Author

Answer selected by DanielAdriaansen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment