Ignore:
Timestamp:
Nov 15, 2018 9:03:15 PM (5 years ago)
Author:
gronemeier
Message:

change date format in output files; add global attributes; change fill_value; move definition of UTM and lon/lat into subroutine; change attributes of time variable; read optional attributes from input netcdf file; update test cases

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/check_parameters.f90

    r3525 r3529  
    2525! -----------------
    2626! $Id$
     27! Save time zone in variable run_zone, change date format into YYYY-MM-DD
     28!
     29! 3525 2018-11-14 16:06:14Z kanani
    2730! Changes related to clean-up of biometeorology (dom_dwd_user)
    2831!
     
    10891092!-- Generate the file header which is used as a header for most of PALM's
    10901093!-- output files
    1091     CALL DATE_AND_TIME( date, time )
    1092     run_date = date(7:8)//'-'//date(5:6)//'-'//date(3:4)
     1094    CALL DATE_AND_TIME( date, time, run_zone )
     1095    run_date = date(1:4)//'-'//date(5:6)//'-'//date(7:8)
    10931096    run_time = time(1:2)//':'//time(3:4)//':'//time(5:6)
    10941097    IF ( coupling_mode == 'uncoupled' )  THEN
Note: See TracChangeset for help on using the changeset viewer.