Skip to content

Commit 55f5800

Browse files
committed
Updating env.sh GIS endpoint
1 parent e2608a1 commit 55f5800

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

env_var.sh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
#!/bin/bash
2-
3-
###### Linux Commands ######
4-
export contact_name='Heather Pickering-Hilgers'
5-
export contact_email='heather.pickeringhilgers@state.co.us'
6-
export publisher='CDOT'
7-
export CDOT_GEOSPATIAL_API_BASE_URL='https://dtdapps.colorado.gov/server/rest/services/LRS/Routes_withDEC/MapServer/exts/CdotLrsAccessRounded2'
8-
export NAMESPACE_UUID='00000000-0000-0000-0000-000000000000'
9-
10-
###### Windows Commands ######
11-
# $env:contact_name='Heather Pickering-Hilgers'
12-
# $env:contact_email='heather.pickeringhilgers@state.co.us'
13-
# $env:publisher='CDOT'
14-
# $env:CDOT_GEOSPATIAL_API_BASE_URL='https://dtdapps.colorado.gov/server/rest/services/LRS/Routes_withDEC/MapServer/exts/CdotLrsAccessRounded2'
1+
#!/bin/bash
2+
3+
###### Linux Commands ######
4+
export contact_name='Heather Pickering-Hilgers'
5+
export contact_email='heather.pickeringhilgers@state.co.us'
6+
export publisher='CDOT'
7+
export CDOT_GEOSPATIAL_API_BASE_URL='https://dtdapps.codot.gov/server/rest/services/LRS/Routes_withDEC/MapServer/exts/CdotLrsAccessRounded2'
8+
export NAMESPACE_UUID='00000000-0000-0000-0000-000000000000'
9+
10+
###### Windows Commands ######
11+
# $env:contact_name='Heather Pickering-Hilgers'
12+
# $env:contact_email='heather.pickeringhilgers@state.co.us'
13+
# $env:publisher='CDOT'
14+
# $env:CDOT_GEOSPATIAL_API_BASE_URL='https://dtdapps.codot.gov/server/rest/services/LRS/Routes_withDEC/MapServer/exts/CdotLrsAccessRounded2'
1515
# $env:NAMESPACE_UUID='00000000-0000-0000-0000-000000000000'

wzdx/tools/cdot_geospatial_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(
2626
Args:
2727
getCachedRequest ((url: str) => cached_response: str, optional): Optional method to enable custom caching. This method is called with a request url to retrieve the cached result.
2828
setCachedRequest ((url: str, response: str) => None, optional): Optional method to enable custom caching. This method is called with a request url and response to write the cached result.
29-
BASE_URL (str, optional): Optional override of GIS server base url, should end with CdotLrsAccessRounded. Defaults first to the env variable CDOT_GEOSPATIAL_API_BASE_URL, then to https://dtdapps.colorado.gov/server/rest/services/LRS/Routes_withDEC/MapServer/exts/CdotLrsAccessRounded.
29+
BASE_URL (str, optional): Optional override of GIS server base url, should end with CdotLrsAccessRounded. Defaults first to the env variable CDOT_GEOSPATIAL_API_BASE_URL, then to https://dtdapps.codot.gov/server/rest/services/LRS/Routes_withDEC/MapServer/exts/CdotLrsAccessRounded.
3030
"""
3131
self.getCachedRequest = getCachedRequest
3232
self.setCachedRequest = setCachedRequest

0 commit comments

Comments
 (0)