Skip to content
Snippets Groups Projects
Commit 8ab26d61 authored by Greg Quinn's avatar Greg Quinn
Browse files

Fix indexing error in Cris2Modis

parent 9820014f
No related branches found
No related tags found
No related merge requests found
......@@ -33,5 +33,5 @@ class Cris2Modis(object):
lambda_ = 10000.0 / nu
rad_lambda = rad_nu * 1e-7 * nu**2
return lambda_[::-1], rad_lambda[::-1]
return lambda_[::-1], rad_lambda[...,::-1]
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