C+ C NAME: C BRead_WSO_NOAA C PURPOSE: C Read file with synoptic map data for the magnetic field at a C source surface into a 2D array C This routine applies to the WSO files we download from NOAA (courtesy C of Nick Arge). C CALLING SEQUENCE: integer function BRead_WSO_NOAA(cFile, nMax, ZFile,nLng,nLat) C INPUTS: C cFile*(*) character fully-qualified name of source surface file C nMax integer Max. # allowed grid points in synoptic map C OUTPUTS: C BRead_WSO_NOAA integer return status (0=Failure,1=Success) C C ZFile(nLng,nLat) real 2D synoptic map with radial magnetic field C nLng integer # grid longitudes C nLat integer # grid latitudes C CALLS: C BRead_WSO C SEE ALSO: C BListAll, MapReadSingle, MapReadTimes, BList_WSO_NOAA, BRead_WSO C PROCEDURE: C One-line interface to BRead_WSO. C The NOAA WSO files have exactly the same structure as the regular WSO files, C so we can use the same reader. C MODIFICATION HISTORY: C JUL-2002, Paul Hick (UCSD/CASS; pphick@ucsd.edu) C- character cFile*(*) integer nMax real ZFile(*) integer nLng integer nLat integer BRead_WSO BRead_WSO_NOAA = BRead_WSO(cFile, nMax, ZFile, nLng, nLat) return end