123456789101112131415161718192021222324252627282930 |
- MODULE obs_sla_io
- !!======================================================================
- !! *** MODULE obs_sla_io ***
- !! Observation operators : I/O for AVISO SLA files
- !!======================================================================
- !! History :
- !! ! 09-01 (K. Mogensen) Initial version
- !!----------------------------------------------------------------------
- !!----------------------------------------------------------------------
- !! read_enactfile : Read a obfbdata structure from an AVISO SLA file
- !!----------------------------------------------------------------------
- USE par_kind
- USE obs_utils
- USE obs_fbm
- use obs_sla_types
- USE netcdf
- IMPLICIT NONE
- !!----------------------------------------------------------------------
- !! NEMO/OPA 3.3 , NEMO Consortium (2010)
- !! $Id: obs_sla_io.F90 2287 2010-10-18 07:53:52Z smasson $
- !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
- !!----------------------------------------------------------------------
- CONTAINS
- #include "obssla_io.h90"
- END MODULE obs_sla_io
|