sedona
sedona copied to clipboard
When I resample a raster to very width*height raster , Serde.serialize is limited in 2GB
when I resample a source raster(30'' a pixel , int type , 625625 ) to a dest raster (in XYZ tile system z=14, int type, 64K64K), then I will persist the pixel values as a table but not a raster data.
But 64K64K4bytes > 2GB , Serde.serialize is OOM .
Can I skip the limitation? Or is there a better way to satisfy my situation ?
when I resample a source raster(30'' a pixel , int type , 625_625 ) to a dest raster (in XYZ tile system z=14, int type, 64K_64K), then I will persist the pixel values as a table but not a raster data.
But 64K_64K_4bytes > 2GB , Serde.serialize is OOM .
Can I skip the limitation? Or is there a better way to satisfy my situation ?
625625 means 625 x 625 64K64K means 64K x 64K the star sign disappear
the problem solved,but another occurs