mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-24 14:57:57 -05:00
22 lines
538 B
Python
22 lines
538 B
Python
from shapely.geometry import box
|
|
|
|
#
|
|
# 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
|
|
#
|
|
#
|
|
|
|
AIRPORT = 'OMA'
|
|
OBS_STATION = 'KOMA'
|
|
SITE_ID = 'OAX'
|
|
STATION_ID = '72558'
|
|
RADAR = 'KOAX'
|
|
SAMPLE_AREA = (-97.0, 41.0, -96.0, 42.0)
|
|
|
|
ENVELOPE = box(*SAMPLE_AREA)
|