On May 12, 11:03 am, Spon <christoph.b...@[EMAIL PROTECTED]
> wrote:
> Output = { feature_type:"", $
> feature_type_qa:"", $
> ice_water_phase:"", $
> ice_water_phase_qa:"", $
> feature_subtype:"", $
> ; etc. , $
> }
> case feature_type of
> 0 : Output.FeatureType = 'invalid (bad or missing data)'
> 1 : Output.FeatureType = 'clear air'
> 2 : begin
> Output.FeatureType = 'cloud'
> case feature_subtype of
> 0 : Output.FeatureSubType = 'low overcast, transparent'
> 1 : Output.FeatureSubType = 'low overcast, opaque'
Obviously, your variable names have to match up (including structure
field names), which they don't in my example, sorry.
> 0 : Output.FeatureType = 'invalid (bad or missing data)'
> 1 : Output.FeatureSubType = 'low overcast, opaque'
and so on
should be
> 0 : Output.Feature_Type = 'invalid (bad or missing data)'
> 1 : Output.Feature_SubType = 'low overcast, opaque'
to make my example work.


|