1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

Add py-cogdumper 1.1.0

COG Dumper is a python utility to extract a tile from a Cloud Optimized GeoTIFF
(COG) without decompressing the contained data. Tiff data can be hosted locally,
on a web server or S3.

This can be useful for serving compressed tiles from a TIFF without invoking
Rasterio and GDAL. This utility has been tested with Tiff that have JPEG
compression.

WWW: https://github.com/mapbox/COGDumper
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-05-08 20:46:28 +00:00
parent d6a1e6aba2
commit 1d07f8fbb7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=534418
4 changed files with 37 additions and 0 deletions

View File

@ -790,6 +790,7 @@
SUBDIR += py-cairocffi
SUBDIR += py-cairosvg
SUBDIR += py-cartopy
SUBDIR += py-cogdumper
SUBDIR += py-colour
SUBDIR += py-descartes
SUBDIR += py-django-easy-thumbnails

View File

@ -0,0 +1,24 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= cogdumper
PORTVERSION= 1.1.0
CATEGORIES= graphics python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Cloud Optimized GeoTIFF (COG) dumper
LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>=1.6.2:www/py-boto3@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}click>=6.7:devel/py-click@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>=2.18.4:www/py-requests@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1588930301
SHA256 (cogdumper-1.1.0.tar.gz) = 75afe1ed636f4b5b8b540832f464dcc4d5fa3e8594d58bf8f27aa4d12e3ba164
SIZE (cogdumper-1.1.0.tar.gz) = 9340

View File

@ -0,0 +1,9 @@
COG Dumper is a python utility to extract a tile from a Cloud Optimized GeoTIFF
(COG) without decompressing the contained data. Tiff data can be hosted locally,
on a web server or S3.
This can be useful for serving compressed tiles from a TIFF without invoking
Rasterio and GDAL. This utility has been tested with Tiff that have JPEG
compression.
WWW: https://github.com/mapbox/COGDumper