Cloud-Optimized GeoTIFF(COG)는 타일을 클라우드에서 스트리밍하기 위한 래스터 형식입니다. 파일 내부에 타일과 오버뷰가 포함되어 점진적 로딩을 지원합니다. 클라우드 GIS, 위성 영상, 분석 작업에 이상적입니다.
주요 기능

Cloud-Optimized GeoTIFF 형식 소개
Cloud-Optimized GeoTIFF is an ordinary GeoTIFF, but laid out inside in such a way that it can be read piece by piece straight from the cloud. The file has internal tiles and a pyramid of reduced copies, so a client makes an HTTP request with a byte range and takes only the fragment it needs and only the scale it needs, without downloading the whole file.
The format is chosen when the map lives in cloud storage and is served to many consumers: a basemap for a web map, a layer in a cloud GIS, a raster for analytics. A single file on S3 replaces a whole tile server — readers take from it what they need themselves.
The output is a single .tif file: the map of the selected area is drawn into a raster and repacked into COG with GDAL. The internal tiles are 512 pixels, overview levels are built automatically with bilinear resampling, and the default compression is DEFLATE (LZW, ZSTD, JPEG and WebP are also available). Georeferencing is in WGS84, the resolution is chosen by a quality preset, and the raster side is capped so the file stays workable.
It is important to understand the nature of the file: these are pixels, not objects. There are no OSM attributes in it, and you cannot click a building and see its tags — for that you need vector formats.
Cloud-Optimized GeoTIFF 파일을 여는 프로그램
다음 프로그램과 애플리케이션으로 OSM2CDR에서 내보낸 Cloud-Optimized GeoTIFF(.tif) 파일을 열고 편집하고 작업할 수 있습니다:
Format specifications
- Open standard
- 2D only
- Lossless (no quality loss)
- No attributes
- Output: 1 file
- Cloud-Optimised GeoTIFF (OGC). Internally tiled with overviews; HTTP range-request streaming via rio-tiler, GDAL/VSI, TiTiler.
Cloud-Optimized GeoTIFF 지도 사용자
Cloud-Optimized GeoTIFF 내보내기 방법
내보낸 뒤 여는 방법
- QGIS — Layer → Add Raster Layer; the file lands by its coordinates, and the overview levels make redrawing on zoom fast.
- Checking whether this is a real COG — the command rio cogeo validate map.tif, or gdalinfo, which will show the internal tiles and the list of overview levels.
- Cloud storage — upload the file to S3, Google Cloud Storage or Azure Blob and serve it over HTTPS: clients will read it in parts through range requests.
- TiTiler or rio-tiler — raise a tile service on top of the file in the cloud, without cutting tiles in advance.
- GDAL — gdal_translate repacks the raster into another compression or crops it to the extent you need, if the requirements of the receiving side differ.
Cloud-Optimized GeoTIFF 형식의 인기 지도
Cloud-Optimized GeoTIFF 지도 내보내기 받기
OpenStreetMap에서 전문가용 Cloud-Optimized GeoTIFF 지도를 다운로드하세요. 즉시 생성, 모든 영역 지원.
자주 묻는 질문
다른 형식과 비교
관련 형식
함께 자주 내보내는 형식
Related Articles
Cloud Optimized GeoTIFF (COG) — Cloud Raster OGC Standard: HTTP Range, Overviews, and OSM Export
COG — the cloud-native GeoTIFF evolution: 512px internal tiles, overview pyramids, HTTP range requests, OGC standard sin
guideZarr: A Multidimensional Format for Geodata
Zarr is a cloud-native format for multidimensional geodata storage. Chunked storage, compression, and Python xarray inte
guideGeoTIFF and COG: Raster Formats for GIS and Remote Sensing
What is GeoTIFF and Cloud Optimized GeoTIFF (COG), usage in QGIS and GDAL, exporting raster maps from OpenStreetMap.