Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 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
11 changes: 8 additions & 3 deletions Dockerfile
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you go for venv? I've usually read to avoid this unless multi stage builds are used, but maybe it is also okay to avoid clashes with "system" dependencies

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that was the reason. With the Python version used in Ubuntu 24.04 it was no longer possible to install user packages next to system ones without a venv.

Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM ubuntu:22.04
FROM ubuntu:24.04

ENV VIRTUAL_ENV=/opt/venv
ENV INSTANCE_NAME=instance
ENV TZ=UTC
ENV PYTHONPATH='/opt/eoxserver'
Expand Down Expand Up @@ -28,6 +29,7 @@ RUN apt-get update \
&& apt-get install -y \
python3 \
python3-pip \
python3-venv \
libpq-dev \
python3-gdal \
python3-mapscript \
Expand All @@ -39,6 +41,10 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/partial/* /tmp/* /var/tmp/*

# setting up a venv to install user packages in
RUN python3 -m venv --system-site-packages $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"

ENV PROMETHEUS_MULTIPROC_DIR /var/tmp/prometheus_multiproc_dir
RUN mkdir $PROMETHEUS_MULTIPROC_DIR # make sure this is writable by webserver user

Expand All @@ -47,8 +53,7 @@ WORKDIR /opt/eoxserver

# install dependencies
COPY requirements.txt .
RUN python3 -m pip install -U pip \
&& python3 -m pip install --no-cache-dir -r requirements.txt
RUN python3 -m pip install --no-cache-dir -r requirements.txt

# install EOxServer
COPY . .
Expand Down
36 changes: 18 additions & 18 deletions autotest/autotest/conf/eoxserver.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
#
# Project: EOxServer <http://eoxserver.org>
# Authors: Stephan Krause <[email protected]>
# Stephan Meissl <[email protected]>
# Martin Paces <[email protected]>
#
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
# Copyright (C) 2011 EOX IT Services GmbH
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
Expand All @@ -25,11 +25,11 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------

#-----------------------------------------------------------------------
# ----------------------------------------------------------------------
# New style configuration
#-----------------------------------------------------------------------
# ----------------------------------------------------------------------

[core.system]

Expand Down Expand Up @@ -82,9 +82,9 @@ role=Service provider
supported_crs=4326, # WGS84
3857, # WGS84 Pseudo-Mercator
3035, #ETRS89
32661,32761, # WGS84 UPS-N and UPS-S
32601,32602,32603,32604,32605,32606,32607,32608,32609,32610, # WGS84 UTM 1N-10N
32611,32612,32613,32614,32615,32616,32617,32618,32619,32620, # WGS84 UTM 11N-20N
32661,32761, # WGS84 UPS-N and UPS-S
32601,32602,32603,32604,32605,32606,32607,32608,32609,32610, # WGS84 UTM 1N-10N
32611,32612,32613,32614,32615,32616,32617,32618,32619,32620, # WGS84 UTM 11N-20N
32621,32622,32623,32624,32625,32626,32627,32628,32629,32630, # WGS84 UTM 21N-30N
32631,32632,32633,32634,32635,32636,32637,32638,32639,32640, # WGS84 UTM 31N-40N
32641,32642,32643,32644,32645,32646,32647,32648,32649,32650, # WGS84 UTM 41N-50N
Expand All @@ -96,7 +96,7 @@ supported_crs=4326, # WGS84
32741,32742,32743,32744,32745,32746,32747,32748,32749,32750, # WGS84 UTM 41S-50S
32751,32752,32753,32754,32755,32756,32757,32758,32759,32760 # WGS84 UTM 51S-60S

# file formats supported by WMS
# file formats supported by WMS
supported_formats=image/png,image/jpeg,image/gif,image/tiff

mask_names=clouds
Expand All @@ -108,9 +108,9 @@ mask_names=clouds
#supported_crs=4326, # WGS84
# 3857, # WGS84 Pseudo-Mercator
# 3035, # ETRS89
# 32661,32761, # WGS84 UPS-N and UPS-S
# 32601,32602,32603,32604,32605,32606,32607,32608,32609,32610, # WGS84 UTM 1N-10N
# 32611,32612,32613,32614,32615,32616,32617,32618,32619,32620, # WGS84 UTM 11N-20N
# 32661,32761, # WGS84 UPS-N and UPS-S
# 32601,32602,32603,32604,32605,32606,32607,32608,32609,32610, # WGS84 UTM 1N-10N
# 32611,32612,32613,32614,32615,32616,32617,32618,32619,32620, # WGS84 UTM 11N-20N
# 32621,32622,32623,32624,32625,32626,32627,32628,32629,32630, # WGS84 UTM 21N-30N
# 32631,32632,32633,32634,32635,32636,32637,32638,32639,32640, # WGS84 UTM 31N-40N
# 32641,32642,32643,32644,32645,32646,32647,32648,32649,32650, # WGS84 UTM 41N-50N
Expand All @@ -122,7 +122,7 @@ mask_names=clouds
# 32741,32742,32743,32744,32745,32746,32747,32748,32749,32750, # WGS84 UTM 41S-50S
# 32751,32752,32753,32754,32755,32756,32757,32758,32759,32760 # WGS84 UTM 51S-60S

# file formats supported by WCS (uncomment to set non-default values)
# file formats supported by WCS (uncomment to set non-default values)
supported_formats=image/tiff,image/jp2,application/x-netcdf,application/x-hdf,image/png

# the maximum size of output coverages
Expand Down Expand Up @@ -165,18 +165,18 @@ cache_dir=/tmp

[services.ows.wcst11]

#this flag enables/disable mutiple actions per WCSt request
# NOTE: it's much safer to keep this feature disabled
allow_multiple_actions=False
#this flag enables/disable mutiple actions per WCSt request
# NOTE: it's much safer to keep this feature disabled
allow_multiple_actions=False

# list enabled actions {Add,Delete,UpdateAll,UpdateMetadata,UpdateDataPart}
# set Add,Delete for the autotest configuration s
#allowed_actions=Add,Delete

# temporary storage
# temporary storage
path_wcst_temp=/var/eoxserver/autotest/autotest/wcst_temp

# permanent data storage
# permanent data storage
path_wcst_perm=/var/eoxserver/autotest/autotest/wcst_perm

[processing.gdal.reftools]
Expand Down
18 changes: 9 additions & 9 deletions autotest/autotest/conf/formats.conf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
#
# Project: EOxServer <http://eoxserver.org>
# Authors: Martin Paces <[email protected]>
#
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
# Copyright (C) 2012 EOX IT Services GmbH
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
Expand All @@ -23,14 +23,14 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------

#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
# This is the user provided list of supported file formats extending/overriding
# the EOxServer's default list of supported file formats.
#
# This configuration file is optional and it should not cause any harm
# to keep this file empty or omit it completely.
# This configuration file is optional and it should not cause any harm
# to keep this file empty or omit it completely.
#
# Line format:
#
Expand All @@ -40,7 +40,7 @@
#
# We recommend to use MIME types as the unique identifiers in the first column.
#
#-------------------------------------------------------------------------------
# ------------------------------------------------------------------------------

image/gif,GDAL/GIF,.gif
image/jp2,GDAL/JPEG2000,.jp2 # JasPer driver - left to assure functionality with GDAL having no OpenJpeg driver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<ows:UpperCorner>46.268645 28.29481</ows:UpperCorner>
</ows:BoundingBox>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.331755 32.19025</ows:LowerCorner>
<ows:UpperCorner>28.29481 46.268645</ows:UpperCorner>
<ows:LowerCorner>11.331755 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.294810 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<GridCRS>
<GridBaseCRS>urn:ogc:def:crs:EPSG::4326</GridBaseCRS>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ows:UpperCorner>46.268645 28.263455</ows:UpperCorner>
</ows:BoundingBox>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>-3.75 32.19025</ows:LowerCorner>
<ows:LowerCorner>-3.750000 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.263455 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<GridCRS>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1PNPDE20060822_092058_000001972050_00308_23408_0077_RGB_reduced</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>8.47845 32.19025</ows:LowerCorner>
<ows:UpperCorner>25.41015 46.268645</ows:UpperCorner>
<ows:LowerCorner>8.478450 32.190250</ows:LowerCorner>
<ows:UpperCorner>25.410150 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand Down
10 changes: 5 additions & 5 deletions autotest/autotest/expected/WCS11GetCapabilitiesEmptyTestCase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>MER_FRS_1PNPDE20060816_090929_000001972050_00222_23322_0058_uint16_reduced_compressed</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.36106586 32.2014463</ows:LowerCorner>
<ows:UpperCorner>28.28384572 46.2520256</ows:UpperCorner>
<ows:LowerCorner>11.361066 32.201446</ows:LowerCorner>
<ows:UpperCorner>28.283846 46.252026</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand All @@ -189,8 +189,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1PNPDE20060816_090929_000001972050_00222_23322_0058_RGB_reduced</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.331755 32.19025</ows:LowerCorner>
<ows:UpperCorner>28.29481 46.268645</ows:UpperCorner>
<ows:LowerCorner>11.331755 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.294810 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand All @@ -206,7 +206,7 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1P_reduced_RGB</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>-3.75 32.19025</ows:LowerCorner>
<ows:LowerCorner>-3.750000 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.263455 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
Expand Down
10 changes: 5 additions & 5 deletions autotest/autotest/expected/WCS11GetCapabilitiesValidTestCase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>MER_FRS_1PNPDE20060816_090929_000001972050_00222_23322_0058_uint16_reduced_compressed</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.36106586 32.2014463</ows:LowerCorner>
<ows:UpperCorner>28.28384572 46.2520256</ows:UpperCorner>
<ows:LowerCorner>11.361066 32.201446</ows:LowerCorner>
<ows:UpperCorner>28.283846 46.252026</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand All @@ -189,8 +189,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1PNPDE20060816_090929_000001972050_00222_23322_0058_RGB_reduced</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.331755 32.19025</ows:LowerCorner>
<ows:UpperCorner>28.29481 46.268645</ows:UpperCorner>
<ows:LowerCorner>11.331755 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.294810 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand All @@ -206,7 +206,7 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1P_reduced_RGB</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>-3.75 32.19025</ows:LowerCorner>
<ows:LowerCorner>-3.750000 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.263455 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<ows:UpperCorner>46.268645 28.29481</ows:UpperCorner>
</ows:BoundingBox>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.331755 32.19025</ows:LowerCorner>
<ows:UpperCorner>28.29481 46.268645</ows:UpperCorner>
<ows:LowerCorner>11.331755 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.294810 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<GridCRS>
<GridBaseCRS>urn:ogc:def:crs:EPSG::4326</GridBaseCRS>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ows:UpperCorner>46.268645 28.263455</ows:UpperCorner>
</ows:BoundingBox>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>-3.75 32.19025</ows:LowerCorner>
<ows:LowerCorner>-3.750000 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.263455 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<GridCRS>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>MER_FRS_1PNPDE20060816_090929_000001972050_00222_23322_0058_uint16_reduced_compressed</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.36106586 32.2014463</ows:LowerCorner>
<ows:UpperCorner>28.28384572 46.2520256</ows:UpperCorner>
<ows:LowerCorner>11.361066 32.201446</ows:LowerCorner>
<ows:UpperCorner>28.283846 46.252026</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand All @@ -189,8 +189,8 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1PNPDE20060816_090929_000001972050_00222_23322_0058_RGB_reduced</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>11.331755 32.19025</ows:LowerCorner>
<ows:UpperCorner>28.29481 46.268645</ows:UpperCorner>
<ows:LowerCorner>11.331755 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.294810 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
<SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS>
Expand All @@ -206,7 +206,7 @@ Copyright (C) European Space Agency - ESA</ows:Abstract>
<ows:Title>mosaic_MER_FRS_1P_reduced_RGB</ows:Title>
<ows:Abstract/>
<ows:WGS84BoundingBox dimensions="2">
<ows:LowerCorner>-3.75 32.19025</ows:LowerCorner>
<ows:LowerCorner>-3.750000 32.190250</ows:LowerCorner>
<ows:UpperCorner>28.263455 46.268645</ows:UpperCorner>
</ows:WGS84BoundingBox>
<SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="CompressionInvalid">
<ows:ExceptionText>Unexpected value 'notValid'. Expected one of: 'None', 'PackBits', 'Huffman', 'LZW', 'JPEG', 'Deflate'.</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="CompressionNotSupported" locator="geotiff:jpeg_quality">
<ows:ExceptionText>geotiff:jpeg_quality requires compression method 'JPEG'.</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="InterleavingInvalid">
<ows:ExceptionText>Unexpected value 'invalid'. Expected one of: 'Pixel', 'Band'.</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="JpegQualityInvalid" locator="geotiff:jpeg_quality">
<ows:ExceptionText>geotiff:jpeg_quality should be an integer between 1 and 100</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="PredictorInvalid">
<ows:ExceptionText>Unexpected value 'invalid'. Expected one of: 'None', 'Horizontal', 'FloatingPoint'.</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="PredictorNotSupported" locator="geotiff:predictor">
<ows:ExceptionText>geotiff:predictor requires compression method 'LZW' or 'Deflate'.</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0.1" xml:lang="en" xsi:schemaLocation="http://www.opengis.net/ows/2.0 http://schemas.opengis.net/ows/2.0/owsAll.xsd">
<ows:Exception exceptionCode="TilingInvalid" locator="geotiff:tiling">
<ows:ExceptionText>geotiff:tiling requires geotiff:tilewidth and geotiff:tileheight to be set.</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading