obs_sla_io.F90 1.1 KB

123456789101112131415161718192021222324252627282930
  1. MODULE obs_sla_io
  2. !!======================================================================
  3. !! *** MODULE obs_sla_io ***
  4. !! Observation operators : I/O for AVISO SLA files
  5. !!======================================================================
  6. !! History :
  7. !! ! 09-01 (K. Mogensen) Initial version
  8. !!----------------------------------------------------------------------
  9. !!----------------------------------------------------------------------
  10. !! read_enactfile : Read a obfbdata structure from an AVISO SLA file
  11. !!----------------------------------------------------------------------
  12. USE par_kind
  13. USE obs_utils
  14. USE obs_fbm
  15. use obs_sla_types
  16. USE netcdf
  17. IMPLICIT NONE
  18. !!----------------------------------------------------------------------
  19. !! NEMO/OPA 3.3 , NEMO Consortium (2010)
  20. !! $Id: obs_sla_io.F90 2287 2010-10-18 07:53:52Z smasson $
  21. !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
  22. !!----------------------------------------------------------------------
  23. CONTAINS
  24. #include "obssla_io.h90"
  25. END MODULE obs_sla_io