<HTML> <BODY BGCOLOR=#ccccdd LINK=#0000aa VLINK=#0000ff ALINK=#ff0000 ><BASE TARGET="bottom_target"><PRE>
<A NAME='FM_DECODER'><A href='../../html_code/obsproc/fm_decoder.F90.html#FM_DECODER' TARGET='top_target'><IMG SRC="../../gif/bar_red.gif" border=0></A>

 SUBROUTINE  FM_DECODER (fm, platform, synop, ship , metar, &amp; 16
                                       pilot, sound, satem, &amp; 
                                       satob, airep, gpspw, gpszd, &amp;
                                       gpsrf, gpsep, &amp;
                                       ssmt1, ssmt2, ssmi , &amp;
                                       tovs , other, amdar, &amp;
                                       qscat, profl, buoy , bogus, airs, tamdar)
!------------------------------------------------------------------------------!
! Given the WMO code fm, return the observation platform type and increment
! the corresponding counter if present.
!
! Returned platforms are reduced to 13 output classes:
!
!   Name    WMO Codes     WMO Code names
!   synop    12,14       'SYNOP','SYNOP MOBIL'
!   ship     13          'SHIP'
!   metar    15,16       'METAR','SPECI'
!   buoy     18,19       'BUOY'
!   pilot    32,33,34    'PILOT','PILOT SHIP','PILOT MOBIL'
!   sound    35,36,37,38 'TEMP','TEMP SHIP, 'TEMP DROP','TEMP MOBIL'
!   amdar    42          'AMDAR'
!   satem    86          'SATEM'
!   satob    88          'SATOB'
!   airep    96,97       'AIREP'
!   tamdar   101         'TAMDAR'
!   gpspw    111         'GPSPW'
!   gpsztd   114         'GPSZD'
!   gpsref   116         'GPSRF'
!   gpseph   118         'GPSEP'
!   ssmt1    121         'SSMT1'
!   ssmt2    122         'SSMT2'
!   ssmi     125,126     'SSMI'
!   tovs     131         'TOVS' 
!   qscat    281         'Quikscat'
!   profl    132         'Profilers'
!   bogus    135         'BOGUS'
!   airs     133         'AIRSRET'
!   other Any other code 'UNKNOWN'
!------------------------------------------------------------------------------!
!
!  HISTORY: 
!
!         F. VANDENBERGHE, March 2001
!
!         01/13/2003 - Updated for Profiler obs.           S. R. H. Rizvi
!
!         02/04/2003 - Updated for Buoy     obs.           S. R. H. Rizvi
!
!         02/11/2003 - Reviewed and modified for Profiler
!                      and Buoy obs.                       Y.-R. Guo
!
!         05/23/2003 - GPS ZTD code added              L. Cucurull
!         06/30/2006 - Updated for AIRS retrievals     Syed  RH  Rizvi
!         11/09/2006 - Added for GPS Excess Phase      Y.-R. Guo
!-----------------------------------------------------------------------------

    IMPLICIT NONE
    INTEGER,              INTENT (in)    :: fm
    CHARACTER (LEN = 40), INTENT (out)   :: platform
    INTEGER,              INTENT (inout), OPTIONAL :: synop, ship,  metar, &amp;
                                                      pilot, sound, satem, &amp;
                                                      satob, airep, gpspw, &amp;
                                                      gpszd, gpsrf, gpsep, &amp;
                                                      bogus, &amp;
                                                      ssmi,  ssmt1, ssmt2, &amp;
                                                      tovs,  amdar, qscat, &amp;
                                                      profl, buoy, airs, tamdar, other
!------------------------------------------------------------------------------!
       SELECT CASE ( fm )

          !  Report of surface observations from a fixed land station

          CASE (12) ; platform = 'SYNOP'
                      IF (PRESENT (synop)) synop = synop + 1

          !  Report of surface observations from a sea station

          CASE (13) ; platform = 'SHIP'
                      IF (PRESENT (ship)) ship  = ship + 1

          !  Report of surface observations from a mobile land station

          CASE (14) ; platform = 'SYNOP MOBIL'
                      IF (PRESENT (synop)) synop  = synop + 1

          !  Aviation routine weather report (with/without trend forecast)

          CASE (15) ; platform = 'METAR'
                      IF (PRESENT (metar)) metar  = metar + 1

          !  Aviation selected special weather report 
          !  (with/without trend forecast)

          CASE (16) ; platform = 'SPECI'
                      IF (PRESENT (metar)) metar  = metar + 1

          !  Report of buoy observation

          CASE (18,19) ; platform = 'BUOY'
                      IF (PRESENT (buoy)) buoy  = buoy + 1

          !  Report of ground radar weather observation

          CASE (20) ; platform = 'RADOB'
                      IF (PRESENT (other)) other  = other + 1

          !  Radiological data report (monitored on a routine basis and/or 
          !  in case of accident

          CASE (22) ; platform = 'RADREP'
                      IF (PRESENT (other)) other  = other + 1

          !  Upper-wind report from a fixed land station

          CASE (32) ; platform = 'PILOT'
                      IF (PRESENT (pilot)) pilot = pilot + 1

          !  Upper-wind report from a sea station

          CASE (33) ; platform = 'PILOT SHIP'
                      IF (PRESENT (pilot)) pilot = pilot + 1

          !  Upper-wind report from a mobile land station

          CASE (34) ; platform = 'PILOT MOBIL'
                      IF (PRESENT (pilot)) pilot = pilot + 1

          !  Upper-level pressure, temperature, humidity and wind report 
          !  from a fixed land station

          CASE (35) ; platform = 'TEMP'
                      IF (PRESENT (sound)) sound = sound + 1

          !  Upper-level pressure, temperature, humidity and wind report 
          !  from a sea station

          CASE (135) ; platform = 'BOGUS'
                      IF (PRESENT (bogus)) bogus = bogus + 1

          !  Upper-level pressure, temperature, humidity and wind report 
          !  from a bogus station

          CASE (36) ; platform = 'TEMP SHIP'
                      IF (PRESENT (sound)) sound = sound + 1

          !  Upper-level pressure, temperature, humidity and wind report 
          !  from a sonde released by carrier balloons and aircraft

          CASE (37) ; platform = 'TEMP DROP'
                      IF (PRESENT (sound)) sound = sound + 1

          !  Upper-level pressure, temperature, humidity and wind report 
          !  from a mobile land station

          CASE (38) ; platform = 'TEMP MOBIL'
                      IF (PRESENT (sound)) sound = sound + 1

          !  Upper-level temperature, wind and air density from a land 
          !  rocketsonde station

          CASE (39) ; platform = 'ROCOB'
                      IF (PRESENT (other)) other = other + 1

          !  Upper-level temperature, wind and air density from a 
          !  rocketsonde station on a ship

          CASE (40) ; platform = 'ROCOB SHIP'
                      IF (PRESENT (other)) other = other + 1

          !  Upper-air report from an aircraft 
          !  (other than weather reconnaissance aircraft)

          CASE (41) ; platform = 'CODAR'
                      IF (PRESENT (other)) other = other + 1

          !  Aircraft report (aircraft meteorological data relay)

          CASE (42) ; platform = 'AMDAR'
                      IF (PRESENT (amdar)) amdar = amdar + 1

          !  Ice analysis

          CASE (43) ; platform = 'ICEAN'
                      IF (PRESENT (other)) other = other + 1

          !  Analysis in full form

          CASE (45) ; platform = 'IAC'
                      IF (PRESENT (other)) other = other + 1

          !  Analysis in abbreviated form

          CASE (46) ; platform = 'IAC FLEET'
                      IF (PRESENT (other)) other = other + 1

          !  Processed data in form of grid-point values

          CASE (47) ; platform = 'GRID'
                      IF (PRESENT (other)) other = other + 1

          !  Processed data in form of grid-point values (abbreviated code form)

          CASE (49) ; platform = 'GRAF'
                      IF (PRESENT (other)) other = other + 1

          !  Forecast upper wind and temperature for aviation

          CASE (50) ; platform = 'WINTEM'
                      IF (PRESENT (other)) other = other + 1

          !  Aerodrome forecast

          CASE (51) ; platform = 'TAF'
                      IF (PRESENT (other)) other = other + 1

          !  Area forecast for aviation

          CASE (53) ; platform = 'ARFOR'
                      IF (PRESENT (other)) other = other + 1

          !  Route forecast for aviation

          CASE (54) ; platform = 'ROFOR'
                      IF (PRESENT (other)) other = other + 1

          !  Radiological trajectory dose forecast 
          !  (defined time of arrival and location)

          CASE (57) ; platform = 'RADOF'
                      IF (PRESENT (other)) other = other + 1

          !  Forecast for shipping

          CASE (61) ; platform = 'MAFOR'
                      IF (PRESENT (other)) other = other + 1

          !  Report of marine surface observations along a ship's track

          CASE (62) ; platform = 'TRACKOB'
                      IF (PRESENT (other)) other = other + 1

          !  Report of bathymetrical observation

          CASE (63) ; platform = 'BATHY'
                      IF (PRESENT (other)) other = other + 1

          !  Temperature salinity and current report from a sea station

          CASE (64) ; platform = 'TRESAC'
                      IF (PRESENT (other)) other = other + 1

          !  Report of spectral wave information from sea station or from
          !  a remote platform (airecraft or satellite)

          CASE (65) ; platform = 'WAVEOB'
                      IF (PRESENT (other)) other = other + 1

          !  Report of hydrological observations from a hydrological station

          CASE (66) ; platform = 'HYDRA'
                      IF (PRESENT (other)) other = other + 1

          !  Hydrological forecast

          CASE (67) ; platform = 'HYFOR'
                      IF (PRESENT (other)) other = other + 1

          !  Report of monthly values from a land station

          CASE (71) ; platform = 'CLIMAT'
                      IF (PRESENT (other)) other = other + 1

          !  Report of monthly means and total from an ocean weather station

          CASE (72) ; platform = 'CLIMAT SHIP'
                      IF (PRESENT (other)) other = other + 1

          !  Report of monthly means for an oceanic area

          CASE (73) ; platform = 'NACLI CLINP SPLCI CLISA INCLI'
                      IF (PRESENT (other)) other = other + 1

          !  Report of monthly aerological means from a land station

          CASE (75) ; platform = 'CLIMAT TEMP'
                      IF (PRESENT (other)) other = other + 1

          !  Report of monthly aerological means from an ocean weather station

          CASE (76) ; platform = 'CLIMAT TEMP SHIP'
                      IF (PRESENT (other)) other = other + 1

          !  Synoptic report of bearings of sources of atmospherics

          CASE (81) ; platform = 'SFAZI'
                      IF (PRESENT (other)) other = other + 1

          !  Synoptic report of the geographical location of sources of 
          !  atmopsherics

          CASE (82) ; platform = 'SFLOC'
                      IF (PRESENT (other)) other = other + 1

          !  Detailed report of the distribution of sources of atmospherics
          !  by bearings for any period up to including 24 hours

          CASE (83) ; platform = 'SFAZU'
                      IF (PRESENT (other)) other = other + 1

          !  Report of synoptic interpretation of cloud data obtained by a
          !  meteorlogical satellite

          CASE (85) ; platform = 'SAREP'
                      IF (PRESENT (other)) other = other + 1

          !  Report of satellite remote upper-air soundings of 
          !  pressure, temperature and humidity

          CASE (86) ; platform = 'SATEM'
                      IF (PRESENT (satem)) satem = satem + 1

          !  Report of satellite clear radiance observations

          CASE (87) ; platform = 'SARAD'
                      IF (PRESENT (other)) other = other + 1

          !  Report of satellite remote upper-air soundings of 
          !  pressure, temperature and humidity

          CASE (88) ; platform = 'SATOB'
                      IF (PRESENT (satob)) satob = satob + 1

          !  Airep reports (not a WMO report)

          CASE (96:97) ; platform = 'AIREP'
                         IF (PRESENT (airep)) airep = airep + 1

          ! tamdar reports ( not a WMO report)

          CASE (101) ; platform = 'TAMDAR'
                         IF (PRESENT (tamdar)) tamdar = tamdar + 1 

          !  GPS Precipitable Water Vapor (not a WMO report)

          CASE (111) ; platform = 'GPSPW'
                      IF (PRESENT (gpspw)) gpspw = gpspw + 1

          !  GPS Zenith Total Delay (not a WMO report)

          CASE (114) ; platform = 'GPSZD'
                      IF (PRESENT (gpszd)) gpszd = gpszd + 1

          !  GPS Refractivity (not a WMO report)

          CASE (116) ; platform = 'GPSRF'
                      IF (PRESENT (gpsrf)) gpsrf = gpsrf + 1

          !  GPS Excess Phase (not a WMO report)
 
          CASE (118) ; platform = 'GPSEP'
                      IF (PRESENT (gpsep)) gpsep = gpsep + 1

          !  DMSP SSM/T-1 (not a WMO report)

          CASE (121) ; platform = 'SSMT1'
                      IF (PRESENT (ssmt1)) ssmt1 = ssmt1 + 1

          !  DMSP SSM/T-2 (not a WMO report)

          CASE (122) ; platform = 'SSMT2'
                      IF (PRESENT (ssmt2)) ssmt2 = ssmt2 + 1

          !  DMSP SSMI (not a WMO report)

          CASE (125,126) ; platform = 'SSMI'
                      IF (PRESENT (ssmi)) ssmi = ssmi + 1

          !  NOAA TOVS (not a WMO report)

          CASE (131) ; platform = 'TOVS'
                      IF (PRESENT (tovs)) tovs = tovs + 1


          CASE (132) ; platform = 'PROFL'
                      IF (PRESENT (profl)) profl = profl + 1 

          CASE (133) ; platform = 'AIRSRET'
                      IF (PRESENT (airs)) airs = airs + 1

          !  Quikscat (not a WMO report)

          CASE (281) ; platform = 'QSCAT'
                      IF (PRESENT (qscat)) qscat = qscat + 1

          !  Others

          CASE DEFAULT;
                       platform = 'UNKNOWN'
                       IF (PRESENT (other)) other = other + 1

       END SELECT


       !  Reduce the platform name to one of the 15 classes

       SELECT CASE (TRIM (platform))

       CASE ('SYNOP','SYNOP MOBIL');                       platform = "SYNOP";
       CASE ('SHIP');                                      platform = "SHIP" ;
       CASE ('BUOY');                                      platform = "BUOY" ;
       CASE ('BOGUS');                                     platform = "BOGUS";
       CASE ('METAR','SPECI');                             platform = "METAR";
       CASE ('PILOT','PILOT SHIP','PILOT MOBIL');          platform = "PILOT";
       CASE ('TEMP','TEMP SHIP','TEMP DROP','TEMP MOBIL'); platform = "SOUND";
       CASE ('SATEM');                                     platform = "SATEM";
       CASE ('SATOB');                                     platform = "SATOB";
       CASE ('AIREP');                                     platform = "AIREP";
       CASE ('TAMDAR');                                    platform = "TAMDAR";
       CASE ('GPSPW');                                     platform = "GPSPW";
       CASE ('GPSZD');                                     platform = "GPSZD";
       CASE ('GPSRF');                                     platform = "GPSRF";
       CASE ('GPSEP');                                     platform = "GPSEP";
       CASE ('SSMT1');                                     platform = "SSMT1";
       CASE ('SSMT2');                                     platform = "SSMT2";
       CASE ('TOVS');                                      platform = "TOVS" ;
       CASE ('SSMI');                                      platform = "SSMI" ;
       CASE ('Qscat');                                     platform = "QSCAT";
       CASE ('PROFL');                                     platform = "PROFL";
       CASE ('AIRSRET');                                   platform = "AIRSRET";
       CASE ('UNKNOWN');                                   platform = "UNKONWN";

       END SELECT
     
END SUBROUTINE fm_decoder