import logging
import os
from pywps import FORMATS, ComplexInput, ComplexOutput, Format, LiteralInput, Process
from pywps.app.Common import Metadata
from ..director import wrap_director
from ..utils.average_utils import run_average_by_shape
from ..utils.input_utils import parse_wps_input
from ..utils.metalink_utils import build_metalink
from ..utils.response_utils import populate_response
LOGGER = logging.getLogger()
[docs]
class AverageByShape(Process):
def __init__(self):
inputs = [
LiteralInput(
"collection",
"Collection",
abstract="A dataset identifier or list of comma separated identifiers. "
"Example: c3s-cmip5.output1.ICHEC.EC-EARTH.historical.day.atmos.day.r1i1p1.tas.latest",
data_type="string",
min_occurs=1,
max_occurs=1,
),
ComplexInput(
"shape",
"Vector Shape",
abstract="An ESRI Shapefile, GML, GeoPackage, JSON or GeoJSON file."
" The ESRI Shapefile must be zipped and contain the .shp, .shx, and .dbf.",
supported_formats=[
FORMATS.GML,
FORMATS.GEOJSON,
FORMATS.SHP,
FORMATS.JSON,
FORMATS.ZIP,
],
min_occurs=1,
max_occurs=1,
),
LiteralInput(
"pre_checked",
"Pre-Checked",
data_type="boolean",
abstract="Use checked data only.",
default="0",
min_occurs=1,
max_occurs=1,
),
LiteralInput(
"apply_fixes",
"Apply Fixes",
data_type="boolean",
abstract="Apply fixes to datasets.",
default="1",
min_occurs=1,
max_occurs=1,
),
]
outputs = [
ComplexOutput(
"output",
"METALINK v4 output",
abstract="Metalink v4 document with references to NetCDF files.",
as_reference=True,
supported_formats=[FORMATS.META4],
),
ComplexOutput(
"prov",
"Provenance",
abstract="Provenance document using W3C standard.",
as_reference=True,
supported_formats=[FORMATS.JSON],
),
ComplexOutput(
"prov_plot",
"Provenance Diagram",
abstract="Provenance document as diagram.",
as_reference=True,
supported_formats=[
Format("image/png", extension=".png", encoding="base64")
],
),
]
super().__init__(
self._handler,
identifier="average_shape",
title="Average over polygonal shape",
abstract="Run averaging over a specified shape on climate model data.",
metadata=[
Metadata("DAOPS", "https://github.com/roocs/daops"),
],
version="1.0",
inputs=inputs,
outputs=outputs,
store_supported=True,
status_supported=True,
)
def _handler(self, request, response):
# show me the environment used by the process in debug mode
LOGGER.debug(f"Environment used in average_shape: {os.environ}")
collection = parse_wps_input(
request.inputs, "collection", as_sequence=True, must_exist=True
)
inputs = {
"collection": collection,
"output_dir": self.workdir,
"apply_fixes": parse_wps_input(request.inputs, "apply_fixes", default=True),
"pre_checked": parse_wps_input(
request.inputs, "pre_checked", default=False
),
"shape": parse_wps_input(request.inputs, "shape", default=None),
}
# Let the director manage the processing or redirection to original files
director = wrap_director(collection, inputs, run_average_by_shape)
ml4 = build_metalink(
"average-shape-result",
"Averaging by shape result as NetCDF files.",
self.workdir,
director.output_uris,
)
populate_response(
response, "average_shape", self.workdir, inputs, collection, ml4
)
return response