TNO Intern

Commit eab1387b authored by Arjo Segers's avatar Arjo Segers
Browse files

Merge branch 'config-CrIS' into 'master'

Updated template settings for CrIS/NH3 data.

See merge request !38
parents 44a6f587 6d74c5a0
Loading
Loading
Loading
Loading
Loading
+987 −0

File added.

Preview size limit exceeded, changes collapsed.

+133 −0
Original line number Diff line number Diff line
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!
!!! CSO common configuration
!!!
!!! Base settings that are used by multiple tasks:
!!! - time range(s)
!!! - target domain(s)
!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


!-----------------------------------------------------------
! id's
!-----------------------------------------------------------

! file format:
my.cso.format         :   1.0

! file format convention:
my.cso.convention     :   CF-1.8


!-----------------------------------------------------------
! domain
!-----------------------------------------------------------

!
! Used for:
! - orbit selection durning download
! - pixel selection
! - map plots
!

!! region name:
!my.region                       :  CAMS
!! CAMS regional ensemble domain:
!my.region.west                  :  -30.0
!my.region.east                  :   45.0
!my.region.south                 :   30.0
!my.region.north                 :   76.0
!! size of map figures for this region:
!my.region.figsize               :   (6,5)

! region name:
my.region                       :  xEMEP
! CAMS regional ensemble domain:
my.region.west                  :  -30.0
my.region.east                  :   90.0
my.region.south                 :   30.0
my.region.north                 :   82.0
! size of map figures for this region:
my.region.figsize               :   (8,6)


!! region name:
!my.region                       :  globe
!! global domain:
!my.region.west                  : -180.0
!my.region.east                  :  180.0
!my.region.south                 :  -90.0
!my.region.north                 :   90.0
!! size of map figures for this region:
!my.region.figsize               :   (8,6)


!----------------------------------------------------------
! timerange
!----------------------------------------------------------

! inquire full timerange:
my.inquire.timerange.start      :  2011-10-01 00:00
my.inquire.timerange.end        :  2026-12-31 23:59

! process single year:
my.timerange.start              :  2024-01-01 00:00
my.timerange.end                :  2024-12-31 23:59


!----------------------------------------------------------
! user specific settings:
!----------------------------------------------------------

!..............................
#if "${USER}" == "you"
!..............................

! Attributes written to output files.
my.attr.author                  :  Your Name
my.attr.institution             :  CSO
my.attr.email                   :  Your.Name@cso.org

! base location for work directories:
my.work                         :  /Scratch/${USER}/CSO-Test-CrIS

!..............................
#else
#error unsupported USER "${USER}"
#endif
!..............................


!----------------------------------------------------------
! job step defaults
!----------------------------------------------------------

! run jobs in foreground:
*.script.class                      :  utopya.UtopyaJobScriptForeground

! dummy value, will be defined when running in virtrual environment:
VIRTUAL_ENV                         :
! running in virutual envionment?
#if "${VIRTUAL_ENV}" > ""
! interpretor from virtual enviornment, the system path is set automatically:
*.shell                             :  ${VIRTUAL_ENV}/bin/python3
#else
! search path for python modules:
*.pypath                            :  ${CSO_PREFIX}/src:${CSO_PREFIX}/src/utopya:${CSO_PREFIX}/src/cso
#endif

! work directory for jobs; 
*.workdir                           :  ${my.work}/__NAME2PATH__

! for new job files, use jobtree settings from this file:
*.rcfile                            :  ${__filename__}



!----------------------------------------------------------
! end
!----------------------------------------------------------


+124 −1472

File changed.

Preview size limit exceeded, changes collapsed.