Skip to content

Commit

Permalink
Fix abi l1b slicing order
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Feb 10, 2018
1 parent 175318c commit 0bd8ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satpy/readers/abi_l1b.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_dataset(self, key, info,
"""Load a dataset."""
logger.debug('Reading in get_dataset %s.', key.name)

radiances = self.nc["Rad"][xslice, yslice].expand_dims('time')
radiances = self.nc["Rad"][yslice, xslice].expand_dims('time')

res = self.calibrate(radiances)

Expand Down

0 comments on commit 0bd8ae5

Please sign in to comment.