Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Grid PSILARTEMP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VIPS
Models
GRID
Grid PSILARTEMP
Merge requests
!1
Include year in .env, update references in script
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Include year in .env, update references in script
feature/update-2024
into
main
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Lene Wasskog
requested to merge
feature/update-2024
into
main
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
48449958
1 commit,
1 year ago
2 files
+
4
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
PSILARTEMP.py
+
2
−
1
Options
@@ -31,6 +31,7 @@ load_dotenv()
config
=
configparser
.
ConfigParser
()
config
.
read
(
"
PSILARTEMP.cfg
"
)
year
=
os
.
getenv
(
"
YEAR
"
)
weatherdata_path
=
os
.
getenv
(
"
WEATHER_DATA_DIR
"
)
tmp_path
=
"
tmp/
"
out_path
=
os
.
getenv
(
"
DATA_DIR
"
)
@@ -42,7 +43,7 @@ local_timezone = pytz.timezone("Europe/Oslo")
# Calculate cumulated degree days above 5 degrees after 1st of April
# Remove all values before April 1st
subprocess
.
run
(
f
"
cdo -selname,TM -seldate,
2023
-04-01T00:00:00,
2023
-12-31T00:00:00
{
weatherdata_path
}
met_1_0km_nordic-
2023
.nc
{
tmp_path
}
TM_from_april.nc
"
,
f
"
cdo -selname,TM -seldate,
{
year
}
-04-01T00:00:00,
{
year
}
-12-31T00:00:00
{
weatherdata_path
}
met_1_0km_nordic-
{
year
}
.nc
{
tmp_path
}
TM_from_april.nc
"
,
shell
=
True
,
)
# Subtracting 5 deg C from all cells
Loading