Skip to content

Commit

Permalink
replace np.NAN with np.nan
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Griesfeller committed Sep 9, 2024
1 parent c5b92a6 commit 2dd3ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyaro_readers/actrisebas/ActrisEbasReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def read_data(
lon = np.full(ts_no, tmp_data.attrs["geospatial_lon_min"])
station = np.full(ts_no, tmp_data.attrs["ebas_station_name"])
altitude = np.full(ts_no, tmp_data.attrs["geospatial_vertical_min"])
standard_deviation = np.full(ts_no, np.NAN)
standard_deviation = np.full(ts_no, np.nan)

# put all data variables in the data struct for the moment
for _data_var in self._get_ebas_data_vars(tmp_data):
Expand Down

0 comments on commit 2dd3ff3

Please sign in to comment.