This PR aims to plot DGGS data natively, i.e. without projection to geographical projection. Instead, the Q2DI indexed data is directly mapped to uv-coordinates off an icosahedron mesh with vertices positions matching the ISEA grid.
This is much faster, because no re-projection is needed.
filter_null(maximum)(filtered_cell_cube.data.data) is the slowest step. It runs through the data multiple times: one to filter and anotherone to get the max. Nested for loop should be much faster.
This PR aims to plot DGGS data natively, i.e. without projection to geographical projection. Instead, the Q2DI indexed data is directly mapped to uv-coordinates off an icosahedron mesh with vertices positions matching the ISEA grid. This is much faster, because no re-projection is needed.