Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 4
    Going from 100m pixel size into 10m pixel size means 100x more pixels. And if the source file was compressed and the target file not it will add more to the file size. Commented Oct 9, 2024 at 15:40
  • Is it good practice to just compress the target file with rasterio while saving it? Is there any downside by compressing it? Commented Oct 9, 2024 at 16:33
  • 3
    If you use lossless compression I would say that usually there are no issues. Lossy compression will change some height values slightly that may not be desired. For lossless try LZW or deflate, and test what effect the predictor has for the compression ratio with your data. Commented Oct 9, 2024 at 18:36