Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a first version #1

Merged
merged 37 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fc67497
add a first version
cosunae Mar 28, 2024
621ff17
remove constants
cosunae Apr 2, 2024
971c709
installation
cosunae Apr 2, 2024
2f9ac59
add conda env
cosunae Apr 2, 2024
1015b7c
add a preinstall script
cosunae Apr 2, 2024
c8ae453
add a preinstall script
cosunae Apr 2, 2024
4d95933
no test
cosunae Apr 2, 2024
2cda033
add black
cosunae Apr 3, 2024
632208e
black formatting
cosunae Apr 3, 2024
6d219d7
add doc
cosunae Apr 3, 2024
01184ce
add doc
cosunae Apr 3, 2024
2e5d74c
add doc
cosunae Apr 3, 2024
dc19f57
single request API of idpi
cosunae Apr 3, 2024
6b9222f
fix doc
cosunae Apr 3, 2024
cb4cd53
add submit script
cosunae Apr 3, 2024
9d3501e
add regex
cosunae Apr 3, 2024
9c92d8f
add regex
cosunae Apr 3, 2024
d5ed9f0
add regex
cosunae Apr 3, 2024
2e62937
remove lock
cosunae Apr 3, 2024
1040262
https instead of git
cosunae Apr 3, 2024
7858fa2
Suggestions (#3)
twicki Apr 4, 2024
da69d80
implement comments for review
cosunae Apr 13, 2024
0a711c3
fix datetime encoding issues for chunking
cosunae Apr 13, 2024
17012d4
fix destaggering in z
cosunae Apr 13, 2024
dae9d01
remove time from constant vars
cosunae Apr 13, 2024
64fe12b
check that all dims fit the hypercube before creating a dataset
cosunae Apr 16, 2024
55922df
add additional variables as requested in the PR
cosunae Apr 16, 2024
1963b16
adding a test and W
cosunae Apr 16, 2024
6e3d6b0
add test
cosunae Apr 16, 2024
47a781d
fix the short wave radiation variable
cosunae Apr 16, 2024
211409f
HFL-> FI and add DURSUN and VMAX_10M, UMAX_10M
cosunae Apr 17, 2024
847bac4
make P0FL invariant in time
cosunae Apr 17, 2024
8178c57
adding W_SNOW
cosunae Apr 17, 2024
b7a1c01
adding TD_2M
cosunae Apr 17, 2024
312368d
hack the fact that step is sometimes wrong
cosunae Apr 18, 2024
a3bd0b2
fix time coordinates for writing into zarr
cosunae Apr 21, 2024
bf0b612
add more precise error
cosunae Apr 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,15 @@ pipeline {
}
}
}

stage('Regex') {
steps {
sh '''
sed -i "s/service.meteoswiss.ch/hub.meteoswiss.ch/g" pyproject.toml
'''
}
}
stage('Test') {
parallel {
stage('3.9') {
steps {
script {
runWithPodman.poetryPytest '3.9', false, false
}
}
}
stage('3.10') {
steps {
script {
Expand Down Expand Up @@ -194,5 +193,9 @@ pipeline {
echo 'Build succeeded'
updateGitlabCommitStatus name: 'Build', state: 'success'
}
always{
echo 'Cleaning up workspace'
deleteDir()
}
}
}
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Setup virtual environment
.. code-block:: console

$ cd cosmo-archive-retrieve
$ conda env create -f environment.yml
$ conda activate cosmo-archive-retrieve
$ poetry run pre-install
$ poetry install


Expand Down
Loading