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
pysatCDF currently uses a Fortran interface to the underlying CDF library. Each time a variable is loaded the code needs to open the file, read the variable, then close the file. Each variable type requires its own function. To reduce read time, all variables of a given type and dimensionality (<=2) are all read at once. The memory passed to Fortran is sized based off of the largest dimensions, so loading 1D and 10D data together is inefficient.
Convert the raw fortran read routines to support the highest CDF dimension (10?).
Keep current loads of 1D and 2D together. Then load 3D, 4D, 5D, as needed, individually.
The text was updated successfully, but these errors were encountered:
pysatCDF currently uses a Fortran interface to the underlying CDF library. Each time a variable is loaded the code needs to open the file, read the variable, then close the file. Each variable type requires its own function. To reduce read time, all variables of a given type and dimensionality (<=2) are all read at once. The memory passed to Fortran is sized based off of the largest dimensions, so loading 1D and 10D data together is inefficient.
Convert the raw fortran read routines to support the highest CDF dimension (10?).
Keep current loads of 1D and 2D together. Then load 3D, 4D, 5D, as needed, individually.
The text was updated successfully, but these errors were encountered: