From 396916bb7c0c2970bc5a97379fa5d5230f80b5ea Mon Sep 17 00:00:00 2001 From: KatKatKateryna Date: Tue, 29 Oct 2024 14:14:22 +0000 Subject: [PATCH] fix bug in setting AuthId --- pygeoapi/provider/speckle_utils/url_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pygeoapi/provider/speckle_utils/url_utils.py b/pygeoapi/provider/speckle_utils/url_utils.py index a8727cc..abea485 100644 --- a/pygeoapi/provider/speckle_utils/url_utils.py +++ b/pygeoapi/provider/speckle_utils/url_utils.py @@ -97,8 +97,8 @@ def get_set_url_parameters(self: "SpeckleProvider"): if crsauthid: self.lat = str(self.lat) + " (not applied)" self.lon = str(self.lon) + " (not applied)" - self.north_degrees = str(self.north_degrees) + " (not applied)" + self.north_degrees = 0 # default to 0: rotation ignored when AuthId is used #str(self.north_degrees) + " (not applied)" # if CRS parameter present, create and assign CRS: if len(self.crs_authid)>3: - create_crs_from_authid(self) + create_crs_from_authid(self, self.crs_authid)