TNO Intern

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

Synchronized with master branch.

parent 6dfd3be3
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -600,3 +600,18 @@ Convert multiple files if orbit is stored in patches. Check on duplicate output
  src/cso/cso_file.py
  src/cso/cso_s5p.py
  config/tutorial/tutorial.rc


v2.18
-----

Updated observation operator to use time selections of pixels in data files.
  oper/

Created seperatue module `cso_listing` for the listing objects.
  src/cso/cso*.py
  doc/source/

Use listing files created by observation operator.
  src/cso/cso_catalogue.py
+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:
+3 −0
Original line number Diff line number Diff line
@@ -121,6 +121,9 @@ or creates it if not present yet:
      # install local codes:
      pip install --editable .

      # optionally also install dependencies to generate documenation locally:
      pip install --editable .[docs]

    fi


+0 −4
Original line number Diff line number Diff line
@@ -33,10 +33,6 @@
cso.s5p.no2.inquire-table-dataspace.timerange.start        :  ${my.full-timerange.start}
cso.s5p.no2.inquire-table-dataspace.timerange.end          :  ${my.full-timerange.end}

!! TESTING: target time range only:
!cso.s5p.no2.inquire-table-dataspace.timerange.start        :  ${my.timerange.start}
!cso.s5p.no2.inquire-table-dataspace.timerange.end          :  ${my.timerange.end}

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

+4 −0
Original line number Diff line number Diff line
@@ -6,6 +6,10 @@
!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

! dummy keys, actual values defined in environment by "cso" script:
CSO_RCFILE            :  
CSO_RCDIR             :  


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