Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/generating-mosaics.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Currently, OIM supports the creation of two different derivatives per layerset:
- **Cloud Optimized GeoTIFFs (COG)**
- This is the primary output, and when present, is used within OIM in certain contexts
- **Static XYZ Tileset**
- This is a rendering of the latest COG mosaic to actual PNG tiles in a {z}/{y}/{x}.png folder structure.
- This is a rendering of the latest COG mosaic to actual PNG tiles in a {z}/{x}/{y}.png folder structure.

!!! note

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
i.wmsUrl = i.mosaic_cog_url ? `${CONTEXT.titiler_preview_host}/cog/wms/?LAYERS=${encodeURIComponent(i.mosaic_cog_url)}&VERSION=1.1.1` : null;
i.masksDateDisplay = i.multimask_date ? new Date(i.multimask_date*1000).toLocaleString() : null;
i.xyzStaticArchiveURL = i.xyz_tiles_url ? `${i.xyz_tiles_url}/archive.tar.gz` : null;
i.xyzStaticTilesURL = i.xyz_tiles_url ? `${i.xyz_tiles_url}/{z}/{y}/{x}.png` : null;
i.xyzStaticTilesURL = i.xyz_tiles_url ? `${i.xyz_tiles_url}/{z}/{x}/{y}.png` : null;
i.cogStale = false;
i.cogDateDisplay = "---";
i.showCogQueueBtn = false;
Expand Down