obs_sst_io.F90 1.1 KB

123456789101112131415161718192021222324252627282930
  1. MODULE obs_sst_io
  2. !!======================================================================
  3. !! *** MODULE obs_sst_io ***
  4. !! Observation operators : I/O for GHRSST files
  5. !!======================================================================
  6. !! History :
  7. !! ! 09-01 (K. Mogensen) Initial version
  8. !!----------------------------------------------------------------------
  9. !!----------------------------------------------------------------------
  10. !! read_sstfile : Read a obfbdata structure from an GHRSST file
  11. !!----------------------------------------------------------------------
  12. USE par_kind
  13. USE obs_utils
  14. USE obs_fbm
  15. USE julian
  16. USE netcdf
  17. IMPLICIT NONE
  18. !!----------------------------------------------------------------------
  19. !! NEMO/OPA 3.3 , NEMO Consortium (2010)
  20. !! $Id: obs_sst_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 "obssst_io.h90"
  25. END MODULE obs_sst_io