Merge "Omaha #3392 Strip spaces from receiver and tailnumber to match original version" into omaha_14.4.1
Former-commit-id:a5f79dd194
[formerly4141c5a9eb
] [formerlyf6cf38a37b
[formerly 375d76ced1246b2ac6ee398082a88a9336a4ff10]] Former-commit-id:f6cf38a37b
Former-commit-id:e4349edca9
This commit is contained in:
commit
9f60ae53f9
1 changed files with 19 additions and 15 deletions
|
@ -31,8 +31,8 @@
|
|||
#
|
||||
# Date Ticket# Engineer Description
|
||||
# ------------ ---------- ----------- --------------------------
|
||||
# 07/23/2014 3392 nanbowle 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.
|
||||
#
|
||||
#
|
||||
|
||||
|
@ -96,6 +96,8 @@ def main():
|
|||
mytail = geoData.getString("tailNumber")
|
||||
if mytail in NO_DATA:
|
||||
mytail = ""
|
||||
else:
|
||||
mytail = mytail.strip()
|
||||
|
||||
mytime = geoData.getDataTime()
|
||||
if mytime == None:
|
||||
|
@ -116,6 +118,8 @@ def main():
|
|||
myrec = geoData.getString("receiver")
|
||||
if myrec in NO_DATA:
|
||||
myrec = ""
|
||||
else:
|
||||
myrec = myrec.strip()
|
||||
|
||||
mypres = geoData.getNumber("pressure")
|
||||
if mypres in NO_DATA:
|
||||
|
|
Loading…
Add table
Reference in a new issue