Let's initialize
a = Table[Random[], {1460}, {361}, {720}];
Then use some elements to form another table
Table[a[[1, i, 1]], {i, 1, 100}]; // AbsoluteTiming
This operation takes very little time
out[] = {0.0004528, Null}
But just a bit large Table (from 1 to 361)
Table[a[[1, i, 1]], {i, 1, 361}]; // AbsoluteTiming
takes crazy long
out[]= {67.1042, Null}
What is a problem?
P.S. Mathematica ver. 13.3. RAM is sufficient.