Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

""" 

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]