... | @@ -11,6 +11,18 @@ There is a known issue that causes Deflate-Compressed GeoTiffs not to be display |
... | @@ -11,6 +11,18 @@ There is a known issue that causes Deflate-Compressed GeoTiffs not to be display |
|
|
|
|
|
The source will try to read embedded or external pyramids to significantly speed up the loading times.
|
|
The source will try to read embedded or external pyramids to significantly speed up the loading times.
|
|
|
|
|
|
|
|
If your file does not already contain the pyramids, you can convert it to a cloud optimized geotiff using gdal as follows:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
gdal_translate input.tif output.tif -co TILED=YES -co COPY_SRC_OVERVIEWS=YES -co COMPRESS=LZW -co BIGTIFF=YES
|
|
|
|
```
|
|
|
|
|
|
|
|
You can then add pyramids to the file as follows:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
gdaladdo output.tif
|
|
|
|
```
|
|
|
|
|
|
The image will not be read into RAM completely, so to keep memory usage and loading times low, try storing your image as Tiles as compared to Strips..
|
|
The image will not be read into RAM completely, so to keep memory usage and loading times low, try storing your image as Tiles as compared to Strips..
|
|
|
|
|
|
| Setting | Description | Default |
|
|
| Setting | Description | Default |
|
... | | ... | |