"""
runmacs
=======
This is the runmacs python package, which is used to work with data
from the Munich Aerosol Cloud Scanner.
Send comments to:
Florian Ewald, florian.ewald@campus.lmu.de
"""
__version__ = '0.1'
import sys
15 ↛ 18line 15 didn't jump to line 18, because the condition on line 15 was never falseif sys.byteorder == 'little':
byte_order = 0 # little endian
else:
byte_order = 1 # big endian
BSQ = 0
BIL = 1
BIP = 2
SWIR_ID = '410043'
VNIR_ID = '550008'
SWIR_SHUTTER_ID = 'SP' + SWIR_ID + 'A'
VNIR_SHUTTER_ID = 'SP' + VNIR_ID + 'A'
SWIR_DYNR = 16384.
VNIR_DYNR = 4096.
SWIR_SPEC_OFFSF = 1.2
VNIR_SPEC_OFFSF = 1.0
RGB_BANDS = [323, 206, 94]
|