We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a881ec commit 7d20cf2Copy full SHA for 7d20cf2
polytope_server/common/datasource/polytope.py
@@ -70,6 +70,18 @@ def retrieve(self, request):
70
polytope_mars_config = copy.deepcopy(self.config)
71
polytope_mars_config["options"]["pre_path"] = pre_path
72
73
+ transforms = []
74
+ for transform in polytope_mars_config["options"]["axis_config"]:
75
+ if transform["axis_name"] in r.keys():
76
+ logging.info("Found axis {} in request".format(transform["axis_name"]))
77
+ transforms.append(transform)
78
+ if transform["axis_name"] in ("latitude", "longitude", "values"):
79
80
+
81
82
+ polytope_mars_config["options"]["axis_config"] = transforms
83
84
85
86
polytope_mars = PolytopeMars(
87
polytope_mars_config,
0 commit comments