Skip to content

Commit

Permalink
#64 : Showing all variables from a NetCDF file
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvielamythepaut authored Jan 16, 2023
1 parent c45bfa4 commit 5bd0654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skinnywms/fields/NetCDFField.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self, variable, info):
if variable.values.ndim == 0:
self.values = [self.convert(variable.values)]
else:
self.values = [self.convert(t) for t in variable.values][:10]
self.values = [self.convert(t) for t in variable.values]

def make_slice(self, value):
return self.slice_class(
Expand Down

0 comments on commit 5bd0654

Please sign in to comment.