You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/zarr/NCGetters.ts
+14-15Lines changed: 14 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ export async function GetNCArray(variable: string){
167
167
constgetStartsAndCounts=()=>{
168
168
conststarts=newArray(rank).fill(0);
169
169
constcounts=newArray(rank).fill(1);
170
-
if(rank>3){//When rank is 4 or 5. The first will always be depth. In the case of 5 that will only be if last dimension is vector variable
170
+
if(rank>3){//When rank is 4 or 5. The first will always be depth. In the case of 5 that will only be if last dimension is vector variable. This case not handled yet
171
171
starts[0]=idx4D;
172
172
counts[0]=1;
173
173
}
@@ -220,23 +220,22 @@ export async function GetNCArray(variable: string){
//I think this is complicating things. Because if it was already scaled then there should already by enough variance in the data it doesn't need to go further
0 commit comments