RenderingProcess process = (RenderingProcess) this.process;
// evaluate input expressions
// at this point do not have an object to evaluate them against
Map<String, Object> inputs = evaluateInputs(null);
try {
return process.invertGridGeometry(inputs, targetQuery, targetGridGeometry);
} catch (ProcessException e) {
throw new RuntimeException("Failed to invert the grid geometry, error is: "
+ e.getMessage(), e);
}
}