Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:8e80217e59
[formerly3360eb6c5f
] Former-commit-id:377dcd10b9
80 lines
2.5 KiB
Python
80 lines
2.5 KiB
Python
##
|
|
# 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.
|
|
##
|
|
|
|
import numpy
|
|
|
|
def execute(MIXLY):
|
|
#conversions used in awips1
|
|
|
|
#first transform data to pixel values in the colormap
|
|
|
|
#data 0-13 gets modified by y=112x/13 + 16
|
|
#the result is position in the colormap
|
|
#mask values above 13
|
|
result = numpy.ma.masked_greater(MIXLY, 13)
|
|
#transform unmasked values
|
|
result *= (112.0/13.0)
|
|
result += 16
|
|
#now convert into actual data values
|
|
#modified by y=0.0914286x - 1.46286
|
|
#result is the data value as calculated in awips1
|
|
result *= 0.0914286
|
|
result += -1.46286
|
|
#remove mask
|
|
result.mask = numpy.ma.nomask
|
|
|
|
#data 13-127 mapped to colormap position by y=56x/57+6568/57
|
|
#result is in range 128->240
|
|
result = numpy.ma.masked_less(result, 13)
|
|
result = numpy.ma.masked_greater(result, 127)
|
|
result *= (56.0/57.0)
|
|
result += (6568.0/57.0)
|
|
#map into values by y=0.801429x - 92.3429
|
|
result *= 0.801429
|
|
result += -92.3429
|
|
#remove mask
|
|
result.mask = numpy.ma.nomask
|
|
|
|
#data 128->255 mapped to colormap position by y=12x/127 + 29071/127
|
|
#result is in range 241->253
|
|
result = numpy.ma.masked_less(result, 128)
|
|
result = numpy.ma.masked_greater(result, 255)
|
|
result *= (12.0/127.0)
|
|
result += (29071.0/127.0)
|
|
#map into data range by y=0.801429x - 92.3429
|
|
result *= 0.801429
|
|
result += -92.3429
|
|
result.mask = numpy.ma.nomask
|
|
|
|
#fix any values that are very close to zero but negative
|
|
result = numpy.ma.masked_greater(result, 0)
|
|
result *= 0.0
|
|
result.mask = numpy.ma.nomask
|
|
|
|
return result
|
|
|
|
|
|
def main():
|
|
testin = numpy.array([[12.0,36,253,64,53,24,33],[253,254,112,29,42,1,55],[12,123,253,18,254,22,212]])
|
|
testout = execute(testin)
|
|
print(testout)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|