Skip to content

Commit

Permalink
Create normalized tif as BigTIFF
Browse files Browse the repository at this point in the history
  • Loading branch information
index-git committed Nov 3, 2022
1 parent 7812351 commit 4658327
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- [#667](https://github.com/LayerManager/layman/issues/667) Fix broken statistics during normalization of float rasters with big nodata value.
- [#668](https://github.com/LayerManager/layman/issues/668) Fix broken size of raster in EPSG:3034 during normalization.
- [#669](https://github.com/LayerManager/layman/issues/669) Fix slow publication of vector layers metadata to Micka. The reason was slow guessing of [`spatial_resolution.scale_denominator`](doc/metadata.md#spatial_resolution) metadata property.
- Normalized GeoTIFF files are created as BigTIFF

## v1.17.0
2022-07-21
Expand Down
2 changes: 1 addition & 1 deletion doc/data-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Subsequently, asynchronous tasks ensure following steps:
- data file chunks and completed data files are saved to [filesystem](#filesystem) (if sent [asynchronously](async-file-upload.md))
- vector data files are imported to [PostgreSQL](#postgresql)
- PostgreSQL table with vector data is registered to [GeoServer](#geoserver)
- raster files are normalized and compressed to GeoTIFF with overviews (pyramids)
- raster files are normalized and compressed to BigTIFF GeoTIFF with overviews (pyramids)
- normalized GeoTIFF is registered to [GeoServer](#geoserver)
- SLD file is saved to [GeoServer](#geoserver) and registered to WMS layer
- QGS file is created on [filesystem](#filesystem) and through QGIS server registered to [GeoServer](#geoserver)
Expand Down
1 change: 1 addition & 0 deletions src/layman/layer/filesystem/gdal.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ def normalize_raster_file_async(input_path, crs_id, output_file):
'gdalwarp',
'-of', 'VRT',
'-co', 'PROFILE=GeoTIFF',
'-co', 'BIGTIFF=YES',
'-co', 'INTERLEAVE=PIXEL',
'-co', 'TILED=YES',
]
Expand Down

0 comments on commit 4658327

Please sign in to comment.