From 4a0b91fdb93f3e2f8dbe858cc6abae147b042948 Mon Sep 17 00:00:00 2001 From: Francis Charette-Migneault Date: Wed, 29 Apr 2020 21:44:19 -0400 Subject: [PATCH] add image/tiff format (relates to #100) --- weaver/formats.py | 1 + 1 file changed, 1 insertion(+) diff --git a/weaver/formats.py b/weaver/formats.py index edb1b6c13..fadc9c46f 100644 --- a/weaver/formats.py +++ b/weaver/formats.py @@ -44,6 +44,7 @@ CONTENT_TYPE_APP_VDN_GEOJSON = "application/vnd.geo+json" CONTENT_TYPE_APP_XML = "application/xml" CONTENT_TYPE_IMAGE_GEOTIFF = "image/tiff; subtype=geotiff" +CONTENT_TYPE_IMAGE_TIFF = "image/tiff" CONTENT_TYPE_TEXT_XML = "text/xml" CONTENT_TYPE_ANY_XML = {CONTENT_TYPE_APP_XML, CONTENT_TYPE_TEXT_XML} CONTENT_TYPE_ANY = "*/*"