Merge "Omaha #3405 Convert airep and pirep to DAF. Extract common code. Update acars to use common" into omaha_14.4.1
Former-commit-id: 9b96e7075b95fb68cda21d03571e56bf4ec53a2e
This commit is contained in:
commit
40a1936b20
5 changed files with 690 additions and 350 deletions
|
@ -33,10 +33,12 @@
|
||||||
# ------------ ---------- ----------- --------------------------
|
# ------------ ---------- ----------- --------------------------
|
||||||
# 07/23/2014 3392 nabowle Initial modification. Replaces UEngine with DAF.
|
# 07/23/2014 3392 nabowle Initial modification. Replaces UEngine with DAF.
|
||||||
# 07/28/2014 3392 nabowle Strip tail and receiver to match original formatting.
|
# 07/28/2014 3392 nabowle Strip tail and receiver to match original formatting.
|
||||||
|
# 09/04/2014 3405 nabowle NO_DATA and date to string extracted to a2dafcommon
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
import a2dafcommon
|
||||||
import argparse
|
import argparse
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -58,9 +60,6 @@ def get_args():
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
# Values used to indicate no data.
|
|
||||||
NO_DATA = [None, "None", -9999, -9999.0, "-9999", "-9999.0", ""]
|
|
||||||
|
|
||||||
user_args = get_args()
|
user_args = get_args()
|
||||||
|
|
||||||
# Set the host in the DataAcessLayer if supplied
|
# Set the host in the DataAcessLayer if supplied
|
||||||
|
@ -94,7 +93,7 @@ def main():
|
||||||
|
|
||||||
for geoData in geometries:
|
for geoData in geometries:
|
||||||
mytail = geoData.getString("tailNumber")
|
mytail = geoData.getString("tailNumber")
|
||||||
if mytail in NO_DATA:
|
if a2dafcommon.is_no_data(mytail):
|
||||||
mytail = ""
|
mytail = ""
|
||||||
else:
|
else:
|
||||||
mytail = mytail.strip()
|
mytail = mytail.strip()
|
||||||
|
@ -103,75 +102,75 @@ def main():
|
||||||
if mytime == None:
|
if mytime == None:
|
||||||
continue
|
continue
|
||||||
#2014-07-16 00:00:00 (0) => 2014-07-16_00:00:00
|
#2014-07-16 00:00:00 (0) => 2014-07-16_00:00:00
|
||||||
mytime = str(mytime)[0:19].replace(" ","_")
|
mytime = a2dafcommon.datatime_to_string(mytime)
|
||||||
|
|
||||||
geo = geoData.getGeometry()
|
geo = geoData.getGeometry()
|
||||||
if geo == None:
|
if geo == None:
|
||||||
continue
|
continue
|
||||||
mylon = geo.x
|
mylon = geo.x
|
||||||
mylat = geo.y
|
mylat = geo.y
|
||||||
if (mylat in NO_DATA or mylon in NO_DATA):
|
if a2dafcommon.is_no_data(mylat) or a2dafcommon.is_no_data(mylon):
|
||||||
continue
|
continue
|
||||||
mylat = "%.4f"%float(mylat)
|
mylat = "%.4f"%float(mylat)
|
||||||
mylon = "%.4f"%float(mylon)
|
mylon = "%.4f"%float(mylon)
|
||||||
|
|
||||||
myrec = geoData.getString("receiver")
|
myrec = geoData.getString("receiver")
|
||||||
if myrec in NO_DATA:
|
if a2dafcommon.is_no_data(myrec):
|
||||||
myrec = ""
|
myrec = ""
|
||||||
else:
|
else:
|
||||||
myrec = myrec.strip()
|
myrec = myrec.strip()
|
||||||
|
|
||||||
mypres = geoData.getNumber("pressure")
|
mypres = geoData.getNumber("pressure")
|
||||||
if mypres in NO_DATA:
|
if a2dafcommon.is_no_data(mypres):
|
||||||
mypres = "1e37"
|
mypres = "1e37"
|
||||||
else :
|
else :
|
||||||
mypres = "%.0f"%mypres
|
mypres = "%.0f"%mypres
|
||||||
|
|
||||||
myphs = geoData.getString("flightPhase")
|
myphs = geoData.getString("flightPhase")
|
||||||
if myphs in NO_DATA:
|
if a2dafcommon.is_no_data(myphs):
|
||||||
myphs = "7"
|
myphs = "7"
|
||||||
else :
|
else :
|
||||||
myphs = "%d"%int(myphs)
|
myphs = "%d"%int(myphs)
|
||||||
|
|
||||||
myrol = geoData.getString("rollAngleQuality")
|
myrol = geoData.getString("rollAngleQuality")
|
||||||
if myrol in NO_DATA:
|
if a2dafcommon.is_no_data(myrol):
|
||||||
myrol = "3"
|
myrol = "3"
|
||||||
else :
|
else :
|
||||||
myrol = "%d"%int(myrol)
|
myrol = "%d"%int(myrol)
|
||||||
|
|
||||||
mytemp = geoData.getNumber("temp")
|
mytemp = geoData.getNumber("temp")
|
||||||
if mytemp in NO_DATA:
|
if a2dafcommon.is_no_data(mytemp):
|
||||||
mytemp = "1e37"
|
mytemp = "1e37"
|
||||||
else :
|
else :
|
||||||
mytemp = "%.1f"%mytemp
|
mytemp = "%.1f"%mytemp
|
||||||
|
|
||||||
mydir = geoData.getString("windDirection")
|
mydir = geoData.getString("windDirection")
|
||||||
if mydir in NO_DATA:
|
if a2dafcommon.is_no_data(mydir):
|
||||||
mydir = "1e37"
|
mydir = "1e37"
|
||||||
else :
|
else :
|
||||||
mydir = "%d"%int(mydir)
|
mydir = "%d"%int(mydir)
|
||||||
|
|
||||||
myspd = geoData.getNumber("windSpeed")
|
myspd = geoData.getNumber("windSpeed")
|
||||||
if myspd in NO_DATA:
|
if a2dafcommon.is_no_data(myspd):
|
||||||
myspd = "1e37"
|
myspd = "1e37"
|
||||||
else :
|
else :
|
||||||
myspd = "%.1f"%myspd
|
myspd = "%.1f"%myspd
|
||||||
|
|
||||||
myhum = geoData.getNumber("humidity")
|
myhum = geoData.getNumber("humidity")
|
||||||
if myhum in NO_DATA:
|
if a2dafcommon.is_no_data(myhum):
|
||||||
myhum = "1e37"
|
myhum = "1e37"
|
||||||
else :
|
else :
|
||||||
myhum = "%.0f"%myhum
|
myhum = "%.0f"%myhum
|
||||||
|
|
||||||
mymix = geoData.getNumber("mixingRatio")
|
mymix = geoData.getNumber("mixingRatio")
|
||||||
if mymix in NO_DATA:
|
if a2dafcommon.is_no_data(mymix):
|
||||||
mymix = "1e37"
|
mymix = "1e37"
|
||||||
else :
|
else :
|
||||||
mymix = "%.2f"%mymix
|
mymix = "%.2f"%mymix
|
||||||
|
|
||||||
# Icing was commented out of the uengine version
|
# Icing was commented out of the uengine version
|
||||||
# myicg = geoData.getString("icing")
|
# myicg = geoData.getString("icing")
|
||||||
# if myicg in NO_DATA:
|
# if a2dafcommon.is_no_data(myicg):
|
||||||
# myicg = "1e37"
|
# myicg = "1e37"
|
||||||
# else :
|
# else :
|
||||||
# myicg = "%d"%int(myicg)
|
# myicg = "%d"%int(myicg)
|
||||||
|
|
|
@ -1,4 +1,24 @@
|
||||||
#!/bin/csh
|
#!/bin/csh
|
||||||
|
##
|
||||||
|
# This software was developed and / or modified by Raytheon Company,
|
||||||
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
||||||
|
#
|
||||||
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
||||||
|
# This software product contains export-restricted data whose
|
||||||
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
||||||
|
# to non-U.S. persons whether in the United States or abroad requires
|
||||||
|
# an export license or other authorization.
|
||||||
|
#
|
||||||
|
# Contractor Name: Raytheon Company
|
||||||
|
# Contractor Address: 6825 Pine Street, Suite 340
|
||||||
|
# Mail Stop B8
|
||||||
|
# Omaha, NE 68106
|
||||||
|
# 402.291.0100
|
||||||
|
#
|
||||||
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
||||||
|
# further licensing information.
|
||||||
|
##
|
||||||
|
|
||||||
#
|
#
|
||||||
# A script wrapper around a UEngine call that is meant to get all available
|
# A script wrapper around a UEngine call that is meant to get all available
|
||||||
# maritime data in the A-II database over a specified range of times.
|
# maritime data in the A-II database over a specified range of times.
|
||||||
|
@ -14,7 +34,8 @@
|
||||||
# The literal p flag is optional. The p flag means preserve
|
# The literal p flag is optional. The p flag means preserve
|
||||||
# the final version of the python submitted to the UEngine instead of
|
# the final version of the python submitted to the UEngine instead of
|
||||||
# cleaning it up. The path to the finalized python is /tmp/a2aircraftNNNNN.py
|
# cleaning it up. The path to the finalized python is /tmp/a2aircraftNNNNN.py
|
||||||
# where NNNNN is a unix process id.
|
# where NNNNN is a unix process id. This flag does nothing when using the DAF
|
||||||
|
# version.
|
||||||
#
|
#
|
||||||
# The optional literal t mean change some of the ascii phenomena descriptions
|
# The optional literal t mean change some of the ascii phenomena descriptions
|
||||||
# for pireps into codes suitable for D-2D format aircraft data files.
|
# for pireps into codes suitable for D-2D format aircraft data files.
|
||||||
|
@ -32,6 +53,16 @@
|
||||||
# Asterisk (*) means variable that does not directly correspond to a
|
# Asterisk (*) means variable that does not directly correspond to a
|
||||||
# variable in the D-2D format aircraft data files.
|
# variable in the D-2D format aircraft data files.
|
||||||
#
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# SOFTWARE HISTORY
|
||||||
|
#
|
||||||
|
# Date Ticket# Engineer Description
|
||||||
|
# ------------ ---------- ----------- --------------------------
|
||||||
|
# 09/02/2014 3405 nabowle Initial modification to better handle daf.
|
||||||
|
#
|
||||||
|
#
|
||||||
set rmpy = yes
|
set rmpy = yes
|
||||||
set typcod = qwertyuiop
|
set typcod = qwertyuiop
|
||||||
if ( "$1" == "t" ) then
|
if ( "$1" == "t" ) then
|
||||||
|
@ -90,6 +121,10 @@ endif
|
||||||
grep DataAccessLayer $stubpy >& /dev/null
|
grep DataAccessLayer $stubpy >& /dev/null
|
||||||
if ( $status == 0 ) then
|
if ( $status == 0 ) then
|
||||||
set method = "daf"
|
set method = "daf"
|
||||||
|
if ( "$repType" != "PIREP" ) then
|
||||||
|
/awips2/python/bin/python $stubpy -b "$1 $2" -e "$3 $4" --match-legacy
|
||||||
|
# /awips2/python/bin/python $stubpy -b "$1 $2" -e "$3 $4"
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
#
|
#
|
||||||
# Set up the environment we need to run the UEngine.
|
# Set up the environment we need to run the UEngine.
|
||||||
|
@ -108,24 +143,22 @@ else
|
||||||
exit
|
exit
|
||||||
endif
|
endif
|
||||||
source $ueenv
|
source $ueenv
|
||||||
endif
|
|
||||||
#
|
#
|
||||||
set specpy = /tmp/a2airep${$}.py
|
set specpy = /tmp/a2airep${$}.py
|
||||||
rm -rf $specpy >& /dev/null
|
rm -rf $specpy >& /dev/null
|
||||||
touch $specpy
|
touch $specpy
|
||||||
chmod 775 $specpy
|
chmod 775 $specpy
|
||||||
cat $stubpy | sed "s/BBBBB/$1 $2/g" | sed "s/EEEEE/$3 $4/g" > $specpy
|
cat $stubpy | sed "s/BBBBB/$1 $2/g" | sed "s/EEEEE/$3 $4/g" > $specpy
|
||||||
if ( "$repType" != "PIREP" ) then
|
if ( "$repType" != "PIREP" ) then
|
||||||
if ( "$method" == "daf" ) then
|
|
||||||
/awips2/python/bin/python $specpy
|
|
||||||
else
|
|
||||||
set here = `pwd`
|
set here = `pwd`
|
||||||
cd $UE_BIN_PATH
|
cd $UE_BIN_PATH
|
||||||
( uengine -r python < $specpy ) | grep -v '<' | grep -v Response
|
( uengine -r python < $specpy ) | grep -v '<' | grep -v Response
|
||||||
cd $here
|
cd $here
|
||||||
endif
|
endif
|
||||||
|
if ( "$rmpy" == "yes" ) rm -rf $specpy >& /dev/null
|
||||||
endif
|
endif
|
||||||
if ( "$rmpy" == "yes" ) rm -rf $specpy >& /dev/null
|
|
||||||
#
|
#
|
||||||
# Locate python stub that we will modify to create the final python logic.
|
# Locate python stub that we will modify to create the final python logic.
|
||||||
#
|
#
|
||||||
|
@ -147,40 +180,49 @@ endif
|
||||||
grep DataAccessLayer $stubpy >& /dev/null
|
grep DataAccessLayer $stubpy >& /dev/null
|
||||||
if ( $status == 0 ) then
|
if ( $status == 0 ) then
|
||||||
set method = "daf"
|
set method = "daf"
|
||||||
else if ( "$method" == "daf" ) then
|
if ( "$repType" != "AIREP" ) then
|
||||||
#
|
# By default, match the legacy output.
|
||||||
# Set up the environment we need to run the UEngine.
|
set pyargs = "--match-legacy"
|
||||||
#
|
# set pyargs = ""
|
||||||
set method = "uengine"
|
if ( "$typcod" != "qwertyuiop" ) then
|
||||||
if ( -e ./UEngine.cshsrc ) then
|
set pyargs = "$pyargs -t"
|
||||||
set ueenv = ./UEngine.cshsrc
|
endif
|
||||||
else if ( -e $mydir/UEngine.cshsrc ) then
|
|
||||||
set ueenv = $mydir/UEngine.cshsrc
|
/awips2/python/bin/python $stubpy -b "$1 $2" -e "$3 $4" $pyargs
|
||||||
else if ( -e $FXA_HOME/src/dm/point/UEngine.cshsrc ) then
|
|
||||||
set ueenv = $FXA_HOME/src/dm/point/UEngine.cshsrc
|
|
||||||
else if ( -e $FXA_HOME/bin/UEngine.cshsrc ) then
|
|
||||||
set ueenv = $FXA_HOME/bin/UEngine.cshsrc
|
|
||||||
else
|
|
||||||
bash -c "echo could not find UEngine.cshsrc 1>&2"
|
|
||||||
exit
|
|
||||||
endif
|
endif
|
||||||
source $ueenv
|
else
|
||||||
endif
|
|
||||||
#
|
|
||||||
set specpy = /tmp/a2pirep${$}.py
|
|
||||||
rm -rf $specpy >& /dev/null
|
|
||||||
touch $specpy
|
|
||||||
chmod 775 $specpy
|
|
||||||
cat $stubpy | sed "s/BBBBB/$1 $2/g" | sed "s/EEEEE/$3 $4/g" | \
|
|
||||||
grep -v "$typcod" > $specpy
|
|
||||||
cd $UE_BIN_PATH
|
|
||||||
if ( "$repType" != "AIREP" ) then
|
|
||||||
if ( "$method" == "daf" ) then
|
if ( "$method" == "daf" ) then
|
||||||
/awips2/python/bin/python $specpy
|
#
|
||||||
else
|
# Set up the environment we need to run the UEngine.
|
||||||
cd $UE_BIN_PATH
|
#
|
||||||
|
set method = "uengine"
|
||||||
|
if ( -e ./UEngine.cshsrc ) then
|
||||||
|
set ueenv = ./UEngine.cshsrc
|
||||||
|
else if ( -e $mydir/UEngine.cshsrc ) then
|
||||||
|
set ueenv = $mydir/UEngine.cshsrc
|
||||||
|
else if ( -e $FXA_HOME/src/dm/point/UEngine.cshsrc ) then
|
||||||
|
set ueenv = $FXA_HOME/src/dm/point/UEngine.cshsrc
|
||||||
|
else if ( -e $FXA_HOME/bin/UEngine.cshsrc ) then
|
||||||
|
set ueenv = $FXA_HOME/bin/UEngine.cshsrc
|
||||||
|
else
|
||||||
|
bash -c "echo could not find UEngine.cshsrc 1>&2"
|
||||||
|
exit
|
||||||
|
endif
|
||||||
|
source $ueenv
|
||||||
|
endif
|
||||||
|
|
||||||
|
#
|
||||||
|
set specpy = /tmp/a2pirep${$}.py
|
||||||
|
rm -rf $specpy >& /dev/null
|
||||||
|
touch $specpy
|
||||||
|
chmod 775 $specpy
|
||||||
|
cat $stubpy | sed "s/BBBBB/$1 $2/g" | sed "s/EEEEE/$3 $4/g" | \
|
||||||
|
grep -v "$typcod" > $specpy
|
||||||
|
cd $UE_BIN_PATH
|
||||||
|
if ( "$repType" != "AIREP" ) then
|
||||||
|
cd $UE_BIN_PATH
|
||||||
( uengine -r python < $specpy ) | grep -v '<' | grep -v Response
|
( uengine -r python < $specpy ) | grep -v '<' | grep -v Response
|
||||||
endif
|
endif
|
||||||
|
if ( "$rmpy" == "yes" ) rm -rf $specpy >& /dev/null
|
||||||
endif
|
endif
|
||||||
if ( "$rmpy" == "yes" ) rm -rf $specpy >& /dev/null
|
|
||||||
#
|
|
||||||
|
|
|
@ -1,78 +1,168 @@
|
||||||
from com.raytheon.uf.common.message.response import ResponseMessageGeneric
|
##
|
||||||
import BaseRequest
|
# This software was developed and / or modified by Raytheon Company,
|
||||||
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
||||||
|
#
|
||||||
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
||||||
|
# This software product contains export-restricted data whose
|
||||||
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
||||||
|
# to non-U.S. persons whether in the United States or abroad requires
|
||||||
|
# an export license or other authorization.
|
||||||
|
#
|
||||||
|
# Contractor Name: Raytheon Company
|
||||||
|
# Contractor Address: 6825 Pine Street, Suite 340
|
||||||
|
# Mail Stop B8
|
||||||
|
# Omaha, NE 68106
|
||||||
|
# 402.291.0100
|
||||||
|
#
|
||||||
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
||||||
|
# further licensing information.
|
||||||
|
##
|
||||||
|
|
||||||
br = BaseRequest.BaseRequest( "airep" )
|
|
||||||
br.addParameter("dataTime","BBBBB:00.0",">=")
|
|
||||||
br.addParameter("dataTime","EEEEE:59.9","<=")
|
|
||||||
|
|
||||||
# ArrayList of ResponseMessageGeneric
|
#
|
||||||
alrmg = br.execute()
|
# Gets all available pirep data in the A-II database over a specified range of
|
||||||
nnn = alrmg.size()
|
# times. The data is output to stdout as ASCII. Each line is one record.
|
||||||
if nnn == 0 :
|
# The individual data items are comma delimited.
|
||||||
return ResponseMessageGeneric("No data available.")
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# SOFTWARE HISTORY
|
||||||
|
#
|
||||||
|
# Date Ticket# Engineer Description
|
||||||
|
# ------------ ---------- ----------- --------------------------
|
||||||
|
# 08/25/2014 3405 nabowle Initial modification. Replaces UEngine with DAF.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
# ResponseMessageGeneric payload
|
|
||||||
msg = "\n"
|
|
||||||
i = 0
|
|
||||||
while i < nnn :
|
|
||||||
oneRec = alrmg.get(i).getContents()
|
|
||||||
i += 1
|
|
||||||
mytime = oneRec.getDataURI().split('/',4)[2].split('.',2)[0]
|
|
||||||
if mytime == "" or mytime == "None" :
|
|
||||||
continue
|
|
||||||
myloc = str(oneRec.getLocation().getLocation()).split(' ',4)
|
|
||||||
mylat = myloc[2].split(')',2)[0]
|
|
||||||
if mylat == "" or mylat == "None" :
|
|
||||||
continue
|
|
||||||
try:
|
|
||||||
mylat = "%.4f"%float(mylat)
|
|
||||||
except:
|
|
||||||
continue
|
|
||||||
mylon = myloc[1].split('(',2)[1]
|
|
||||||
if mylon == "" or mylon == "None" :
|
|
||||||
continue
|
|
||||||
try:
|
|
||||||
mylon = "%.4f"%float(mylon)
|
|
||||||
except:
|
|
||||||
continue
|
|
||||||
myflvl = str(oneRec.getFlightLevel())
|
|
||||||
if myflvl == "" or myflvl == "None" :
|
|
||||||
myflvl = "1e37"
|
|
||||||
else :
|
|
||||||
myflvl = "%d"%int(myflvl)
|
|
||||||
mytemp = str(oneRec.getTemp())
|
|
||||||
if mytemp == "" or mytemp == "None" :
|
|
||||||
mytemp = "1e37"
|
|
||||||
else :
|
|
||||||
mytemp = "%.1f"%float(mytemp)
|
|
||||||
mydir = str(oneRec.getWindDirection())
|
|
||||||
if mydir == "" or mydir == "None" :
|
|
||||||
mydir = "1e37"
|
|
||||||
else :
|
|
||||||
mydir = "%d"%int(mydir)
|
|
||||||
myspd = str(oneRec.getWindSpeed())
|
|
||||||
if myspd == "" or myspd == "None" :
|
|
||||||
myspd = "1e37"
|
|
||||||
else :
|
|
||||||
myspd = "%.1f"%float(myspd)
|
|
||||||
myfwx = str(oneRec.getFlightWeather())
|
|
||||||
if myfwx == "" or myfwx == "None" :
|
|
||||||
myfwx = "-1"
|
|
||||||
else :
|
|
||||||
myfwx = "%d"%int(myfwx)
|
|
||||||
myhaz = str(oneRec.getFlightHazard())
|
|
||||||
if myhaz == "" or myhaz == "None" :
|
|
||||||
myhaz = "-1"
|
|
||||||
else :
|
|
||||||
myhaz = "%d"%int(myhaz)
|
|
||||||
mycond = str(oneRec.getFlightConditions())
|
|
||||||
if mycond == "" or mycond == "None" :
|
|
||||||
mycond = "-1"
|
|
||||||
else :
|
|
||||||
mycond = "%d"%int(mycond)
|
|
||||||
msg += mylat + "|" + mylon + "," + mytime + "," + myflvl + ",AIREP,," + \
|
|
||||||
mytemp + "," + mydir + "," + myspd + ",1e37," + \
|
|
||||||
myfwx + "," + myhaz + "," + mycond + ",,0,,,,0,,,,,0,,,,\n"
|
|
||||||
|
|
||||||
# pass single RMG back to the uengine.
|
import a2dafcommon
|
||||||
return ResponseMessageGeneric(msg)
|
import argparse
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from datetime import datetime
|
||||||
|
from ufpy.dataaccess import DataAccessLayer
|
||||||
|
from dynamicserialize.dstypes.com.raytheon.uf.common.time import TimeRange
|
||||||
|
|
||||||
|
|
||||||
|
def get_args():
|
||||||
|
parser = argparse.ArgumentParser(conflict_handler="resolve")
|
||||||
|
parser.add_argument("-h", action="store", dest="host",
|
||||||
|
help="EDEX server hostname (optional)",
|
||||||
|
metavar="hostname")
|
||||||
|
parser.add_argument("-b", action="store", dest="start",
|
||||||
|
help="The start of the time range in YYYY-MM-DD HH:MM",
|
||||||
|
metavar="start")
|
||||||
|
parser.add_argument("-e", action="store", dest="end",
|
||||||
|
help="The end of the time range in YYYY-MM-DD HH:MM",
|
||||||
|
metavar="end")
|
||||||
|
parser.add_argument("--match-legacy", action="store_true", dest="match",
|
||||||
|
help="If set, the legacy script output will be matched.",
|
||||||
|
default=False)
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
user_args = get_args()
|
||||||
|
|
||||||
|
if user_args.host:
|
||||||
|
DataAccessLayer.changeEDEXHost(user_args.host)
|
||||||
|
|
||||||
|
start = user_args.start
|
||||||
|
end = user_args.end
|
||||||
|
|
||||||
|
if not start or not end:
|
||||||
|
print >> sys.stderr, "Start or End date not provided"
|
||||||
|
return
|
||||||
|
|
||||||
|
beginRange = datetime.strptime( start + ":00.0", "%Y-%m-%d %H:%M:%S.%f")
|
||||||
|
endRange = datetime.strptime( end + ":59.9", "%Y-%m-%d %H:%M:%S.%f")
|
||||||
|
timerange = TimeRange(beginRange, endRange)
|
||||||
|
|
||||||
|
req = DataAccessLayer.newDataRequest("airep")
|
||||||
|
req.setParameters("id", "flightLevel", "temp", "windDirection", "windSpeed",
|
||||||
|
"flightWeather", "flightHazard", "flightConditions")
|
||||||
|
geometries = DataAccessLayer.getGeometryData(req, timerange)
|
||||||
|
|
||||||
|
if not geometries :
|
||||||
|
# print "No data available."
|
||||||
|
return
|
||||||
|
|
||||||
|
msg = "";
|
||||||
|
|
||||||
|
geometries.sort(key=lambda geo: str(geo.getDataTime()))
|
||||||
|
for geoData in geometries :
|
||||||
|
mytime = geoData.getDataTime()
|
||||||
|
if not mytime:
|
||||||
|
continue
|
||||||
|
mytime = a2dafcommon.datatime_to_string(mytime)
|
||||||
|
|
||||||
|
geo = geoData.getGeometry()
|
||||||
|
if not geo:
|
||||||
|
continue
|
||||||
|
|
||||||
|
mylon = geo.x
|
||||||
|
mylat = geo.y
|
||||||
|
if a2dafcommon.is_no_data(mylat) or a2dafcommon.is_no_data(mylon):
|
||||||
|
continue
|
||||||
|
mylat = "%.4f"%mylat
|
||||||
|
mylon = "%.4f"%mylon
|
||||||
|
|
||||||
|
myflvl = geoData.getNumber("flightLevel")
|
||||||
|
if a2dafcommon.is_no_data(myflvl) :
|
||||||
|
myflvl = "1e37"
|
||||||
|
else :
|
||||||
|
myflvl = "%d"%myflvl
|
||||||
|
|
||||||
|
# Temp is not stored.
|
||||||
|
# mytemp = geoData.getString("temp")
|
||||||
|
# if a2dafcommon.is_no_data(mytemp) :
|
||||||
|
# mytemp = "1e37"
|
||||||
|
# else :
|
||||||
|
# mytemp = "%.1f"%float(mytemp)
|
||||||
|
mytemp = "1e37"
|
||||||
|
|
||||||
|
# Wind Direction is not stored.
|
||||||
|
# mydir = geoData.getString("windDirection")
|
||||||
|
# if a2dafcommon.is_no_data(mydir) :
|
||||||
|
# mydir = "1e37"
|
||||||
|
# else :
|
||||||
|
# mydir = "%d"%int(mydir)
|
||||||
|
mydir = "1e37"
|
||||||
|
|
||||||
|
myspd = geoData.getNumber("windSpeed")
|
||||||
|
if a2dafcommon.is_no_data(myspd) :
|
||||||
|
myspd = "1e37"
|
||||||
|
else :
|
||||||
|
myspd = "%.1f"%myspd
|
||||||
|
|
||||||
|
myfwx = geoData.getNumber("flightWeather")
|
||||||
|
if myfwx :
|
||||||
|
myfwx = "-1"
|
||||||
|
else :
|
||||||
|
myfwx = "%d"%myfwx
|
||||||
|
|
||||||
|
myhaz = geoData.getNumber("flightHazard")
|
||||||
|
if a2dafcommon.is_no_data(myhaz) :
|
||||||
|
myhaz = "-1"
|
||||||
|
else :
|
||||||
|
myhaz = "%d"%myhaz
|
||||||
|
|
||||||
|
mycond = geoData.getNumber("flightConditions")
|
||||||
|
if a2dafcommon.is_no_data(mycond) :
|
||||||
|
mycond = "-1"
|
||||||
|
else :
|
||||||
|
mycond = "%d"%mycond
|
||||||
|
|
||||||
|
if user_args.match:
|
||||||
|
# Wind Speed not returned to legacy script.
|
||||||
|
myspd = "1e37"
|
||||||
|
|
||||||
|
msg += mylat + "|" + mylon + "," + mytime + "," + myflvl + ",AIREP,," + \
|
||||||
|
mytemp + "," + mydir + "," + myspd + ",1e37," + \
|
||||||
|
myfwx + "," + myhaz + "," + mycond + ",,0,,,,0,,,,,0,,,,\n"
|
||||||
|
|
||||||
|
print msg.strip()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
|
|
@ -1,219 +1,385 @@
|
||||||
from com.raytheon.uf.common.message.response import ResponseMessageGeneric
|
##
|
||||||
import BaseRequest
|
# This software was developed and / or modified by Raytheon Company,
|
||||||
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
||||||
|
#
|
||||||
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
||||||
|
# This software product contains export-restricted data whose
|
||||||
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
||||||
|
# to non-U.S. persons whether in the United States or abroad requires
|
||||||
|
# an export license or other authorization.
|
||||||
|
#
|
||||||
|
# Contractor Name: Raytheon Company
|
||||||
|
# Contractor Address: 6825 Pine Street, Suite 340
|
||||||
|
# Mail Stop B8
|
||||||
|
# Omaha, NE 68106
|
||||||
|
# 402.291.0100
|
||||||
|
#
|
||||||
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
||||||
|
# further licensing information.
|
||||||
|
##
|
||||||
|
|
||||||
br = BaseRequest.BaseRequest( "pirep" )
|
|
||||||
br.addParameter("dataTime","BBBBB:00.0",">=")
|
|
||||||
br.addParameter("dataTime","EEEEE:59.9","<=")
|
|
||||||
|
|
||||||
# ArrayList of ResponseMessageGeneric
|
#
|
||||||
alrmg = br.execute()
|
# Gets all available pirep data in the A-II database over a specified time
|
||||||
nnn = alrmg.size()
|
# range. The data is output to stdout as ASCII. Each line is one record. The
|
||||||
if nnn == 0 :
|
# individual data items are comma delimited.
|
||||||
return ResponseMessageGeneric("No data available.")
|
#
|
||||||
typecode = 'yes'
|
# The legacy script does not retrieve any values not stored in the postgres db.
|
||||||
typecode = 'no'
|
# To compensate for this in side-by-side comparison, a --match-legacy flag is
|
||||||
|
# provided that will ignore these fields.
|
||||||
|
#
|
||||||
|
# SOFTWARE HISTORY
|
||||||
|
#
|
||||||
|
# Date Ticket# Engineer Description
|
||||||
|
# ------------ ---------- ----------- --------------------------
|
||||||
|
# 08/25/2014 3405 nabowle Initial modification. Replaces UEngine with DAF.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
# ResponseMessageGeneric payload
|
|
||||||
msg = "\n"
|
|
||||||
i = 0
|
|
||||||
while i < nnn :
|
|
||||||
oneRec = alrmg.get(i).getContents()
|
|
||||||
i += 1
|
|
||||||
mytime = oneRec.getDataURI().split('/',4)[2].split('.',2)[0]
|
|
||||||
if mytime == "" or mytime == "None" :
|
|
||||||
continue
|
|
||||||
myloc = str(oneRec.getLocation().getLocation()).split(' ',4)
|
|
||||||
mylat = myloc[2].split(')',2)[0]
|
|
||||||
if mylat == "" or mylat == "None" :
|
|
||||||
continue
|
|
||||||
try:
|
|
||||||
mylat = "%.4f"%float(mylat)
|
|
||||||
except:
|
|
||||||
continue
|
|
||||||
mylon = myloc[1].split('(',2)[1]
|
|
||||||
if mylon == "" or mylon == "None" :
|
|
||||||
continue
|
|
||||||
try:
|
|
||||||
mylon = "%.4f"%float(mylon)
|
|
||||||
except:
|
|
||||||
continue
|
|
||||||
myflvl = str(oneRec.getFlightLevel())
|
|
||||||
if myflvl == "" or myflvl == "None" :
|
|
||||||
myflvl = "1e37"
|
|
||||||
else :
|
|
||||||
myflvl = "%d"%int(myflvl)
|
|
||||||
mytemp = str(oneRec.getTemp())
|
|
||||||
if mytemp == "" or mytemp == "None" :
|
|
||||||
mytemp = "1e37"
|
|
||||||
else :
|
|
||||||
mytemp = "%.1f"%float(mytemp)
|
|
||||||
mydir = str(oneRec.getWindDirection())
|
|
||||||
if mydir == "" or mydir == "None" :
|
|
||||||
mydir = "1e37"
|
|
||||||
else :
|
|
||||||
mydir = "%d"%int(mydir)
|
|
||||||
myspd = str(oneRec.getWindSpeed())
|
|
||||||
if myspd == "" or myspd == "None" :
|
|
||||||
myspd = "1e37"
|
|
||||||
else :
|
|
||||||
myspd = "%.1f"%float(myspd)
|
|
||||||
myvis = str(oneRec.getHorzVisibility())
|
|
||||||
if myvis == "" or myvis == "None" :
|
|
||||||
myvis = "1e37"
|
|
||||||
else :
|
|
||||||
myvis = "%.1f"%float(myvis)
|
|
||||||
mycraft = str(oneRec.getAircraftType())
|
|
||||||
if mycraft == "None" :
|
|
||||||
mycraft = ""
|
|
||||||
mywx = str(oneRec.getWeatherGroup())
|
|
||||||
if mywx == "None" :
|
|
||||||
mywx = ""
|
|
||||||
cc = 0
|
|
||||||
cldBas = ""
|
|
||||||
cldTop = ""
|
|
||||||
cldVal = ""
|
|
||||||
ii = 0
|
|
||||||
icgBas = ""
|
|
||||||
icgTop = ""
|
|
||||||
icgTyp = ""
|
|
||||||
icgVal = ""
|
|
||||||
tt = 0
|
|
||||||
trbBas = ""
|
|
||||||
trbTop = ""
|
|
||||||
trbTyp = ""
|
|
||||||
trbVal = ""
|
|
||||||
for pld in oneRec.getAncPirepData().toArray():
|
|
||||||
sep = ""
|
|
||||||
ltyp = pld.getLayerType()
|
|
||||||
if ltyp == "" or ltyp == "None" :
|
|
||||||
continue
|
|
||||||
base = str(pld.getBaseLayerHeight())
|
|
||||||
if base == "" or base == "None" or base == "99999" :
|
|
||||||
base = "1e37"
|
|
||||||
else :
|
|
||||||
base = "%.0f"%float(base)
|
|
||||||
top = str(pld.getTopLayerHeight())
|
|
||||||
if top == "" or top == "None" or top == "99999" :
|
|
||||||
top = "1e37"
|
|
||||||
else :
|
|
||||||
top = "%.0f"%float(top)
|
|
||||||
dtyp = str(pld.getDataType())
|
|
||||||
if dtyp == "None" :
|
|
||||||
dtyp = ""
|
|
||||||
fval = str(pld.getFirstValue())
|
|
||||||
if fval == "None" :
|
|
||||||
fval = ""
|
|
||||||
sval = str(pld.getSecondValue())
|
|
||||||
if sval == "None" :
|
|
||||||
sval = ""
|
|
||||||
if ltyp == "CLOUD" :
|
|
||||||
if fval == "TOP" :
|
|
||||||
fval = ""
|
|
||||||
if sval == "TOP" :
|
|
||||||
sval = ""
|
|
||||||
if sval != "" :
|
|
||||||
fval += "-"+sval
|
|
||||||
if typecode == 'yes' :
|
|
||||||
if fval == "CLR" :
|
|
||||||
fval = "0"
|
|
||||||
elif fval == "OVC" :
|
|
||||||
fval = "8"
|
|
||||||
elif fval == "SCT" :
|
|
||||||
fval = "11"
|
|
||||||
elif fval == "BKN" :
|
|
||||||
fval = "12"
|
|
||||||
elif fval == "FEW" :
|
|
||||||
fval = "13"
|
|
||||||
else :
|
|
||||||
continue
|
|
||||||
if cldBas != "" :
|
|
||||||
sep = "|"
|
|
||||||
cldBas += sep+base
|
|
||||||
cldTop += sep+top
|
|
||||||
cldVal += sep+fval
|
|
||||||
cc += 1
|
|
||||||
elif ltyp == "ICING" :
|
|
||||||
if sval != "" :
|
|
||||||
fval += "-"+sval
|
|
||||||
if icgBas != "" :
|
|
||||||
sep = "|"
|
|
||||||
if typecode == 'yes' :
|
|
||||||
if dtyp == "RIME" :
|
|
||||||
dtyp = "1"
|
|
||||||
elif dtyp == "CLR" :
|
|
||||||
dtyp = "2"
|
|
||||||
elif dtyp == "MXD" :
|
|
||||||
dtyp = "3"
|
|
||||||
else :
|
|
||||||
dtyp = "-9999"
|
|
||||||
if fval == "NEG" :
|
|
||||||
fval = "0";
|
|
||||||
elif fval == "TRACE" :
|
|
||||||
fval = "1"
|
|
||||||
elif fval == "TRACE-LGT" :
|
|
||||||
fval = "2"
|
|
||||||
elif fval == "LGT" :
|
|
||||||
fval = "3"
|
|
||||||
elif fval == "LGT-MOD" :
|
|
||||||
fval = "4"
|
|
||||||
elif fval == "MOD" :
|
|
||||||
fval = "5"
|
|
||||||
elif fval == "MOD-SEV" :
|
|
||||||
fval = "7"
|
|
||||||
elif fval == "SEV" :
|
|
||||||
fval = "8"
|
|
||||||
else :
|
|
||||||
fval = "-9999"
|
|
||||||
if fval == "-9999" and dtyp == "-9999" :
|
|
||||||
continue
|
|
||||||
icgBas += sep+base
|
|
||||||
icgTop += sep+top
|
|
||||||
icgTyp += sep+dtyp
|
|
||||||
icgVal += sep+fval
|
|
||||||
ii += 1
|
|
||||||
elif ltyp == "TURBC" :
|
|
||||||
if sval != "" :
|
|
||||||
fval += "-"+sval
|
|
||||||
if typecode == 'yes' :
|
|
||||||
if dtyp == "CAT" :
|
|
||||||
dtyp = "1"
|
|
||||||
elif dtyp == "CHOP" :
|
|
||||||
dtyp = "2"
|
|
||||||
else :
|
|
||||||
dtyp = "-9999"
|
|
||||||
if fval == "NEG" :
|
|
||||||
fval = "0";
|
|
||||||
elif fval == "LGT" :
|
|
||||||
fval = "2"
|
|
||||||
elif fval == "LGT-MOD" :
|
|
||||||
fval = "3"
|
|
||||||
elif fval == "MOD" :
|
|
||||||
fval = "4"
|
|
||||||
elif fval == "MOD-SEV" :
|
|
||||||
fval = "5"
|
|
||||||
elif fval == "SEV" :
|
|
||||||
fval = "6"
|
|
||||||
elif fval == "EXTRM" :
|
|
||||||
fval = "8"
|
|
||||||
else :
|
|
||||||
fval = "-9999"
|
|
||||||
if fval == "-9999" and dtyp == "-9999" :
|
|
||||||
continue
|
|
||||||
if trbBas != "" :
|
|
||||||
sep = "|"
|
|
||||||
trbBas += sep+base
|
|
||||||
trbTop += sep+top
|
|
||||||
trbTyp += sep+dtyp
|
|
||||||
trbVal += sep+fval
|
|
||||||
tt += 1
|
|
||||||
msg += mylat + "|" + mylon + "," + mytime + "," + myflvl + ",PIREP," + \
|
|
||||||
mycraft + "," + mytemp + "," + mydir + "," + myspd + "," + \
|
|
||||||
myvis + ",-1,-1,-1," + mywx + "," + \
|
|
||||||
str(cc) + "," + cldBas + "," + cldTop + "," + cldVal + "," + \
|
|
||||||
str(ii) + "," + icgBas + "," + icgTop + "," + \
|
|
||||||
icgTyp + "," + icgVal + "," + \
|
|
||||||
str(tt) + "," + trbBas + "," + trbTop + "," + \
|
|
||||||
trbTyp + "," + trbVal + "\n"
|
|
||||||
|
|
||||||
# pass single RMG back to the uengine.
|
import a2dafcommon
|
||||||
return ResponseMessageGeneric(msg)
|
import argparse
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from datetime import datetime
|
||||||
|
from ufpy.dataaccess import DataAccessLayer
|
||||||
|
from dynamicserialize.dstypes.com.raytheon.uf.common.time import TimeRange
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def get_args():
|
||||||
|
parser = argparse.ArgumentParser(conflict_handler="resolve")
|
||||||
|
parser.add_argument("-h", action="store", dest="host",
|
||||||
|
help="EDEX server hostname (optional)",
|
||||||
|
metavar="hostname")
|
||||||
|
parser.add_argument("-b", action="store", dest="start",
|
||||||
|
help="The start of the time range in YYYY-MM-DD HH:MM",
|
||||||
|
metavar="start")
|
||||||
|
parser.add_argument("-e", action="store", dest="end",
|
||||||
|
help="The end of the time range in YYYY-MM-DD HH:MM",
|
||||||
|
metavar="end")
|
||||||
|
parser.add_argument("--match-legacy", action="store_true", dest="match",
|
||||||
|
help="If set, the legacy script output will be matched.",
|
||||||
|
default=False)
|
||||||
|
parser.add_argument("-t", action="store_true", dest="typecode",
|
||||||
|
help="If set, more type information is displayed.",
|
||||||
|
default=False)
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
MULTI_DIM_PARAMS = set(["hazardType",
|
||||||
|
"turbType", "turbBaseHeight", "turbTopHeight",
|
||||||
|
"iceType", "iceBaseHeight", "iceTopHeight",
|
||||||
|
"skyCover1", "skyCover2", "skyBaseHeight", "skyTopHeight"
|
||||||
|
])
|
||||||
|
|
||||||
|
user_args = get_args()
|
||||||
|
|
||||||
|
if user_args.host:
|
||||||
|
DataAccessLayer.changeEDEXHost(user_args.host)
|
||||||
|
|
||||||
|
start = user_args.start
|
||||||
|
end = user_args.end
|
||||||
|
|
||||||
|
if not start or not end:
|
||||||
|
print >> sys.stderr, "Start or End date not provided"
|
||||||
|
return
|
||||||
|
|
||||||
|
beginRange = datetime.strptime( start + ":00.0", "%Y-%m-%d %H:%M:%S.%f")
|
||||||
|
endRange = datetime.strptime( end + ":59.9", "%Y-%m-%d %H:%M:%S.%f")
|
||||||
|
timerange = TimeRange(beginRange, endRange)
|
||||||
|
|
||||||
|
req = DataAccessLayer.newDataRequest("pirep")
|
||||||
|
req.setParameters('id', 'flightLevel', 'temp', 'windDirection', 'windSpeed',
|
||||||
|
'horzVisibility', 'aircraftType', 'weatherGroup')
|
||||||
|
req.getParameters().extend(MULTI_DIM_PARAMS)
|
||||||
|
geometries = DataAccessLayer.getGeometryData(req, timerange)
|
||||||
|
|
||||||
|
if not geometries :
|
||||||
|
# print "No data available."
|
||||||
|
return
|
||||||
|
|
||||||
|
typecode = user_args.typecode
|
||||||
|
match = user_args.match
|
||||||
|
msg = ""
|
||||||
|
layerData = []
|
||||||
|
combinedGeos = []
|
||||||
|
for geoData in geometries :
|
||||||
|
# The DAF returns multi-dimensional parameters as separate results before
|
||||||
|
# the base result that contain the single-dimensional parameters.
|
||||||
|
# Because of the separation of parameters and known ordering of result
|
||||||
|
# types, we can easily figure out what each result is and correlate the
|
||||||
|
# ancillary data with the base data.
|
||||||
|
if set(geoData.getParameters()) & MULTI_DIM_PARAMS :
|
||||||
|
layerData.append(geoData)
|
||||||
|
continue
|
||||||
|
|
||||||
|
combinedGeos.append({"base":geoData, "layers":layerData})
|
||||||
|
layerData = []
|
||||||
|
|
||||||
|
combinedGeos.sort(key=lambda geoMap: str(geoMap['base'].getDataTime()))
|
||||||
|
|
||||||
|
for geoMap in combinedGeos :
|
||||||
|
geoData = geoMap['base']
|
||||||
|
layerData = geoMap['layers']
|
||||||
|
|
||||||
|
mytime = geoData.getDataTime()
|
||||||
|
if not mytime:
|
||||||
|
continue
|
||||||
|
mytime = mytime = a2dafcommon.datatime_to_string(mytime)
|
||||||
|
|
||||||
|
geo = geoData.getGeometry()
|
||||||
|
if not geo:
|
||||||
|
continue
|
||||||
|
|
||||||
|
mylon = geo.x
|
||||||
|
mylat = geo.y
|
||||||
|
if a2dafcommon.is_no_data(mylat) or a2dafcommon.is_no_data(mylon) :
|
||||||
|
continue
|
||||||
|
mylat = "%.4f"%mylat
|
||||||
|
mylon = "%.4f"%mylon
|
||||||
|
|
||||||
|
myflvl = geoData.getNumber("flightLevel")
|
||||||
|
if a2dafcommon.is_no_data(myflvl) :
|
||||||
|
myflvl = "1e37"
|
||||||
|
else :
|
||||||
|
myflvl = "%d"%myflvl
|
||||||
|
|
||||||
|
# Temp is not stored.
|
||||||
|
# mytemp = geoData.getNumber("temp")
|
||||||
|
# if a2dafcommon.is_no_data(mytemp) :
|
||||||
|
# mytemp = "1e37"
|
||||||
|
# else :
|
||||||
|
# mytemp = "%.1f"%float(mytemp)
|
||||||
|
mytemp = "1e37"
|
||||||
|
|
||||||
|
# Wind Direction is not stored.
|
||||||
|
# mydir = geoData.getString("windDirection")
|
||||||
|
# if a2dafcommon.is_no_data(mydir) :
|
||||||
|
# mydir = "1e37"
|
||||||
|
# else :
|
||||||
|
# mydir = "%d"%int(mydir)
|
||||||
|
mydir = "1e37"
|
||||||
|
|
||||||
|
myspd = geoData.getNumber("windSpeed")
|
||||||
|
if a2dafcommon.is_no_data(myspd) :
|
||||||
|
myspd = "1e37"
|
||||||
|
else :
|
||||||
|
myspd = "%.1f"%myspd
|
||||||
|
|
||||||
|
myvis = geoData.getNumber("horzVisibility")
|
||||||
|
if a2dafcommon.is_no_data(myvis) :
|
||||||
|
myvis = "1e37"
|
||||||
|
else :
|
||||||
|
myvis = "%.1f"%myvis
|
||||||
|
|
||||||
|
mycraft = geoData.getString("aircraftType")
|
||||||
|
if a2dafcommon.is_no_data(mycraft) :
|
||||||
|
mycraft = ""
|
||||||
|
|
||||||
|
mywx = geoData.getString("weatherGroup")
|
||||||
|
if a2dafcommon.is_no_data(mywx) :
|
||||||
|
mywx = ""
|
||||||
|
|
||||||
|
|
||||||
|
cc = 0
|
||||||
|
cldBas = ""
|
||||||
|
cldTop = ""
|
||||||
|
cldVal = ""
|
||||||
|
ii = 0
|
||||||
|
icgBas = ""
|
||||||
|
icgTop = ""
|
||||||
|
icgTyp = ""
|
||||||
|
icgVal = ""
|
||||||
|
tt = 0
|
||||||
|
trbBas = ""
|
||||||
|
trbTop = ""
|
||||||
|
trbTyp = ""
|
||||||
|
trbVal = ""
|
||||||
|
|
||||||
|
if match :
|
||||||
|
# Speed, Horizontal Visibility, aircraft type, and weather group are
|
||||||
|
# not returned to the legacy script. Flightlevel of -9999 is output
|
||||||
|
# as such instead of being replaced by "1e37"
|
||||||
|
myspd = "1e37"
|
||||||
|
myvis = "-9999998.0"
|
||||||
|
mycraft = ""
|
||||||
|
mywx = ""
|
||||||
|
if geoData.getNumber("flightLevel") == -9999:
|
||||||
|
myflvl = "-9999"
|
||||||
|
else :
|
||||||
|
for pld in layerData:
|
||||||
|
sep = ""
|
||||||
|
ltyp = pld.getString("hazardType")
|
||||||
|
if a2dafcommon.is_no_data(ltyp) :
|
||||||
|
continue
|
||||||
|
|
||||||
|
fval = pld.getString("skyCover1")
|
||||||
|
if fval == "None" :
|
||||||
|
fval = ""
|
||||||
|
|
||||||
|
sval = pld.getString("skyCover2")
|
||||||
|
if sval == "None" :
|
||||||
|
sval = ""
|
||||||
|
if ltyp == "CLOUD" :
|
||||||
|
if fval == "TOP" :
|
||||||
|
fval = ""
|
||||||
|
if sval == "TOP" :
|
||||||
|
sval = ""
|
||||||
|
if sval != "" :
|
||||||
|
fval += "-"+sval
|
||||||
|
if typecode :
|
||||||
|
if fval == "CLR" :
|
||||||
|
fval = "0"
|
||||||
|
elif fval == "OVC" :
|
||||||
|
fval = "8"
|
||||||
|
elif fval == "SCT" :
|
||||||
|
fval = "11"
|
||||||
|
elif fval == "BKN" :
|
||||||
|
fval = "12"
|
||||||
|
elif fval == "FEW" :
|
||||||
|
fval = "13"
|
||||||
|
else :
|
||||||
|
continue
|
||||||
|
if cldBas != "" :
|
||||||
|
sep = "|"
|
||||||
|
|
||||||
|
base = pld.getNumber("skyBaseHeight")
|
||||||
|
if a2dafcommon.is_no_data(base) or base == 99999 :
|
||||||
|
base = "1e37"
|
||||||
|
else :
|
||||||
|
base = "%.0f"%float(base)
|
||||||
|
|
||||||
|
top = pld.getNumber("skyTopHeight")
|
||||||
|
if a2dafcommon.is_no_data(top) or top == 99999 :
|
||||||
|
top = "1e37"
|
||||||
|
else :
|
||||||
|
top = "%.0f"%float(top)
|
||||||
|
|
||||||
|
cldBas += sep+base
|
||||||
|
cldTop += sep+top
|
||||||
|
cldVal += sep+fval
|
||||||
|
cc += 1
|
||||||
|
elif ltyp == "ICING" :
|
||||||
|
dtyp = pld.getString("iceType")
|
||||||
|
if a2dafcommon.is_no_data(dtyp) :
|
||||||
|
dtyp = ""
|
||||||
|
|
||||||
|
if sval != "" :
|
||||||
|
fval += "-"+sval
|
||||||
|
if icgBas != "" :
|
||||||
|
sep = "|"
|
||||||
|
if typecode :
|
||||||
|
if dtyp == "RIME" :
|
||||||
|
dtyp = "1"
|
||||||
|
elif dtyp == "CLR" :
|
||||||
|
dtyp = "2"
|
||||||
|
elif dtyp == "MXD" :
|
||||||
|
dtyp = "3"
|
||||||
|
else :
|
||||||
|
dtyp = "-9999"
|
||||||
|
if fval == "NEG" :
|
||||||
|
fval = "0";
|
||||||
|
elif fval == "TRACE" :
|
||||||
|
fval = "1"
|
||||||
|
elif fval == "TRACE-LGT" :
|
||||||
|
fval = "2"
|
||||||
|
elif fval == "LGT" :
|
||||||
|
fval = "3"
|
||||||
|
elif fval == "LGT-MOD" :
|
||||||
|
fval = "4"
|
||||||
|
elif fval == "MOD" :
|
||||||
|
fval = "5"
|
||||||
|
elif fval == "MOD-SEV" :
|
||||||
|
fval = "7"
|
||||||
|
elif fval == "SEV" :
|
||||||
|
fval = "8"
|
||||||
|
else :
|
||||||
|
fval = "-9999"
|
||||||
|
if fval == "-9999" and dtyp == "-9999" :
|
||||||
|
continue
|
||||||
|
|
||||||
|
base = pld.getNumber("iceBaseHeight")
|
||||||
|
if a2dafcommon.is_no_data(base) or base == 99999 :
|
||||||
|
base = "1e37"
|
||||||
|
else :
|
||||||
|
base = "%.0f"%float(base)
|
||||||
|
|
||||||
|
top = pld.getNumber("iceTopHeight")
|
||||||
|
if a2dafcommon.is_no_data(top) or top == 99999 :
|
||||||
|
top = "1e37"
|
||||||
|
else :
|
||||||
|
top = "%.0f"%float(top)
|
||||||
|
|
||||||
|
icgBas += sep+base
|
||||||
|
icgTop += sep+top
|
||||||
|
icgTyp += sep+dtyp
|
||||||
|
icgVal += sep+fval
|
||||||
|
ii += 1
|
||||||
|
elif ltyp == "TURBC" :
|
||||||
|
dtyp = pld.getString("turbType")
|
||||||
|
if a2dafcommon.is_no_data(dtyp) :
|
||||||
|
dtyp = ""
|
||||||
|
|
||||||
|
if sval != "" :
|
||||||
|
fval += "-"+sval
|
||||||
|
if typecode :
|
||||||
|
if dtyp == "CAT" :
|
||||||
|
dtyp = "1"
|
||||||
|
elif dtyp == "CHOP" :
|
||||||
|
dtyp = "2"
|
||||||
|
else :
|
||||||
|
dtyp = "-9999"
|
||||||
|
if fval == "NEG" :
|
||||||
|
fval = "0";
|
||||||
|
elif fval == "LGT" :
|
||||||
|
fval = "2"
|
||||||
|
elif fval == "LGT-MOD" :
|
||||||
|
fval = "3"
|
||||||
|
elif fval == "MOD" :
|
||||||
|
fval = "4"
|
||||||
|
elif fval == "MOD-SEV" :
|
||||||
|
fval = "5"
|
||||||
|
elif fval == "SEV" :
|
||||||
|
fval = "6"
|
||||||
|
elif fval == "EXTRM" :
|
||||||
|
fval = "8"
|
||||||
|
else :
|
||||||
|
fval = "-9999"
|
||||||
|
if fval == "-9999" and dtyp == "-9999" :
|
||||||
|
continue
|
||||||
|
if trbBas != "" :
|
||||||
|
sep = "|"
|
||||||
|
|
||||||
|
base = pld.getNumber("turbBaseHeight")
|
||||||
|
if a2dafcommon.is_no_data(base) or base == 99999 :
|
||||||
|
base = "1e37"
|
||||||
|
else :
|
||||||
|
base = "%.0f"%float(base)
|
||||||
|
|
||||||
|
top = pld.getNumber("turbTopHeight")
|
||||||
|
if a2dafcommon.is_no_data(top) or top == 99999 :
|
||||||
|
top = "1e37"
|
||||||
|
else :
|
||||||
|
top = "%.0f"%float(top)
|
||||||
|
|
||||||
|
trbBas += sep+base
|
||||||
|
trbTop += sep+top
|
||||||
|
trbTyp += sep+dtyp
|
||||||
|
trbVal += sep+fval
|
||||||
|
tt += 1
|
||||||
|
|
||||||
|
msg += mylat + "|" + mylon + "," + mytime + "," + myflvl + ",PIREP," + \
|
||||||
|
mycraft + "," + mytemp + "," + mydir + "," + myspd + "," + \
|
||||||
|
myvis + ",-1,-1,-1," + mywx + "," + \
|
||||||
|
str(cc) + "," + cldBas + "," + cldTop + "," + cldVal + "," + \
|
||||||
|
str(ii) + "," + icgBas + "," + icgTop + "," + \
|
||||||
|
icgTyp + "," + icgVal + "," + \
|
||||||
|
str(tt) + "," + trbBas + "," + trbTop + "," + \
|
||||||
|
trbTyp + "," + trbVal + "\n"
|
||||||
|
|
||||||
|
print msg.strip()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
|
43
pythonPackages/msaslaps/common/a2dafcommon.py
Normal file
43
pythonPackages/msaslaps/common/a2dafcommon.py
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
##
|
||||||
|
# This software was developed and / or modified by Raytheon Company,
|
||||||
|
# pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
||||||
|
#
|
||||||
|
# U.S. EXPORT CONTROLLED TECHNICAL DATA
|
||||||
|
# This software product contains export-restricted data whose
|
||||||
|
# export/transfer/disclosure is restricted by U.S. law. Dissemination
|
||||||
|
# to non-U.S. persons whether in the United States or abroad requires
|
||||||
|
# an export license or other authorization.
|
||||||
|
#
|
||||||
|
# Contractor Name: Raytheon Company
|
||||||
|
# Contractor Address: 6825 Pine Street, Suite 340
|
||||||
|
# Mail Stop B8
|
||||||
|
# Omaha, NE 68106
|
||||||
|
# 402.291.0100
|
||||||
|
#
|
||||||
|
# See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
||||||
|
# further licensing information.
|
||||||
|
##
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Common functionality for MSAS/LAPS scripts using the Data Acess Framework.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# SOFTWARE HISTORY
|
||||||
|
#
|
||||||
|
# Date Ticket# Engineer Description
|
||||||
|
# ------------ ---------- ----------- --------------------------
|
||||||
|
# 09/02/2014 3405 nabowle Initial creation.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
|
NO_DATA = [None, "None", -9999, -9999.0, "-9999", "-9999.0", ""]
|
||||||
|
|
||||||
|
def is_no_data(val):
|
||||||
|
return val in NO_DATA
|
||||||
|
|
||||||
|
|
||||||
|
def datatime_to_string(datatime):
|
||||||
|
return str(datatime)[0:19].replace(" ","_")
|
Loading…
Add table
Reference in a new issue