Opened 6 years ago

Closed 3 years ago

#591 closed task (fixed)

Changes to distinguish Metop from EUM and UCAR [2 h]

Reported by: Ian Culverwell Owned by: Ian Culverwell
Priority: normal Milestone: ROPP9.1 carry over
Component: ropp_pp Version: 11.0
Keywords: Cc:

Description

Change history (1)

comment:1 by Ian Culverwell, 3 years ago

Resolution: fixed
Status: newclosed
Version: 9.011.0

Basically, Hans wants data with leo_id = 'MT??', which is supposed to identify GRAS data generated by UCAR, to have the default (non-)processing, unlike data with leo_id = 'ME??', which is supposed to identify GRAS data generated by EUM or DMI, which undergoes some mission-specific pre-processing and open loop processing. Unfortunately, it's been some time since GRAS data from UCAR had a leo_id of MT??, because the atmPhs and atmPrf reading routines in ROPP both say

  CALL ncdf_getatt('fileStamp', readstr)

  data%leo_id = readstr(1:4)

  IF ...

  ELSE IF ( data%leo_id(1:3) == 'MTP' ) THEN
    data%leo_id(1:3) = 'MET'

  ENDIF

So we need a more sopisticated decision tree, involving the processing centre as well as the leo_id.

Something like this has been in ROPP since v9.1, in fact.

Closing ticket, as ROPP has moved on since the start point of this ticket. Later tickets #594 and #596 address complementary aspects of this problem, and would make better starting points.

Note: See TracTickets for help on using tickets.