Skip to content

Commit

Permalink
change to searching the prod env
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenwh committed Apr 9, 2024
1 parent e347c06 commit aee9497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions winddata/winddata.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class WINDdata():
Parameters
-----------
endpoint : str
URL to Data. Default: https://csw.s-enda-dev.k8s.met.no/csw
URL to Data. Default: https://csw.s-enda.k8s.met.no/csw
bbox : int list
A boudary box for search area speified in latitude and longitude
Expand All @@ -41,7 +41,7 @@ class WINDdata():
>>> kw_name='Arome-Arctic%'
"""

def __init__(self, endpoint='https://csw.s-enda-dev.k8s.met.no/csw',
def __init__(self, endpoint='https://csw.s-enda.k8s.met.no/csw',
bbox=None, start=None, stop=None,
kw_names='Arome-Arctic%', crs='urn:ogc:def:crs:OGC:1.3:CRS84', *args, **kwargs):
super(WINDdata, self).__init__(*args, **kwargs)
Expand Down

0 comments on commit aee9497

Please sign in to comment.