Skip to content

Commit

Permalink
fixed problem with mask of map from remote
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 14, 2016
1 parent 7bf598c commit e53e075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/marvin/api/maps.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def getMap(self, name, bintype, template_kin, property_name, channel):
self.results['data'] = {}
self.results['data']['value'] = mmap.value.tolist()
self.results['data']['ivar'] = mmap.ivar.tolist()
self.results['data']['mask'] = mmap.ivar.tolist()
self.results['data']['mask'] = mmap.mask.tolist()
self.results['data']['unit'] = mmap.unit
self.results['data']['header'] = {key: mmap.header[key] for key in mmap.header}
except Exception as ee:
Expand Down

0 comments on commit e53e075

Please sign in to comment.