Skip to content

Commit

Permalink
Merge pull request #57 from ropable/master
Browse files Browse the repository at this point in the history
Update KMI_WFS_URL value
  • Loading branch information
ropable authored Aug 7, 2024
2 parents 9e6e56c + b5099e2 commit b44272c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ requests = "2.32.3"
pytz = "2024.1"
python-dotenv = "1.0.1"
gunicorn = "22.0.0"
humanize = "4.9.0"
humanize = "4.10.0"

[tool.poetry.group.dev.dependencies]
ipython = "^8.26.0"
Expand Down
10 changes: 5 additions & 5 deletions status.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from bottle import Bottle, static_file, response
from datetime import datetime
import humanize
import json
import os
import requests
import xml.etree.ElementTree as ET
from datetime import datetime
from zoneinfo import ZoneInfo

import humanize
import requests
from bottle import Bottle, response, static_file

dot_env = os.path.join(os.getcwd(), ".env")
if os.path.exists(dot_env):
Expand Down Expand Up @@ -37,7 +37,7 @@
SSS_FLEETCARE_URL = RT_URL + "/api/v1/device/?seen__isnull=false&source_device_type=fleetcare&format=json"
CSW_API = os.environ.get("CSW_API", "https://csw.dbca.wa.gov.au/catalogue/api/records/?format=json&application__name=sss")
KMI_URL = os.environ.get("KMI_URL", "https://kmi.dbca.wa.gov.au/geoserver")
KMI_WFS_URL = f"{KMI_URL}/wfs"
KMI_WFS_URL = f"{KMI_URL}/ows"
KMI_WMTS_URL = f"{KMI_URL}/public/gwc/service/wmts"
BFRS_URL = os.environ.get("BFRS_URL", "https://bfrs.dbca.wa.gov.au/api/v1/profile/?format=json")
AUTH2_URL = os.environ.get("AUTH2_URL", "https://auth2.dbca.wa.gov.au/healthcheck")
Expand Down

0 comments on commit b44272c

Please sign in to comment.