Skip to content

Commit

Permalink
fix incorrectly committed coords for Z3 when loading
Browse files Browse the repository at this point in the history
  • Loading branch information
zarzycki committed Nov 16, 2022
1 parent 02c03ea commit f5be0e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions et-tracker/ExTraTrack.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -429,11 +429,11 @@ do jtc = 0,ntc-1

print("Loading geopotential heights")
if (flipLev) then
;Z3 = input1[:]->Z({s_time:e_time},::-1,{latmin:latmax},:)
Z3 = input1[:]->Z({s_time:e_time},{latmin:latmax},:,::-1)
Z3 = input1[:]->Z({s_time:e_time},::-1,{latmin:latmax},:)
;Z3 = input1[:]->Z({s_time:e_time},{latmin:latmax},:,::-1)
else
;Z3 = input1[:]->Z({s_time:e_time},:,{latmin:latmax},:)
Z3 = input1[:]->Z({s_time:e_time},{latmin:latmax},:,:)
Z3 = input1[:]->Z({s_time:e_time},:,{latmin:latmax},:)
;Z3 = input1[:]->Z({s_time:e_time},{latmin:latmax},:,:)
end if

; make sure we are ordered correctly
Expand Down

0 comments on commit f5be0e3

Please sign in to comment.