Skip to content

Commit

Permalink
fix #29
Browse files Browse the repository at this point in the history
  • Loading branch information
philippemiron committed May 23, 2022
1 parent 9feff86 commit 050b78c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def to_xarray(self):
lon=(['obs'], self.lon, {'long_name': 'Longitude', 'units':'degrees_east'}),
lat=(['obs'], self.lat, {'long_name': 'Latitude', 'units':'degrees_north'}),
time=(['obs'], self.time, {'long_name': 'Time'}),
ids=(['obs'], np.repeat(self.id, self.rowsize), {'long_name': "Global Drifter Program Buoy identification number of observations", 'units':'-'}),
ids=(['obs'], np.repeat(self.id, self.rowsize), {'long_name': "Global Drifter Program Buoy identification number repeated along observations", 'units':'-'}),
),

attrs={
Expand Down

0 comments on commit 050b78c

Please sign in to comment.