Skip to content
Snippets Groups Projects
Commit 2ae8613c authored by tomrink's avatar tomrink
Browse files

remove dead code

parent 7082bccd
No related branches found
No related tags found
No related merge requests found
import datetime
from datetime import timezone
import glob
import numpy as np
# from cartopy import *
from metpy import *
import h5py
from netCDF4 import Dataset
from aeolus.aeolus_amv import get_aeolus_time_dict
from aeolus.datasource import CLAVRx
......@@ -17,34 +13,6 @@ from util.util import bin_data_by, get_bin_ranges
import math
datapath = '/apollo/cloud/personal/stevew/IWW15/G16/fulldisk/CLAVRX'
datadirs = ['20190825', '20190826', '20190827', '20190828', '20190829', '20190830', '20190831', '20190901', '20190902', '20190903', '20190904', '20190905']
amv_hdr_list = ['lat', 'lon', 'tbox', 'sbox', 'spd', 'dir', 'pres', 'lowl', 'mspd', 'mdir',
'alb', 'corr', 'tmet', 'perr', 'qi', 'cqi', 'qif']
raob_hdr_list = ['pres', 'temp', 'dir', 'spd']
raob_spd_idx = raob_hdr_list.index('spd')
raob_dir_idx = raob_hdr_list.index('dir')
amv_lon_idx = amv_hdr_list.index('lon')
amv_lat_idx = amv_hdr_list.index('lat')
amv_pres_idx = amv_hdr_list.index('pres')
raob_pres_idx = raob_hdr_list.index('pres')
amv_spd_idx = amv_hdr_list.index('spd')
amv_dir_idx = amv_hdr_list.index('dir')
amv_prs_idx = amv_hdr_list.index('pres')
amv_qi_idx = amv_hdr_list.index('qi')
amv_cqi_idx = amv_hdr_list.index('cqi')
amv_qif_idx = amv_hdr_list.index('qif')
first_time = True
ftimes = []
flist = None
# H08 range we'll use for now
H08_lon_range = [64, 216] # 0, 360
H08_lat_range = [-70, 70]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment