Skip to content
Snippets Groups Projects
Commit 39bb3b94 authored by (no author)'s avatar (no author)
Browse files

correcting typo in io code

git-svn-id: https://svn.ssec.wisc.edu/repos/glance/trunk@63 8a9318a1-56ba-4d59-b755-99d26321be01
parent 84eb21a5
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ class hdf(SD):
# get information about where the data is the missing value
missing_val = self.missing_value(name)
missing_mask = (raw_data_copy == missing_value)
missing_mask = (raw_data_copy == missing_val)
# create the scaled version of the data
scaled_data_copy = np.array(raw_data_copy, dtype=data_type)
......@@ -146,7 +146,7 @@ class nc(CDF):
# get information about where the data is the missing value
missing_val = self.missing_value(name)
missing_mask = (raw_data_copy == missing_value)
missing_mask = (raw_data_copy == missing_val)
# create the scaled version of the data
scaled_data_copy = np.array(raw_data_copy, dtype=data_type)
......@@ -222,7 +222,7 @@ class h5(object):
# get information about where the data is the missing value
missing_val = self.missing_value(name)
missing_mask = (raw_data_copy == missing_value)
missing_mask = (raw_data_copy == missing_val)
# create the scaled version of the data
scaled_data_copy = np.array(raw_data_copy, dtype=data_type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment