New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
julian.F90 in branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/OPA_SRC/OBS – NEMO

source: branches/2014/dev_r4650_UKMO14.12_STAND_ALONE_OBSOPER/NEMOGCM/NEMO/OPA_SRC/OBS/julian.F90 @ 5600

Last change on this file since 5600 was 5600, checked in by andrewryan, 9 years ago

merged in latest version of trunk alongside changes to SAO_SRC to be compatible with latest OBS

  • Property svn:keywords set to Id
File size: 1011 bytes
RevLine 
[2128]1MODULE julian
2   !!======================================================================
3   !!                       ***  MODULE julian   ***
4   !! Ocean          : Julian data utilities
5   !!=====================================================================
6
7   !!----------------------------------------------------------------------
8   !!   jul2greg        : Convert relative time to date
9   !!   greg2jul        : Convert date to relative time
10   !!----------------------------------------------------------------------
11   !! * Modules used
12   USE par_kind, ONLY : &       ! Precision variables
13      & wp, &
14      & dp 
[2715]15   !USE in_out_manager           ! I/O manager
16   USE lib_mpp,  ONLY : &
17      & ctl_warn, ctl_stop
18
[2128]19   IMPLICIT NONE
20
21   !! * Routine accessibility
22   PRIVATE
23   PUBLIC jul2greg,        &  ! Convert relative time to date
24      &   greg2jul            ! Convert date to relative time
25 
[5600]26   !! $Id$
[2128]27CONTAINS
28 
29#include "jul2greg.h90"
30
31#include "greg2jul.h90"
32   
33END MODULE julian
Note: See TracBrowser for help on using the repository browser.