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
The current terrain.get_terrain_attribute function loads the entire DEM into memory, which can be inefficient for large datasets. There is a need to implement a multiprocessing version that handles large DEMs by processing them in tiles, reducing memory usage, and improving performance through parallel computation. This function should allow users to calculate multiple terrain attributes efficiently using multiprocessing while keeping DEMs on disk.
The text was updated successfully, but these errors were encountered:
Description
The current
terrain.get_terrain_attribute
function loads the entire DEM into memory, which can be inefficient for large datasets. There is a need to implement a multiprocessing version that handles large DEMs by processing them in tiles, reducing memory usage, and improving performance through parallel computation. This function should allow users to calculate multiple terrain attributes efficiently using multiprocessing while keeping DEMs on disk.The text was updated successfully, but these errors were encountered: