Skip to content

Commit

Permalink
Merge pull request #26 from AugustinMortier/0.9.5
Browse files Browse the repository at this point in the history
0.9.5
  • Loading branch information
AugustinMortier authored Oct 2, 2024
2 parents ba76484 + 321ad07 commit 19e488f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aprofiles/cli/utils/json_climatology.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def compute_climatology(basedir, station_id, season_variables, all_variables, ae
Qds["ndays"] = ds.scene.resample(time="D").count().resample(time="QE").count()

# add Z to time
ds.coords['time'] = ds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')
Qds.coords['time'] = Qds['time'].dt.strftime('%Y-%m-%dT%H:%M:%SZ')
ds.coords['time'] = ds['time'].astype(int)
Qds.coords['time'] = Qds['time'].astype(int)

# select variables
multivars_dict = {}
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

:material-history:{ style="text-align: center; font-size: xx-large; display: block" }

## 0.9.5
Oct 2, 2024

- write time as int in cliamatology files

## 0.9.4
Oct 2, 2024

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aprofiles"
version = "0.9.4"
version = "0.9.5"
description = "Analysis of atmospheric profilers measurements"
authors = ["augustinm <[email protected]>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 19e488f

Please sign in to comment.