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/UKMO/dev_r5518_25hr_mean_assim_bkg/NEMOGCM/NEMO/OPA_SRC/OBS – NEMO

source: branches/UKMO/dev_r5518_25hr_mean_assim_bkg/NEMOGCM/NEMO/OPA_SRC/OBS/julian.F90 @ 6757

Last change on this file since 6757 was 6757, checked in by kingr, 8 years ago

Cleared SVN keywords.

File size: 1011 bytes
Line 
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 
15   !USE in_out_manager           ! I/O manager
16   USE lib_mpp,  ONLY : &
17      & ctl_warn, ctl_stop
18
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 
26   !! $Id$
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.