python-awips/awips/test/dafTests/params.py

24 lines
539 B
Python
Raw Permalink Normal View History

2018-09-05 15:52:38 -06:00
#
# Site-specific parameters for DAF tests
#
# SOFTWARE HISTORY
#
# Date Ticket# Engineer Description
# ------------ ---------- ----------- --------------------------
# 12/07/16 5981 tgurney Initial creation
# 12/15/16 5981 tgurney Add ENVELOPE
#
#
2018-10-16 12:23:10 -06:00
from shapely.geometry import box
2018-09-05 15:52:38 -06:00
AIRPORT = 'OMA'
OBS_STATION = 'KOMA'
SITE_ID = 'OAX'
STATION_ID = '72558'
RADAR = 'KOAX'
SAMPLE_AREA = (-97.0, 41.0, -96.0, 42.0)
2018-09-06 12:11:36 -06:00
ENVELOPE = box(*SAMPLE_AREA)