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

""" Data and functions related to the Landsat family of satellites 

""" 

from pathlib import Path 

 

import yaml 

 

_HERE = Path(__file__).parent 

 

 

def _load_data(f): 

with open(f) as src: 

return yaml.safe_load(src) 

 

 

LANDSAT_C01_QAQC_FILE = _HERE.joinpath('landsat_qaqc_c01.yml') 

LANDSAT_C01_QAQC_DATA = _load_data(LANDSAT_C01_QAQC_FILE)