TNO Intern

Commit 978f30e0 authored by Arjo Segers's avatar Arjo Segers
Browse files

Support for CrIS/NH3 data.

parent 288ddd12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ clean: clean-pyc clean-osx clean-docu
# remove temporary python objects
clean-pyc:
	rm -f `find . -name '*.pyc'`
	rm -f -r ./py/__pycache__
	rm -f -r `find . -name '__pycache__'`

# remove temporary Mac files
clean-osx:

config/CrIS/cso-cris-nh3.rc

deleted100644 → 0
+0 −1134

File deleted.

Preview size limit exceeded, changes collapsed.

config/CrIS/cso-user-settings.rc

deleted100644 → 0
+0 −134
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

! 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
!----------------------------------------------------------


+1472 −125

File changed.

Preview size limit exceeded, changes collapsed.

+6 −6
Original line number Diff line number Diff line
@@ -299,12 +299,12 @@ VIRTUAL_ENV :
! Obtain names of all available S5p files.
! Stored as csv with processing type, processor version, filenames, etc.

!! full time range:
!cso.tutorial.inquire-table-dataspace.timerange.start        :  2018-04-30 00:00:00
!cso.tutorial.inquire-table-dataspace.timerange.end          :  2025-01-01 00:00:00
! testing ...
cso.tutorial.inquire-table-dataspace.timerange.start        :  2018-06-01 00:00:00
cso.tutorial.inquire-table-dataspace.timerange.end          :  2018-07-01 00:00:00
! full time range:
cso.tutorial.inquire-table-dataspace.timerange.start        :  2018-04-30 00:00:00
cso.tutorial.inquire-table-dataspace.timerange.end          :  2025-01-01 00:00:00
!! ... testing ...
!cso.tutorial.inquire-table-dataspace.timerange.start        :  2018-06-01 00:00:00
!cso.tutorial.inquire-table-dataspace.timerange.end          :  2018-07-01 00:00:00

! API url:
cso.tutorial.inquire-table-dataspace.url                    :  https://stac.dataspace.copernicus.eu/v1
Loading