Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustinMortier committed Oct 2, 2024
2 parents 31f0900 + 19e488f commit 6024258
Show file tree
Hide file tree
Showing 2 changed files with 3 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'] = ds['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
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.3"
version = "0.9.5"
description = "Analysis of atmospheric profilers measurements"
authors = ["augustinm <[email protected]>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 6024258

Please sign in to comment.