In [1]:
# Embed plots in web page. No floating window.
%matplotlib inline
# svg increases resolution when you zoom in (Ctrl-+); png does not.
# Use svg format (scalable vector graphics) for plots in web page, not png
%config InlineBackend.figure_formats=['png']

In [2]:
#Copied from https://www.xormedia.com/natural-sort-order-with-zero-padding/

from sys import maxint
import re

# optional '-' to support negative numbers
_num_re = re.compile(r'-?\d+')
# number of chars in the largest possible int
_maxint_digits = len(str(maxint))
# format for zero padding positive integers
_zero_pad_int_fmt = '{{0:0{0}d}}'.format(_maxint_digits)
# / is 0 - 1, so that negative numbers will come before positive
_zero_pad_neg_int_fmt = '/{{0:0{0}d}}'.format(_maxint_digits)


def _zero_pad(match):
    n = int(match.group(0))
    # if n is negative, we'll use the negative format and flip the number using
    # maxint so that -2 comes before -1, ...
    return _zero_pad_int_fmt.format(n) \
        if n > -1 else _zero_pad_neg_int_fmt.format(n + maxint)

def zero_pad_numbers(s):
    return _num_re.sub(_zero_pad, s)

In [3]:
import matplotlib.pyplot as plt
from matplotlib.patches import Polygon, PathPatch, Patch
from matplotlib.collections import PatchCollection
from mpl_toolkits.basemap import Basemap
from datetime import datetime, timedelta
from glob import glob
from itertools import cycle
import sys, json, os
import numpy as np
from hagelslag.data import ModelOutput
from netCDF4 import Dataset
from mysavfig import mysavfig
plt.rcParams.update({'mathtext.default': 'regular'})

def read_geojson(filename):
    """
    Reads a geojson file created from an STObject and returns python data object.
    
    :param filename: Name of the geojson file
    :return: data
    """
    json_file = open(filename)
    data = json.load(json_file)
    json_file.close()

    return data
def load_json_tracks(path, run_date, member, model_format):
    storm_tracks = []
    search_str = path + run_date.strftime("%Y%m%d/") + member + "/" + model_format + "*.json"

    model_files = sorted(glob(search_str), key=zero_pad_numbers)
    if not model_files:
        print "search str=",search_str
        print "path=",path
        print "run_date=",run_date
        print "member=",member
        print "model_format=",model_format

    old_mtime = 0
    for model_file in model_files:
        # Check if modification time is earlier than previous file. 
        # This indicates an older run still cluttering the directory.
        mtime = os.path.getmtime(model_file)
        if mtime < old_mtime:
            print model_file, mtime, "was modified before", old_model_file, old_mtime
            print "an older run may be cluttering "+search_str
            sys.exit(0)
        storm_tracks.append(read_geojson(model_file))
        old_mtime = mtime
        old_model_file = model_file
    return storm_tracks

def add_basemap(ax):
    m = Basemap(resolution="i", # "c"< "l"< "i" <"h"
            llcrnrlon=-100.,
            urcrnrlon=-77.5,
            llcrnrlat=24.5,
            urcrnrlat=37.,
            projection='lcc', lat_1=32., lat_0=32., lon_0=-90, ax=ax)
    m.drawstates()
    m.drawcoastlines(linewidth=0.5)
    parallels = np.arange(0.,81.,1.)
    m.drawparallels(parallels,labels=[True,False,False,False],linewidth=0.5)
    meridians = np.arange(0.,351.,2.)
    m.drawmeridians(meridians,labels=[False,False,False,True],linewidth=0.5)
    return m


        
members = ["3km_pbl1","1km_on_3km_pbl1"]
model_format = "VSE"
ensemble_name = "VSE"

ncf = Dataset("/glade/p/work/ahijevyc/hagelslag/mapfiles/"+model_format+"_mask.nc")
landmask = ncf.variables["usa_mask"][:]
ncf.close()
model_path = "/glade/scratch/ahijevyc/"+ensemble_name+"/"
odir = "/glade/p/work/ahijevyc/hagelslag/out/"
#field = "MAX_UPDRAFT_HELICITY"
fields = ["UP_HELI_MAX03_16","UP_HELI_MAX03_50"]
fields = ["WSPD10MAX_16","WSPD10MAX_16"]
#field = "HAIL2D"
#field = "REFL_1KM_AGL"
pixel_thresh = 1

levels = [25,50,75,100,125,150,175,200,250,300,400]

dates = [datetime(2005, 1,13,12),
         datetime(2005,12,28,12),
         datetime(2006, 1,13,12),
         datetime(2007, 1, 4,12),
         datetime(2007, 1, 7,12),
         datetime(2007, 2,12,12),
         datetime(2007, 2,13,12),
         datetime(2007, 2,24,12),
         datetime(2008, 2,12,12),
         datetime(2008, 2,16,12),
         datetime(2008, 2,17,12),
         datetime(2008, 2,25,12),
         datetime(2008,12,9,12),
         datetime(2009, 2,18,12),
         datetime(2009,12,24,12),
         datetime(2010, 1,20,12),
         datetime(2010,12,31,12),
         datetime(2011, 2,28,12),
         datetime(2011,12,22,12),
         datetime(2012, 1,22,12),
         datetime(2012, 1,25,12)]

dates = [ datetime(2009,12,24,12) ]
for run_date in dates:
    #if run_date <= datetime(2008,2,25,12):continue
    rows = len(members)+1
    fig, ax = plt.subplots(rows, figsize=(8.5,5*rows))
    color_list = cycle(["violet", "green", "cyan", "blue", "purple", "darkgreen", "teal", "royalblue"])

    m = add_basemap(ax[-1])
    legend_stuff = []
    iax = -1
    
    for member, field in zip(members,fields):
        json_path = "/glade/scratch/ahijevyc/OBJECT_TRACK/track_data_"+ensemble_name+"_json_"+field+"/"

        iax = iax+1
        m = add_basemap(ax[iax])

        area,isum,jsum,nsum = 0.,0.,0.,0.
        model_grid = ModelOutput(ensemble_name,
                                 member, run_date, field, run_date, 
                                 run_date+timedelta(hours=24),
                                 model_path,
                                 single_step=True)

        model_map_file="/glade/p/work/ahijevyc/hagelslag/mapfiles/VSE.txt"
        model_grid.load_map_info(model_map_file)
        model_grid.data = []

        #im = m.contourf(model_grid.lon, model_grid.lat, np.maximum.reduce(model_grid.data),
         #               levels, extend="max", cmap="YlOrRd", latlon=True)
        #plt.colorbar(im, ax=ax[iax], ticks=levels)
    

        storm_tracks = load_json_tracks(json_path, run_date, member, model_format)
        if not storm_tracks:
            # Used to indicate a bug, but this happens legitimately if no objects are found (e.g. 20080225 no 0-3km UH>25 m2/s2)
            print "found no storm tracks for json_path=",json_path
            print "run_date=",run_date
            print "member=",member
            print "model_format=",model_format
        patches = []
        for track in storm_tracks:
            #print track["properties"]
            # Sanity checks
            if track["properties"]["ensemble_member"] != member:
                print "uh oh"
            if track["properties"]["ensemble_name"] != ensemble_name:
                print "uh oh"
            if track["properties"]["duration"] < 1:
                continue
            dx = track["properties"]["dx"]
            print track["properties"]["id"]
            lon1 = None
            for feature, fhr, u, v in zip(track["features"],track["properties"]["times"],track["properties"]["u"],track["properties"]["v"]):
                # Sanity check
                if feature['geometry']['type'] != 'Polygon':
                    print 'feature geometry type is not Polygon', feature['geometry']['type']
                    sys.exit(0)
                masks = np.array(feature["properties"]["masks"], dtype="float")
                # Should probably not assume all non-zero elements are 1. But I do.
                if np.sum(masks)<pixel_thresh:
                    print 'skipping small object, %d pixels'% np.sum(masks)
                    continue

                thisi = np.sum(feature["properties"]["i"]*masks)
                thisj = np.sum(feature["properties"]["j"]*masks)
                thisn = np.sum(masks)
                ij = (int(np.round(thisi/thisn)),int(np.round(thisj/thisn)))
                com_lon = model_grid.lon[ij]
                com_lat = model_grid.lat[ij]
                if landmask[ij] != 1:
                    print "object not in US", com_lon, com_lat
                    continue
                isum = isum + thisi
                jsum = jsum + thisj
                nsum = nsum + thisn
                area = area + dx*dx*thisn/1000/1000
                lonlat =np.array(feature['geometry']['coordinates'])
                #print "feature geometry coordinates shape:", lonlat.shape
                if lonlat.shape[1]==0:
                    continue

                # Don't know why there's time dimension--always size 1. 
                lon, lat = lonlat[0,:,0], lonlat[0,:,1] # added back 1st (degenerate) time dimension
                mx, my = m(lon,lat)
                patches.append(Polygon(np.transpose([mx,my]), closed=True, fill=True))
                lon2, lat2 = com_lon, com_lat
                # label storm objects with hour
                ax[iax].text(np.average(mx),np.average(my),str(fhr),fontsize=5.2)
                # Draw line from previous object to this one.
                if lon1 is not None:
                    m.drawgreatcircle(lon1,lat1,lon2,lat2,color="black")
                lon1, lat1 = lon2, lat2

        color = next(color_list)
        ax[iax].set_title(member + " " + run_date.strftime("%Y%m%d%H")+ " " + str(area) + " km" + r'$^2$' +"\n"+field+ r'$ \geq$' +"%d pixels"%pixel_thresh)
        alpha = 0.38
        pc = PatchCollection(patches, color=color, alpha=alpha)
        ax[iax].add_collection(pc) # Plot individual member
        ax[iax].legend(handles=[Patch(color=color,alpha=alpha,label=member)],loc="upper left")
        # For some reason, if I substitute the literal PatchCollection instance below with 
        # the variable "pc", no patches appear in any of the subplots.
        # Tack on individual member to final, composite plot.
        # First member is opaque; successive members are more transparent
        alpha = 1-np.sqrt(float(iax)/len(members))
        ax[-1].add_collection(PatchCollection(patches, color=color, alpha=alpha))
        legend_stuff.append(Patch(color=color,alpha=alpha,label=member))
        if nsum > 0:
            # Use the average i and j indices to locate objects' centroid
            ij = (np.round(isum/nsum),np.round(jsum/nsum))
            m.plot(model_grid.lon[ij], model_grid.lat[ij], marker='x', color=color, markersize=60, latlon=True)
            m.plot(model_grid.lon[ij], model_grid.lat[ij], marker='x', color=color, markersize=60, latlon=True,ax=ax[-1])
    
    ax[-1].set_title(','.join(members)+ " " + run_date.strftime("%Y%m%d%H")+"\n"+'_'.join(fields)+ r'$ \geq$'+ "%d pixels"%pixel_thresh)
    ax[-1].legend(handles=legend_stuff,loc="upper left")
    ofile = odir + '_'.join(members) + "_" + run_date.strftime("%Y%m%d%H_") + '_'.join(fields) + ".png" # multi-row plot: 1 per member, plus 1 all-member composite.
    ret = mysavfig(ofile)


3km_pbl1_WSPD10MAX_20050113-1200_01_01_000
object not in US -98.7457428497 24.6304795585
3km_pbl1_WSPD10MAX_20050113-1200_01_08_001
object not in US -97.337768402 24.8032720029
object not in US -97.2928594826 24.5908113856
object not in US -97.0185905265 24.4723849775
object not in US -96.8384973902 24.4288024454
object not in US -96.5495919828 24.5251650844
object not in US -95.897141119 24.4776209558
object not in US -95.6013146749 24.464608968
object not in US -95.3364013337 24.4764028039
3km_pbl1_WSPD10MAX_20050113-1200_01_01_002
object not in US -98.226722421 24.8008668655
3km_pbl1_WSPD10MAX_20050113-1200_01_01_003
3km_pbl1_WSPD10MAX_20050113-1200_01_01_004
3km_pbl1_WSPD10MAX_20050113-1200_01_01_005
3km_pbl1_WSPD10MAX_20050113-1200_01_01_006
3km_pbl1_WSPD10MAX_20050113-1200_01_01_007
3km_pbl1_WSPD10MAX_20050113-1200_01_01_008
3km_pbl1_WSPD10MAX_20050113-1200_02_02_009
object not in US -92.0441516774 29.4211787664
3km_pbl1_WSPD10MAX_20050113-1200_03_03_010
object not in US -95.3931985717 25.5491135056
3km_pbl1_WSPD10MAX_20050113-1200_03_03_011
object not in US -94.8783437103 26.0009721198
3km_pbl1_WSPD10MAX_20050113-1200_03_03_012
object not in US -95.0230577877 27.0996464708
3km_pbl1_WSPD10MAX_20050113-1200_03_03_013
object not in US -94.2754622194 27.315972254
3km_pbl1_WSPD10MAX_20050113-1200_03_05_014
object not in US -92.8064147114 27.9232678232
object not in US -92.6815209865 27.8181474757
object not in US -92.5333539948 27.9829412905
3km_pbl1_WSPD10MAX_20050113-1200_03_03_015
object not in US -92.6633884328 28.2768610052
3km_pbl1_WSPD10MAX_20050113-1200_03_05_016
object not in US -91.546105506 29.2662718022
object not in US -91.3880596565 29.0253066204
object not in US -91.3895918169 29.1331854422
3km_pbl1_WSPD10MAX_20050113-1200_03_03_017
3km_pbl1_WSPD10MAX_20050113-1200_04_06_018
object not in US -95.2619379334 24.7482111808
object not in US -94.9949289498 24.7324689098
object not in US -94.6677411646 24.6915904274
3km_pbl1_WSPD10MAX_20050113-1200_04_05_019
object not in US -94.9660445271 25.3518018173
object not in US -94.8111578583 25.2234888504
3km_pbl1_WSPD10MAX_20050113-1200_04_04_020
object not in US -95.4621006485 25.1695454781
3km_pbl1_WSPD10MAX_20050113-1200_04_04_021
object not in US -94.5196078116 26.0145193043
3km_pbl1_WSPD10MAX_20050113-1200_04_17_022
object not in US -94.0155363191 26.1394486593
object not in US -93.7510660459 26.2822611142
object not in US -93.1820919291 26.3249831264
object not in US -92.8205044355 26.2798561283
object not in US -92.5777859937 26.1774803309
object not in US -92.1271524868 26.1321802138
object not in US -91.9715791692 25.8389000598
object not in US -91.6399700155 25.6555304718
object not in US -91.3687230332 25.4438200459
object not in US -91.1277034851 25.1776099999
object not in US -90.9481456488 25.0179940398
object not in US -90.9466416923 24.85692686
object not in US -90.8287543095 24.9114629744
object not in US -90.7094260192 24.7779984134
3km_pbl1_WSPD10MAX_20050113-1200_04_06_023
object not in US -93.9758756302 26.6522445118
object not in US -93.9574936751 26.9491218732
object not in US -93.8638087582 26.8712257436
3km_pbl1_WSPD10MAX_20050113-1200_04_06_024
object not in US -93.0599740912 27.2436013557
object not in US -93.094443665 27.3774820163
object not in US -93.1914634717 27.5637098522
3km_pbl1_WSPD10MAX_20050113-1200_04_04_025
object not in US -93.1731487631 27.9415685604
3km_pbl1_WSPD10MAX_20050113-1200_04_09_026
object not in US -92.0162506789 28.0730968692
object not in US -91.9204273754 27.8589429323
object not in US -91.4608552585 27.7033870339
object not in US -91.5163556328 27.3524768258
object not in US -91.2410820242 27.1669466391
object not in US -91.1181944542 27.0065234789
3km_pbl1_WSPD10MAX_20050113-1200_04_04_027
object not in US -93.0256184402 28.1069539139
3km_pbl1_WSPD10MAX_20050113-1200_04_04_028
object not in US -92.9066020669 28.2175960113
3km_pbl1_WSPD10MAX_20050113-1200_04_04_029
object not in US -92.4498344008 28.3081234742
3km_pbl1_WSPD10MAX_20050113-1200_04_05_030
object not in US -91.8753085537 28.695426491
object not in US -92.0239858979 28.4504416341
3km_pbl1_WSPD10MAX_20050113-1200_04_17_031
object not in US -91.2887810376 28.5139384024
object not in US -91.073704273 28.4889699225
object not in US -90.9484014337 28.2203603342
object not in US -90.7627608209 27.9520659112
object not in US -90.6083873108 27.6564760223
object not in US -90.4853920269 27.3876038699
object not in US -90.3932092033 27.0916669373
object not in US -90.2413231889 26.8228098725
object not in US -90.1503003955 26.4730695438
object not in US -90.0599751819 26.2310112096
object not in US -90.0597988986 25.9351782627
object not in US -89.9403763514 25.6394721197
object not in US -90.0 25.1558965266
object not in US -90.0 24.9679378206
3km_pbl1_WSPD10MAX_20050113-1200_04_04_032
object not in US -91.0159740872 28.8400063201
3km_pbl1_WSPD10MAX_20050113-1200_04_04_033
object not in US -92.284276145 29.0933762626
3km_pbl1_WSPD10MAX_20050113-1200_04_04_034
3km_pbl1_WSPD10MAX_20050113-1200_04_04_035
object not in US -90.2184606307 30.1657072839
3km_pbl1_WSPD10MAX_20050113-1200_04_04_036
object not in US -87.9972706548 30.4202652432
3km_pbl1_WSPD10MAX_20050113-1200_05_11_037
object not in US -98.9399199152 24.4819375201
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9375682794 24.4552003111
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
3km_pbl1_WSPD10MAX_20050113-1200_05_05_038
object not in US -94.7022121614 24.7977184594
3km_pbl1_WSPD10MAX_20050113-1200_05_05_039
object not in US -95.5155274259 25.0596266475
3km_pbl1_WSPD10MAX_20050113-1200_05_11_040
object not in US -93.8534451299 25.8216947472
object not in US -93.6684729981 25.6659218038
object not in US -93.5351249731 25.2665533695
object not in US -92.978891108 25.5499627642
object not in US -92.7905786285 25.2049853095
object not in US -92.6097543962 25.1014828567
object not in US -92.6359074024 24.9666405749
3km_pbl1_WSPD10MAX_20050113-1200_05_05_041
object not in US -94.5720700817 25.8511393871
3km_pbl1_WSPD10MAX_20050113-1200_05_07_042
object not in US -93.5972714746 26.1791368447
object not in US -93.5297945459 25.9658104203
object not in US -93.1104043256 25.9501011017
3km_pbl1_WSPD10MAX_20050113-1200_05_05_043
object not in US -94.5916790118 26.2810704222
3km_pbl1_WSPD10MAX_20050113-1200_05_05_044
object not in US -93.0736157543 26.704577231
3km_pbl1_WSPD10MAX_20050113-1200_05_06_045
object not in US -93.4387051677 26.8028037149
object not in US -93.2924100927 26.9413975325
3km_pbl1_WSPD10MAX_20050113-1200_05_05_046
object not in US -92.4542569138 27.2568724492
3km_pbl1_WSPD10MAX_20050113-1200_05_08_047
object not in US -92.2161279486 27.4498776062
object not in US -91.970645048 27.3192498253
object not in US -91.9043466204 27.0239920705
object not in US -91.958969308 26.7269711776
3km_pbl1_WSPD10MAX_20050113-1200_05_05_048
object not in US -91.5589310252 28.1334574687
3km_pbl1_WSPD10MAX_20050113-1200_05_16_049
object not in US -90.6467174747 28.8693784051
object not in US -90.3382939818 28.7357285757
object not in US -90.061390069 28.5474080808
object not in US -89.7856641624 28.3045940965
object not in US -89.480468368 28.1150151523
object not in US -89.2374470986 27.9251159704
object not in US -88.9959050209 27.6808956086
object not in US -88.7855722062 27.4635043625
object not in US -88.6064504032 27.2461502396
object not in US -88.4583347689 27.0289672528
object not in US -88.3419159216 26.758235166
object not in US -88.2552495222 26.5417195537
3km_pbl1_WSPD10MAX_20050113-1200_05_05_050
object not in US -91.8501624253 28.9924849005
3km_pbl1_WSPD10MAX_20050113-1200_05_05_051
object not in US -90.4016782614 29.1940387595
3km_pbl1_WSPD10MAX_20050113-1200_05_05_052
object not in US -91.5478163269 29.3741611957
3km_pbl1_WSPD10MAX_20050113-1200_05_05_053
object not in US -89.6571834307 30.0305277152
3km_pbl1_WSPD10MAX_20050113-1200_05_05_054
object not in US -90.0 30.1389094957
3km_pbl1_WSPD10MAX_20050113-1200_05_05_055
3km_pbl1_WSPD10MAX_20050113-1200_05_05_056
3km_pbl1_WSPD10MAX_20050113-1200_05_11_057
3km_pbl1_WSPD10MAX_20050113-1200_06_06_058
object not in US -93.8892698465 25.2021740755
3km_pbl1_WSPD10MAX_20050113-1200_06_06_059
object not in US -95.0673359286 24.9982055709
3km_pbl1_WSPD10MAX_20050113-1200_06_06_060
object not in US -93.9062250746 26.4120988696
3km_pbl1_WSPD10MAX_20050113-1200_06_06_061
object not in US -94.9826619095 26.292990132
3km_pbl1_WSPD10MAX_20050113-1200_06_06_062
object not in US -94.8092376296 26.434443408
3km_pbl1_WSPD10MAX_20050113-1200_06_06_063
object not in US -93.519653497 26.5312770076
3km_pbl1_WSPD10MAX_20050113-1200_06_06_064
object not in US -94.6954521812 26.5734379209
3km_pbl1_WSPD10MAX_20050113-1200_06_07_065
object not in US -92.5066919397 26.9326202773
object not in US -92.3230318358 26.8284446512
3km_pbl1_WSPD10MAX_20050113-1200_06_06_066
object not in US -91.3505160734 28.5402633909
3km_pbl1_WSPD10MAX_20050113-1200_06_17_067
object not in US -89.9074069121 29.0867441401
object not in US -89.7535612678 28.897746346
object not in US -89.4468869116 28.6540799098
object not in US -89.141027091 28.4905998188
object not in US -88.8368213765 28.27249215
object not in US -88.5946561641 28.0813385417
object not in US -88.3534279739 27.8897542615
object not in US -88.082184637 27.7242274051
object not in US -87.9041374164 27.5058217972
object not in US -87.6959486126 27.3135908678
object not in US -87.4892427869 27.0941339877
object not in US -87.31289386 26.9019561461
3km_pbl1_WSPD10MAX_20050113-1200_06_06_068
object not in US -89.8762010975 29.3564546943
3km_pbl1_WSPD10MAX_20050113-1200_06_06_069
object not in US -89.3791225559 29.6517643332
3km_pbl1_WSPD10MAX_20050113-1200_06_07_070
object not in US -89.1259303562 30.1899231617
object not in US -88.7822294173 30.214130154
3km_pbl1_WSPD10MAX_20050113-1200_06_06_071
3km_pbl1_WSPD10MAX_20050113-1200_06_06_072
3km_pbl1_WSPD10MAX_20050113-1200_06_08_073
3km_pbl1_WSPD10MAX_20050113-1200_07_07_074
object not in US -93.7507085781 24.6692454339
3km_pbl1_WSPD10MAX_20050113-1200_07_07_075
object not in US -92.6849331896 26.8212164052
3km_pbl1_WSPD10MAX_20050113-1200_07_07_076
object not in US -91.8220466008 27.4831308315
3km_pbl1_WSPD10MAX_20050113-1200_07_14_077
object not in US -90.3976158655 28.1963225777
object not in US -90.2135760786 27.954182318
object not in US -89.9391110164 27.7387606149
object not in US -89.6962170198 27.5228652006
object not in US -89.6063651829 27.1993850183
object not in US -89.5165739343 26.9836454812
object not in US -89.3976711871 26.6600903699
object not in US -89.2785676641 26.471078076
3km_pbl1_WSPD10MAX_20050113-1200_07_07_078
object not in US -89.5365257427 29.1938302095
3km_pbl1_WSPD10MAX_20050113-1200_07_07_079
object not in US -89.2563945133 29.4622670389
3km_pbl1_WSPD10MAX_20050113-1200_07_07_080
object not in US -89.0379207158 29.6226875541
3km_pbl1_WSPD10MAX_20050113-1200_07_07_081
3km_pbl1_WSPD10MAX_20050113-1200_07_07_082
3km_pbl1_WSPD10MAX_20050113-1200_07_08_083
3km_pbl1_WSPD10MAX_20050113-1200_07_10_084
3km_pbl1_WSPD10MAX_20050113-1200_08_08_085
object not in US -94.4316534815 24.7003165649
3km_pbl1_WSPD10MAX_20050113-1200_08_08_086
object not in US -94.1037195424 24.6311319422
3km_pbl1_WSPD10MAX_20050113-1200_08_09_087
object not in US -93.2914966241 25.085198707
object not in US -93.3220124996 25.1112464544
3km_pbl1_WSPD10MAX_20050113-1200_08_08_088
object not in US -94.3295913578 25.0800364129
3km_pbl1_WSPD10MAX_20050113-1200_08_08_089
object not in US -92.7724108799 26.7116075774
3km_pbl1_WSPD10MAX_20050113-1200_08_23_090
object not in US -89.0445455077 28.9483534841
object not in US -88.8611989026 28.8120009663
object not in US -88.5255100452 28.6197868541
object not in US -88.2213015521 28.4541064823
object not in US -88.0099460601 28.2891923444
object not in US -87.8310399685 28.0705766847
object not in US -87.5296917578 27.9033145358
object not in US -87.3206675158 27.7373304644
object not in US -87.1442776772 27.517854778
object not in US -86.9072329473 27.3236314731
object not in US -86.702250236 27.1028834048
object not in US -86.5264696959 26.9365144107
object not in US -86.6206753081 26.8313508091
object not in US -86.1372328761 26.8443209033
object not in US -86.1361912418 26.8712257436
object not in US -85.8345998839 26.8615690736
3km_pbl1_WSPD10MAX_20050113-1200_08_17_091
object not in US -88.6677501782 29.457512747
object not in US -88.2983662772 29.3182580696
object not in US -87.9603642532 29.2054160495
object not in US -87.6855024096 29.0658559543
object not in US -87.5065896679 28.8197076811
object not in US -87.2034975204 28.6515801976
object not in US -87.0571848526 28.4055374927
object not in US -86.6895356567 28.3964986335
object not in US -86.4856918679 28.0943526969
object not in US -86.6680260574 28.1262412973
3km_pbl1_WSPD10MAX_20050113-1200_08_15_092
object not in US -88.2529420143 30.1271135448
object not in US -87.8786542292 30.1215169993
object not in US -87.4420457301 30.1136192104
object not in US -87.1310290316 30.0801028594
object not in US -86.8228846795 29.9649280029
object not in US -86.5456058262 29.8768268619
object not in US -86.3029828772 29.7081350812
object not in US -85.9869962815 29.8336598227
3km_pbl1_WSPD10MAX_20050113-1200_08_08_093
3km_pbl1_WSPD10MAX_20050113-1200_08_08_094
3km_pbl1_WSPD10MAX_20050113-1200_09_10_095
object not in US -92.9599834867 24.9055832867
object not in US -92.9288480694 24.8526226032
3km_pbl1_WSPD10MAX_20050113-1200_09_11_096
object not in US -92.5335722575 25.613622971
object not in US -92.2884838655 25.3227616714
object not in US -92.1068472668 25.164800996
3km_pbl1_WSPD10MAX_20050113-1200_09_12_097
object not in US -91.4161731259 26.707364481
object not in US -91.3222275088 26.4392573455
object not in US -91.1682213606 26.1179602812
object not in US -91.0444967569 25.7426097317
3km_pbl1_WSPD10MAX_20050113-1200_09_09_098
object not in US -91.8131899499 26.998411888
3km_pbl1_WSPD10MAX_20050113-1200_09_09_099
object not in US -91.9350910605 27.0504526274
3km_pbl1_WSPD10MAX_20050113-1200_09_09_100
3km_pbl1_WSPD10MAX_20050113-1200_09_10_101
3km_pbl1_WSPD10MAX_20050113-1200_10_10_102
object not in US -94.1877895128 24.5209118944
3km_pbl1_WSPD10MAX_20050113-1200_10_10_103
object not in US -93.1721084752 25.0614598353
3km_pbl1_WSPD10MAX_20050113-1200_10_10_104
object not in US -92.1754096099 25.5935394118
3km_pbl1_WSPD10MAX_20050113-1200_10_10_105
object not in US -92.8620737796 25.6333638908
3km_pbl1_WSPD10MAX_20050113-1200_10_10_106
object not in US -91.7377434975 26.138218309
3km_pbl1_WSPD10MAX_20050113-1200_10_18_107
object not in US -90.9338483455 26.6849723849
object not in US -90.7514911308 26.4709009785
object not in US -90.5989435814 26.095101271
object not in US -90.5370380062 25.7189595193
object not in US -90.4166975425 25.4775478315
object not in US -90.3560333175 25.1553838312
object not in US -90.3558446131 25.1016755325
object not in US -90.3557503359 25.074823211
object not in US -90.3255870847 24.9138168785
3km_pbl1_WSPD10MAX_20050113-1200_10_10_108
object not in US -91.2377338363 26.8977003568
3km_pbl1_WSPD10MAX_20050113-1200_10_10_109
object not in US -91.0903306927 27.2222087596
3km_pbl1_WSPD10MAX_20050113-1200_10_16_110
object not in US -87.64229889 29.5777035005
object not in US -87.3026719072 29.5170598115
object not in US -86.9961040394 29.402316948
object not in US -86.6893443704 29.3138125655
object not in US -86.4140350625 29.2254477867
object not in US -86.0775030009 29.1346209021
object not in US -85.8934838044 29.1018610529
3km_pbl1_WSPD10MAX_20050113-1200_10_10_111
3km_pbl1_WSPD10MAX_20050113-1200_10_10_112
3km_pbl1_WSPD10MAX_20050113-1200_11_11_113
object not in US -90.2734048098 27.5229346826
3km_pbl1_WSPD10MAX_20050113-1200_11_11_114
3km_pbl1_WSPD10MAX_20050113-1200_11_11_115
3km_pbl1_WSPD10MAX_20050113-1200_11_14_116
3km_pbl1_WSPD10MAX_20050113-1200_11_13_117
3km_pbl1_WSPD10MAX_20050113-1200_12_12_118
object not in US -92.2492141395 24.8937415253
3km_pbl1_WSPD10MAX_20050113-1200_12_14_119
object not in US -91.7202418111 25.1170689868
object not in US -91.6574177058 24.9031129915
object not in US -91.537013629 24.7704553352
3km_pbl1_WSPD10MAX_20050113-1200_12_12_120
object not in US -91.7847539382 25.4116550836
3km_pbl1_WSPD10MAX_20050113-1200_12_12_121
object not in US -90.1814817586 27.0921509888
3km_pbl1_WSPD10MAX_20050113-1200_12_13_122
3km_pbl1_WSPD10MAX_20050113-1200_12_12_123
3km_pbl1_WSPD10MAX_20050113-1200_12_16_124
3km_pbl1_WSPD10MAX_20050113-1200_13_16_125
object not in US -88.9730193693 26.9534507933
object not in US -88.8245415579 26.7367727918
object not in US -88.7081673304 26.4126670158
object not in US -88.6199009152 26.2771951579
3km_pbl1_WSPD10MAX_20050113-1200_13_13_126
object not in US -89.393590918 27.333207188
3km_pbl1_WSPD10MAX_20050113-1200_13_14_127
object not in US -86.3468226895 30.1953005359
object not in US -86.1316628482 30.108052979
3km_pbl1_WSPD10MAX_20050113-1200_13_13_128
3km_pbl1_WSPD10MAX_20050113-1200_13_13_129
3km_pbl1_WSPD10MAX_20050113-1200_14_14_130
object not in US -90.5640156471 25.2083238905
3km_pbl1_WSPD10MAX_20050113-1200_14_14_131
object not in US -89.4904875213 26.1761876705
3km_pbl1_WSPD10MAX_20050113-1200_14_14_132
3km_pbl1_WSPD10MAX_20050113-1200_15_15_133
object not in US -91.2450789833 25.0690609661
3km_pbl1_WSPD10MAX_20050113-1200_15_15_134
object not in US -89.2209614917 26.1478974068
3km_pbl1_WSPD10MAX_20050113-1200_16_16_135
object not in US -90.1786328509 25.5049897762
3km_pbl1_WSPD10MAX_20050113-1200_16_16_136
object not in US -89.3736244077 25.6916615883
3km_pbl1_WSPD10MAX_20050113-1200_16_20_137
object not in US -86.3565770904 28.2795006338
object not in US -86.1803277128 28.085521104
object not in US -85.911128758 27.9422733901
object not in US -85.6110764101 27.8243469785
object not in US -85.3130148691 27.6788022181
3km_pbl1_WSPD10MAX_20050113-1200_16_16_138
object not in US -86.0332939153 28.701478173
3km_pbl1_WSPD10MAX_20050113-1200_16_22_139
object not in US -85.6893841536 29.5270668865
object not in US -85.5307739837 29.6026469699
object not in US -85.25965631 29.4309323684
object not in US -84.989493905 29.2586599099
object not in US -84.690919362 29.0576170809
object not in US -84.4550794583 28.8585885484
object not in US -84.2090690113 28.8476649
3km_pbl1_WSPD10MAX_20050113-1200_17_17_140
object not in US -89.1663947428 25.5023159164
3km_pbl1_WSPD10MAX_20050113-1200_17_17_141
object not in US -88.5940483429 25.9810312178
3km_pbl1_WSPD10MAX_20050113-1200_17_17_142
object not in US -88.1399434692 26.2709636367
3km_pbl1_WSPD10MAX_20050113-1200_17_17_143
object not in US -86.7075687213 27.8576393554
3km_pbl1_WSPD10MAX_20050113-1200_17_17_144
object not in US -85.762622687 28.5578507858
3km_pbl1_WSPD10MAX_20050113-1200_17_17_145
object not in US -85.4308314993 29.0861807701
3km_pbl1_WSPD10MAX_20050113-1200_17_18_146
object not in US -78.9291915801 33.4857346227
object not in US -78.8359387911 33.4508922881
3km_pbl1_WSPD10MAX_20050113-1200_18_18_147
object not in US -88.6279936079 25.6856612953
3km_pbl1_WSPD10MAX_20050113-1200_18_19_148
object not in US -87.9333067616 26.1062976054
object not in US -87.9022387372 26.1595794534
3km_pbl1_WSPD10MAX_20050113-1200_18_18_149
object not in US -87.5668232164 26.3956495778
3km_pbl1_WSPD10MAX_20050113-1200_18_18_150
object not in US -87.171153136 26.57573311
3km_pbl1_WSPD10MAX_20050113-1200_18_18_151
object not in US -86.2000367293 27.5738075861
3km_pbl1_WSPD10MAX_20050113-1200_18_24_152
object not in US -85.4939770061 28.386725443
object not in US -85.2249601182 28.2419884087
object not in US -84.9553565135 28.1236265099
object not in US -84.6559087348 28.0034213727
object not in US -84.2978455222 27.8528772292
object not in US -83.9983893892 27.7580590999
object not in US -83.6639710652 27.7417265467
3km_pbl1_WSPD10MAX_20050113-1200_18_18_153
object not in US -85.9544596196 28.3752342366
3km_pbl1_WSPD10MAX_20050113-1200_18_18_154
object not in US -85.8740155251 28.8313502881
3km_pbl1_WSPD10MAX_20050113-1200_18_19_155
object not in US -85.4383787473 28.9244911224
object not in US -85.4999553793 28.926674589
3km_pbl1_WSPD10MAX_20050113-1200_18_22_156
object not in US -79.3795819195 32.9535485991
object not in US -78.9257709446 33.2416488584
object not in US -78.9289549492 33.2148212978
object not in US -78.7748871508 33.4186875716
object not in US -78.7459981322 33.389164627
3km_pbl1_WSPD10MAX_20050113-1200_18_21_157
object not in US -77.9409304096 33.5899767318
object not in US -77.9765677648 33.5660754865
object not in US -78.0052672756 33.5957592114
object not in US -77.8444401294 33.5812451894
3km_pbl1_WSPD10MAX_20050113-1200_19_23_158
object not in US -87.0255504216 26.4108461151
object not in US -86.6643176632 26.428639003
object not in US -86.6351878976 26.4009395475
object not in US -86.5742196706 26.4262005932
object not in US -86.4445509144 26.6918225555
3km_pbl1_WSPD10MAX_20050113-1200_19_20_159
object not in US -85.9366033519 27.3229960217
object not in US -85.668645736 27.2062486375
3km_pbl1_WSPD10MAX_20050113-1200_19_19_160
object not in US -85.7048055568 28.4749661978
3km_pbl1_WSPD10MAX_20050113-1200_19_19_161
object not in US -83.9253657785 29.9420961364
3km_pbl1_WSPD10MAX_20050113-1200_20_20_162
object not in US -87.8555252589 25.5403213796
3km_pbl1_WSPD10MAX_20050113-1200_20_20_163
object not in US -87.3700354702 25.8804986045
3km_pbl1_WSPD10MAX_20050113-1200_20_20_164
object not in US -87.207242222 26.3612135391
3km_pbl1_WSPD10MAX_20050113-1200_20_21_165
object not in US -85.2956951421 26.7616746036
object not in US -85.2566323447 26.9488160975
3km_pbl1_WSPD10MAX_20050113-1200_20_20_166
object not in US -86.1330629667 26.9519452934
3km_pbl1_WSPD10MAX_20050113-1200_20_20_167
object not in US -84.902555741 28.553308409
3km_pbl1_WSPD10MAX_20050113-1200_20_20_168
object not in US -84.0385401216 29.6231598742
3km_pbl1_WSPD10MAX_20050113-1200_20_24_169
object not in US -80.6238448098 32.126818749
object not in US -80.6371562086 31.9924046997
object not in US -80.6054589927 31.9901461609
object not in US -80.5286237992 32.1200109927
object not in US -80.4252505503 32.193767709
3km_pbl1_WSPD10MAX_20050113-1200_21_21_170
object not in US -87.1379262204 25.6333638908
3km_pbl1_WSPD10MAX_20050113-1200_21_23_171
object not in US -86.8024838651 25.8671982182
object not in US -86.5934258312 25.8616453204
object not in US -86.4796134644 25.6971023264
3km_pbl1_WSPD10MAX_20050113-1200_21_21_172
object not in US -86.1817980064 26.4686663245
3km_pbl1_WSPD10MAX_20050113-1200_21_24_173
object not in US -85.0515536965 27.4261213911
object not in US -84.7857803684 27.2805771532
object not in US -84.6762305701 27.0603021485
object not in US -84.2596666287 26.9341040084
3km_pbl1_WSPD10MAX_20050113-1200_21_21_174
object not in US -85.1053536058 28.1834679466
3km_pbl1_WSPD10MAX_20050113-1200_21_24_175
object not in US -83.8060966212 29.3690093411
object not in US -83.6259624137 29.2791274519
object not in US -83.331993163 29.0480000061
object not in US -83.0644121925 28.8986519472
3km_pbl1_WSPD10MAX_20050113-1200_21_21_176
object not in US -78.1983254822 33.6129215575
3km_pbl1_WSPD10MAX_20050113-1200_22_24_177
object not in US -86.1620647626 26.1988720652
object not in US -85.9289419559 26.0299997328
object not in US -85.7264573872 25.8617632292
3km_pbl1_WSPD10MAX_20050113-1200_22_22_178
object not in US -84.9302064509 26.8282506886
3km_pbl1_WSPD10MAX_20050113-1200_22_22_179
object not in US -85.3005003239 27.3008538561
3km_pbl1_WSPD10MAX_20050113-1200_22_23_180
object not in US -84.5288244369 27.5393567662
object not in US -84.2635183997 27.3926950673
3km_pbl1_WSPD10MAX_20050113-1200_22_23_181
object not in US -89.147570636 27.7359014389
object not in US -88.8094703433 28.002673613
3km_pbl1_WSPD10MAX_20050113-1200_22_22_182
object not in US -85.4370987334 27.6294142386
3km_pbl1_WSPD10MAX_20050113-1200_22_22_183
object not in US
/glade/apps/opt/pandas/0.14.0/gnu/4.8.2/lib/python2.7/site-packages/pandas-0.14.0-py2.7-linux-x86_64.egg/pandas/io/excel.py:626: UserWarning: Installed openpyxl is not supported at this time. Use >=1.6.1 and <2.0.0.
  .format(openpyxl_compat.start_ver, openpyxl_compat.stop_ver))
-c:220: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
 -84.0894751899 28.2751626202
3km_pbl1_WSPD10MAX_20050113-1200_22_22_184
object not in US -84.4104840405 28.5596472309
3km_pbl1_WSPD10MAX_20050113-1200_22_24_185
object not in US -83.9714036565 28.7016283823
object not in US -83.761674253 28.6105132136
object not in US -83.6748829821 28.5252112392
3km_pbl1_WSPD10MAX_20050113-1200_22_22_186
object not in US -84.8327251372 28.7124538563
3km_pbl1_WSPD10MAX_20050113-1200_22_23_187
object not in US -81.172230679 30.7031246129
object not in US -81.1434273191 30.674094913
3km_pbl1_WSPD10MAX_20050113-1200_22_24_188
object not in US -77.6086916218 33.15277009
object not in US -77.6442473059 33.1289488824
object not in US -77.6584222386 33.0217552261
3km_pbl1_WSPD10MAX_20050113-1200_23_24_189
object not in US -85.4395210788 26.2552919305
object not in US -85.2284692403 26.2743193314
3km_pbl1_WSPD10MAX_20050113-1200_23_23_190
object not in US -84.7263778347 26.6851006317
3km_pbl1_WSPD10MAX_20050113-1200_23_23_191
object not in US -84.9687843619 27.2610676479
3km_pbl1_WSPD10MAX_20050113-1200_23_23_192
object not in US -84.2533241959 28.0937438373
3km_pbl1_WSPD10MAX_20050113-1200_23_23_193
object not in US -83.7652174973 28.0706658946
3km_pbl1_WSPD10MAX_20050113-1200_23_23_194
object not in US -78.9291915801 33.4857346227
3km_pbl1_WSPD10MAX_20050113-1200_24_24_195
object not in US -86.3144893503 25.3159158466
3km_pbl1_WSPD10MAX_20050113-1200_24_24_196
object not in US -85.1817078975 26.6226390963
3km_pbl1_WSPD10MAX_20050113-1200_24_24_197
object not in US -84.5832235465 26.5442638644
3km_pbl1_WSPD10MAX_20050113-1200_24_24_198
object not in US -85.4764289407 26.7683323158
3km_pbl1_WSPD10MAX_20050113-1200_24_24_199
object not in US -80.0153392715 32.1362831916
3km_pbl1_WSPD10MAX_20050113-1200_24_24_200
object not in US -79.5255804787 32.80262309
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_000
object not in US -98.716315999 24.6325709857
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_05_001
object not in US -97.3082648666 24.8050272299
object not in US -97.2909383686 24.56404015
object not in US -97.2851810858 24.4837342342
object not in US -96.9561015472 24.4221937487
object not in US -96.6067209459 24.4952344527
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_002
object not in US -98.226722421 24.8008668655
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_003
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_004
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_005
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_006
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_007
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_01_01_008
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_02_02_009
object not in US -94.3092563247 27.3956869373
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_02_02_010
object not in US -93.0653723331 28.4026425979
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_02_02_011
object not in US -92.0430208212 29.3672361637
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_012
object not in US -95.4592063702 25.1158995681
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_013
object not in US -97.5978287032 25.1103886584
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_04_014
object not in US -94.7664206094 26.166820802
object not in US -94.5794037833 26.0123332055
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_015
object not in US -94.3900602189 26.4768088128
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_016
object not in US -94.0189464533 26.9741100544
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_017
object not in US -93.6967839514 27.2534482089
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_04_018
object not in US -93.4914311601 27.4479550785
object not in US -93.3958016761 27.3158232115
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_04_019
object not in US -92.7774368174 27.9778251111
object not in US -92.6220276899 27.8733062545
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_05_020
object not in US -92.5131229025 28.3877860976
object not in US -92.2692538956 28.4463040777
object not in US -92.2948802797 28.2301257642
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_021
object not in US -92.2164417276 28.8248153079
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_05_022
object not in US -91.0187770644 29.1096977228
object not in US -91.1724797183 29.0544361998
object not in US -91.3568429313 28.9986686221
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_023
object not in US -91.5456783915 29.2393002787
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_04_024
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_03_03_025
object not in US -90.2184606307 30.1657072839
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_026
object not in US -95.2338013794 24.7762770532
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_027
object not in US -94.9904406059 25.2432661837
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_05_028
object not in US -95.5895367413 25.3252031279
object not in US -95.6058243286 25.0824436512
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_029
object not in US -94.7784502637 25.7895583193
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_030
object not in US -93.8866340881 26.6819787895
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_05_031
object not in US -92.7283267821 27.3051122185
object not in US -92.6042909796 27.1999784187
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_032
object not in US -91.9851659666 28.0466297588
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_033
object not in US -91.5657742581 28.5647649198
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_034
object not in US -91.0757687208 28.6777080443
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_035
object not in US -92.2830166996 29.0394442856
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_036
object not in US -89.9375826041 30.1658766082
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_04_04_037
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_038
object not in US -94.8241848406 24.8735988052
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_12_039
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9375682794 24.4552003111
object not in US -98.9375682794 24.4552003111
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_040
object not in US -94.4646428654 25.4515705042
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_041
object not in US -95.3223660642 25.3369868945
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_042
object not in US -94.0526355772 25.5732912528
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_043
object not in US -94.4729670554 25.6395277883
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_044
object not in US -93.7121232701 26.0412207009
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_045
object not in US -94.8549414223 26.1364811849
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_06_046
object not in US -93.3666193577 26.4547282246
object not in US -93.4877158787 26.4783274477
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_07_047
object not in US -93.0182539287 26.8674941896
object not in US -92.9483759683 26.5460524213
object not in US -92.9428385844 26.3577662861
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_048
object not in US -92.1273849792 27.5591848342
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_06_049
object not in US -91.7080122762 27.9158930622
object not in US -91.2203878263 27.9484835637
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_050
object not in US -91.284905266 28.2174012623
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_051
object not in US -91.9993527531 28.747483486
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_052
object not in US -91.0430288111 28.4892249384
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_053
object not in US -90.616261253 28.9234679229
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_19_054
object not in US -89.5009424731 30.1109647622
object not in US -89.0634996284 30.1894865713
object not in US -88.6588382301 30.1049743313
object not in US -88.2227406934 30.0727315932
object not in US -87.7875563049 30.012043107
object not in US -87.4505730201 29.7899327262
object not in US -87.0473905757 29.754339195
object not in US -86.6718643822 29.8261615123
object not in US -86.3941180716 29.7647055842
object not in US -86.0813337254 29.8095648731
object not in US -85.8373781091 29.6939254086
object not in US -85.5320125937 29.5756905963
object not in US -85.3215489198 29.4332024008
object not in US -85.1157493228 29.2095338281
object not in US -84.8758563744 29.0651588281
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_05_05_055
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_07_056
object not in US -94.3772459683 24.8096929461
object not in US -94.0500656712 24.767168558
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_057
object not in US -93.9168571201 25.147557413
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_058
object not in US -94.1309554006 25.3018452839
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_09_059
object not in US -93.6376998613 25.6399364763
object not in US -93.5638660619 25.2388551526
object not in US -93.3202527919 25.0575655446
object not in US -93.4610524181 24.8388294312
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_060
object not in US -94.8226706357 25.4650394907
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_061
object not in US -93.3531120596 26.0514071264
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_07_062
object not in US -92.6834865069 26.7673941894
object not in US -92.5280141929 26.5821742773
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_063
object not in US -92.3576411989 27.0163007207
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_064
object not in US -91.9403335565 27.319720509
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_065
object not in US -92.4953557889 27.6871925418
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_066
object not in US -90.8249041596 28.0864421286
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_08_067
object not in US -90.6438821646 28.4379451207
object not in US -90.3975072111 28.1693667598
object not in US -90.1828658208 27.8464315457
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_07_068
object not in US -90.0924401015 28.9249198323
object not in US -90.430200453 28.6545538314
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_07_069
object not in US -89.3480793695 29.6516108968
object not in US -89.1632154023 29.4886715637
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_070
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_071
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_072
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_073
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_074
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_075
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_06_076
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_06_10_077
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_08_078
object not in US -95.4247125798 24.4725349246
object not in US -95.3672522476 24.5019134627
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_08_079
object not in US -93.1583729613 25.5724045666
object not in US -93.100462562 25.6276360817
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_080
object not in US -94.6554032396 25.71351831
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_081
object not in US -92.9357495729 26.115753072
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_09_082
object not in US -91.9028046974 26.9432293183
object not in US -91.7786523883 26.7565817574
object not in US -91.6257514985 26.6240671836
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_083
object not in US -92.0543427154 26.9677688159
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_084
object not in US -91.4253844507 27.3535389957
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_08_085
object not in US -90.8226580295 27.8169409764
object not in US -90.8799990132 27.4124038566
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_086
object not in US -90.6110451139 28.0876527545
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_15_087
object not in US -89.8771862092 28.574327123
object not in US -89.6015127564 28.4119891174
object not in US -89.327116891 28.1951620893
object not in US -89.053668408 28.0047323725
object not in US -88.7812735981 27.8137454868
object not in US -88.5399389344 27.6495031873
object not in US -88.3311256986 27.4044272079
object not in US -88.1521045168 27.2402990185
object not in US -88.0357407332 26.9961396108
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_09_088
object not in US -89.5993175101 28.9512952483
object not in US -89.3234182203 28.7343833889
object not in US -89.0487377054 28.5169070446
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_089
object not in US -93.3388092051 29.2321238779
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_090
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_091
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_092
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_093
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_094
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_095
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_08_096
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_07_097
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_07_10_098
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_099
object not in US -92.4872272299 26.1524163019
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_100
object not in US -92.163476094 26.4275232882
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_101
object not in US -91.8660597583 26.5937985089
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_102
object not in US -91.3909137261 27.0576557652
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_103
object not in US -88.8252528618 29.2432349301
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_104
object not in US -88.6057913408 29.4568554561
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_105
object not in US -87.966553452 30.3927997583
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_106
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_107
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_108
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_109
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_110
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_111
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_08_08_112
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_113
object not in US -94.2523171793 24.6529365905
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_114
object not in US -92.8750254093 25.0418733331
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_115
object not in US -92.6173836444 25.3968585194
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_12_116
object not in US -92.4156700249 25.6697401264
object not in US -92.1461883354 25.6209284011
object not in US -91.9616301565 25.3283731413
object not in US -91.8082462124 25.0621005443
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_117
object not in US -92.1265831699 26.1052897923
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_118
object not in US -92.362337011 25.9396575061
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_119
object not in US -92.1882288491 26.1849265182
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_18_120
object not in US -91.7128315722 26.4345136802
object not in US -91.5588362406 26.1943837577
object not in US -91.5807640303 25.6831789065
object not in US -91.3092188905 25.4444630485
object not in US -91.0400587494 25.3126817365
object not in US -90.7417277173 25.1536713085
object not in US -90.2967734268 25.1823965026
object not in US -90.3856002929 25.1284400928
object not in US -90.3554678038 24.9942736238
object not in US -90.4431607441 24.7255696362
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_121
object not in US -91.326859687 26.7891002491
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_10_122
object not in US -90.8166541298 27.0896288547
object not in US -90.8142331462 26.7934783686
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_19_123
object not in US -90.030403134 27.6040511873
object not in US -89.8483552467 27.3615111444
object not in US -89.6671941704 27.1187700119
object not in US -89.6682705017 26.7956838325
object not in US -89.3981571326 26.5793522301
object not in US -89.2793420389 26.363455771
object not in US -89.4921199304 25.8534953684
object not in US -89.1340900796 25.7977480655
object not in US -89.1366242877 25.5021121631
object not in US -88.5679658411 25.7118644656
object not in US -88.5385247944 25.684640391
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_13_124
object not in US -88.73774802 28.8378100539
object not in US -88.650964034 28.4324230137
object not in US -88.4397904284 28.2143170014
object not in US -88.1985384905 28.0224170061
object not in US -87.9576669978 27.8570342825
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_12_125
object not in US -88.3942771329 29.1306584561
object not in US -88.0243406618 29.0985101267
object not in US -87.688052498 28.9579957226
object not in US -87.5106978484 28.6579485492
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_126
object not in US -88.2360110625 29.3443944697
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_127
object not in US -87.9884837209 29.3407539527
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_128
object not in US -87.9801052086 29.745348746
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_129
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_130
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_131
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_132
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_10_133
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_09_09_134
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_14_135
object not in US -90.3627664434 27.0379036356
object not in US -90.3915159122 26.6609270411
object not in US -90.2402222727 26.3653040339
object not in US -90.3884837055 25.8808114854
object not in US -90.2385578129 25.6661341799
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_13_136
object not in US -89.2691436657 27.7636093611
object not in US -89.057781106 27.5735964648
object not in US -88.908487588 27.3299375046
object not in US -88.78655989 27.3826964288
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_20_137
object not in US -87.6172303776 29.3343983079
object not in US -87.46535979 29.2235633317
object not in US -87.3182727647 28.950774674
object not in US -87.0466693417 28.755944677
object not in US -86.8024450737 28.6961037978
object not in US -86.5009465085 28.5263226697
object not in US -86.323971072 28.3325073207
object not in US -86.0549671473 28.1625964961
object not in US -85.8219486749 27.8854242528
object not in US -85.5221752062 27.7672927861
object not in US -85.4748617494 27.4689956561
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_10_138
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_10_139
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_10_140
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_10_141
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_10_12_142
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_11_11_143
object not in US -92.4858993354 24.889198151
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_11_12_144
object not in US -91.1086133613 26.1454019127
object not in US -90.985602966 25.8237408466
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_11_11_145
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_11_11_146
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_147
object not in US -92.4799971839 24.6477203294
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_148
object not in US
-c:221: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
/glade/apps/opt/matplotlib/1.4.3/gnu-westmere/4.8.2/lib/python2.7/site-packages/matplotlib-1.4.3-py2.7-linux-x86_64.egg/matplotlib/collections.py:590: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
  if self._edgecolors == str('face'):
 -91.4814264735 25.0127474308
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_149
object not in US -90.7782049878 26.0403226139
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_150
object not in US -90.9318414705 26.469686605
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_151
object not in US -90.2712690875 26.7419930263
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_152
object not in US -87.8863529705 28.3411234749
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_153
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_154
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_13_155
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_12_156
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_12_14_157
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_13_158
object not in US -89.6078508155 26.822428875
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_15_159
object not in US -88.7908213548 27.0326078938
object not in US -88.6429873348 26.7887774302
object not in US -88.4348745938 26.5979245358
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_18_160
object not in US -87.9316983449 27.6410076008
object not in US -87.7486364862 27.6648260007
object not in US -87.5720890219 27.4190327896
object not in US -87.365437693 27.1993480318
object not in US -87.1589302369 27.0062938632
object not in US -86.9849983054 26.7598554259
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_13_161
object not in US -86.6003376761 29.2035383278
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_13_162
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_13_163
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_13_164
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_13_13_165
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_166
object not in US -91.5665677577 24.770083161
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_18_167
object not in US -91.006069676 24.8832997546
object not in US -91.0652467689 24.8828028715
object not in US -90.9468920203 24.8837682469
object not in US -90.8870101534 24.8036875918
object not in US -90.8858398266 24.6695120254
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_168
object not in US -90.4773678859 25.7192031981
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_169
object not in US -89.8803062882 26.0158045658
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_17_170
object not in US -87.1537848169 28.2459298835
object not in US -86.6940624114 28.2617625363
object not in US -86.4551530209 28.093502619
object not in US -86.1896889755 27.8431018
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_171
object not in US -86.5854785004 28.744436444
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_172
object not in US -86.5798388348 28.9061687403
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_173
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_14_14_174
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_175
object not in US -91.3578910959 24.6383771905
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_176
object not in US -90.5327763434 24.9130961439
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_177
object not in US -90.980629956 25.3131668279
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_18_178
object not in US -89.9702278336 25.5051148919
object not in US -89.9406136799 25.2364542531
object not in US -90.0594810244 25.3976302437
object not in US -90.0 25.3170512239
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_179
object not in US -89.0104352028 26.2271004718
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_24_180
object not in US -87.1981672376 27.7616288288
object not in US -86.9300538818 27.5667245843
object not in US -86.6915187798 27.4259398386
object not in US -86.457497091 27.1770504851
object not in US -86.5028904576 26.747324866
object not in US -86.639697561 26.26648446
object not in US -86.5225590546 26.1825375082
object not in US -86.3834261427 25.8826126707
object not in US -86.2401149751 25.7169732018
object not in US -86.1003876294 25.4706463937
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_181
object not in US -86.9817988923 27.8644776912
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_182
object not in US -87.2187708717 28.112548469
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_16_183
object not in US -86.2093172319 28.9226981573
object not in US -86.067259009 28.6215845062
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_15_15_184
object not in US -85.8237255757 29.288549018
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_16_16_185
object not in US -88.5306923564 26.2223717742
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_16_17_186
object not in US -87.8920781785 26.643793148
object not in US -87.8971707299 26.4016479238
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_16_16_187
object not in US -86.5552355078 27.8535835805
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_16_18_188
object not in US -85.779407632 28.8822329731
object not in US -85.4075914656 28.9233882684
object not in US -85.1078370757 28.7502986043
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_16_17_189
object not in US -78.9291915801 33.4857346227
object not in US -78.8359387911 33.4508922881
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_17_17_190
object not in US -90.2072469501 24.9409174985
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_17_17_191
object not in US -89.9111562884 24.9679058466
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_17_17_192
object not in US -89.6116200159 25.8539260513
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_17_21_193
object not in US -85.8296958426 28.4251605599
object not in US -85.4670804694 28.3048248061
object not in US -85.1332470997 28.2385052514
object not in US -84.866566546 28.0660977301
object not in US -84.6371174756 27.7867829223
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_17_18_194
object not in US -79.382626478 32.9267050098
object not in US -78.8552127447 33.2899563678
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_195
object not in US -89.4080273344 24.9128263138
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_196
object not in US -90.3557503359 25.074823211
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_197
object not in US -88.8692978462 25.4462206132
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_198
object not in US -89.3726210035 25.8529498399
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_199
object not in US -87.9355169668 25.9987448402
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_19_200
object not in US -88.800542191 26.2252587005
object not in US -88.6520685037 26.1161459858
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_21_201
object not in US -87.6000740269 26.2617469841
object not in US -87.4242835502 26.0968138207
object not in US -87.3102863151 25.8792205311
object not in US -87.1975275612 25.6347243007
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_202
object not in US -87.0005901413 27.2450596219
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_203
object not in US -85.9051972607 27.3489316022
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_204
object not in US -84.4678933314 29.723378879
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_18_205
object not in US -84.1086498325 30.0046329886
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_18_21_206
object not in US -77.9730978448 33.5928718269
object not in US -78.5533031425 33.3727866993
object not in US -78.6882748437 33.3300979879
object not in US -78.8327200039 33.4777126434
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_207
object not in US -90.2952854256 24.6723443611
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_208
object not in US -88.4841323159 25.3346343002
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_209
object not in US -88.9557817279 25.7157308402
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_210
object not in US -87.973017501 25.6229329376
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_211
object not in US -87.2087400921 26.3074239066
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_22_212
object not in US -85.5342729671 26.8242886982
object not in US -85.6501556519 26.9361323817
object not in US -85.8792005188 26.5129061162
object not in US -85.6446573079 26.3703167345
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_213
object not in US -85.9118433798 27.187440197
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_214
object not in US -86.6087913546 27.1812217459
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_215
object not in US -85.1227725001 27.2132159204
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_216
object not in US -86.047088695 27.5960674867
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_217
object not in US -85.5124072314 27.9827123031
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_218
object not in US -84.8606159862 28.7675712951
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_219
object not in US -84.832210252 29.3064210751
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_21_220
object not in US -84.1967220976 29.5763662922
object not in US -83.9882264943 29.4317040956
object not in US -83.7185918806 29.2837012145
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_19_19_221
object not in US -84.0335780958 29.7039807255
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_20_222
object not in US -88.686940497 25.7400612073
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_20_223
object not in US -86.0853686881 26.6272449242
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_20_224
object not in US -86.5686923667 26.5875803316
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_23_225
object not in US -84.547347337 28.8625627902
object not in US -84.2493073132 28.6874680691
object not in US -83.9150210396 28.617933526
object not in US -83.5829700119 28.5206081757
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_20_226
object not in US -84.3457112266 29.1508474084
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_21_227
object not in US -77.7871707536 33.5218014827
object not in US -77.7550336479 33.5188616935
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_20_20_228
object not in US -78.1983254822 33.6129215575
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_21_229
object not in US -88.0038830881 25.5696755157
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_24_230
object not in US -85.6368925619 25.8586513151
object not in US -85.3931623291 25.9574946595
object not in US -85.5413827642 25.9898071503
object not in US -85.2761688544 25.8992825031
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_21_231
object not in US -86.6821335044 25.8909423452
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_21_232
object not in US -87.6338696317 26.100970724
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_23_233
object not in US -85.0313311241 26.6167561213
object not in US -85.1503267824 26.6483652997
object not in US -85.2994932282 26.6809964638
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_21_234
object not in US -85.4788645907 26.7145420023
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_21_235
object not in US -85.3245564656 26.7896971001
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_22_236
object not in US -85.0044612815 27.1546559464
object not in US -84.7540892056 27.3062232585
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_21_237
object not in US -84.4043759282 28.1274912844
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_24_238
object not in US -80.6608993933 32.0753068981
object not in US -80.6688549307 31.9946556211
object not in US -80.5232349949 32.1737705064
object not in US -80.7058335111 31.9431285796
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_21_22_239
object not in US -78.4203053942 33.6593993668
object not in US -78.5458319088 33.697281763
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_240
object not in US -87.0516686632 25.5238117061
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_241
object not in US -87.1272127614 26.009612526
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_242
object not in US -85.9223998734 26.1912625736
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_24_243
object not in US -84.7433533957 26.3625403119
object not in US -84.897438369 26.2881424891
object not in US -84.8743349241 26.1525587267
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_244
object not in US -86.0563418225 26.5994037964
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_245
object not in US -85.6849899898 26.82956849
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_246
object not in US -84.7050036926 27.0884766249
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_247
object not in US -84.5451108467 27.2434064924
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_248
object not in US -83.9803787393 28.0540790989
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_249
object not in US -88.4976819741 28.4307055029
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_250
object not in US -83.5114308272 29.138284646
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_251
object not in US -81.0633313607 31.5348311536
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_252
object not in US -80.9456432049 31.7703746666
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_253
object not in US -79.3856692967 32.8998608787
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_22_22_254
object not in US -79.0414809624 33.3595575944
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_23_255
object not in US -86.6079152097 25.4318176653
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_24_256
object not in US -84.5399726252 26.7849015131
object not in US -84.3005890883 26.74728335
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_23_257
object not in US -84.0260132183 27.3007287284
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_23_258
object not in US -84.2044934733 27.3630196829
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_23_259
object not in US -83.4424608195 28.78355581
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_24_260
object not in US -83.1547713188 28.930549249
object not in US -82.8740748347 28.9692405304
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_23_261
object not in US -87.8077007478 29.1219615331
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_23_24_262
object not in US -77.5658382258 33.4742736177
object not in US -77.5586672784 33.5278481755
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_263
object not in US -86.4723648395 25.0518151185
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_264
object not in US -85.0082351155 25.2700994885
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_265
object not in US -84.8557816541 25.3445224933
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_266
object not in US -86.0847703349 25.8735658168
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_267
object not in US -83.6239856749 27.41588874
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_268
object not in US -83.3452063169 28.4003542482
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_269
object not in US -87.2204780583 29.137543071
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_270
object not in US -81.2513849285 30.8708800785
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_271
object not in US -81.0017268314 31.1787033714
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_272
object not in US -80.244265921 32.3971248841
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_273
object not in US -79.7580205854 32.7395158561
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_274
object not in US -79.2454684306 32.9969453714
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_275
object not in US -78.7268654354 33.2791724904
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_276
1km_on_3km_pbl1_WSPD10MAX_20050113-1200_24_24_277
object not in US -78.5202453857 33.6409081779
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2005011312_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20051228-1200_01_01_000
3km_pbl1_WSPD10MAX_20051228-1200_01_01_001
3km_pbl1_WSPD10MAX_20051228-1200_01_01_002
3km_pbl1_WSPD10MAX_20051228-1200_01_01_003
3km_pbl1_WSPD10MAX_20051228-1200_09_10_004
3km_pbl1_WSPD10MAX_20051228-1200_12_12_005
3km_pbl1_WSPD10MAX_20051228-1200_14_22_006
object not in US -81.1779523689 31.3260691936
object not in US -81.1539472447 31.2432445436
object not in US -80.9890415147 31.3131820547
object not in US -80.5874996272 31.5285752225
object not in US -80.5404536352 31.3627122449
object not in US -80.6952811564 31.4008986469
object not in US -80.1980232046 31.6083387518
object not in US -79.7360381447 31.7626219609
object not in US -79.5721585585 31.803896294
3km_pbl1_WSPD10MAX_20051228-1200_14_16_007
object not in US -80.534006493 32.0662500891
object not in US -80.565727443 32.0685257259
object not in US -80.5527979514 31.8780766777
3km_pbl1_WSPD10MAX_20051228-1200_14_16_008
object not in US -79.630324037 32.7295945781
object not in US -79.2227428681 32.9138352138
object not in US -79.4785775625 32.934334774
3km_pbl1_WSPD10MAX_20051228-1200_15_18_009
object not in US -80.417221281 31.3266545602
object not in US -80.1858895665 31.4178294078
object not in US -79.7965344045 31.4964034977
object not in US -79.7476516291 31.6551532564
3km_pbl1_WSPD10MAX_20051228-1200_15_15_010
object not in US -80.3558405406 31.6200464346
3km_pbl1_WSPD10MAX_20051228-1200_15_18_011
object not in US -78.9740702701 33.3810964562
object not in US -78.8520183164 33.5876718245
object not in US -78.6780068492 33.6814239067
object not in US -78.2966590302 33.8654176425
3km_pbl1_WSPD10MAX_20051228-1200_16_17_012
object not in US -80.2777494994 30.8288090813
object not in US -80.3063367983 30.8580296087
3km_pbl1_WSPD10MAX_20051228-1200_16_16_013
object not in US -80.7189276569 31.4838044725
3km_pbl1_WSPD10MAX_20051228-1200_16_16_014
object not in US -80.2526037684 32.3165103817
3km_pbl1_WSPD10MAX_20051228-1200_16_16_015
object not in US -79.6658025162 32.4073276321
3km_pbl1_WSPD10MAX_20051228-1200_16_16_016
object not in US -79.2958957253 32.83847836
3km_pbl1_WSPD10MAX_20051228-1200_16_18_017
object not in US -77.6193590455 33.0723799351
object not in US -77.6051317445 33.1795655842
object not in US -77.6122494633 33.1259739797
3km_pbl1_WSPD10MAX_20051228-1200_16_16_018
object not in US -79.050352286 33.0081168161
3km_pbl1_WSPD10MAX_20051228-1200_17_17_019
object not in US -80.0829712356 30.2722956192
3km_pbl1_WSPD10MAX_20051228-1200_17_19_020
object not in US -79.6810631484 31.975065127
object not in US -79.2389895296 32.210654287
object not in US -78.7118060889 32.6003347008
3km_pbl1_WSPD10MAX_20051228-1200_17_22_021
object not in US -78.9445669096 32.8096816067
object not in US -79.465947686 32.4728253212
object not in US -79.5296102086 32.4778809446
object not in US -79.2031493063 32.8038751207
object not in US -79.3674336096 32.4920351687
object not in US -78.94773093 32.7828456922
3km_pbl1_WSPD10MAX_20051228-1200_18_19_022
object not in US -79.5502074941 29.6883171843
object not in US -79.4516085194 29.7344548268
3km_pbl1_WSPD10MAX_20051228-1200_18_18_023
object not in US -79.5727484839 30.6386316822
3km_pbl1_WSPD10MAX_20051228-1200_18_20_024
object not in US -78.7169053296 31.2178595562
object not in US -78.9897958807 31.0513801773
object not in US -79.2647505363 30.8574707542
3km_pbl1_WSPD10MAX_20051228-1200_18_19_025
object not in US -80.2789637392 31.7497814028
object not in US -80.0752907864 31.8699680863
3km_pbl1_WSPD10MAX_20051228-1200_18_18_026
object not in US -79.0820967451 31.6284944034
3km_pbl1_WSPD10MAX_20051228-1200_18_20_027
object not in US -78.5105119507 31.8779429978
object not in US -78.4909397858 32.0389590111
object not in US -78.1941866082 32.3653002541
3km_pbl1_WSPD10MAX_20051228-1200_18_18_028
object not in US -80.3175042649 31.9963538147
3km_pbl1_WSPD10MAX_20051228-1200_18_18_029
object not in US -79.9636347042 32.3219460437
3km_pbl1_WSPD10MAX_20051228-1200_18_20_030
object not in US -78.1346828943 33.0922223786
object not in US -78.2576667232 32.8862266655
object not in US -78.0775282922 33.0328802268
3km_pbl1_WSPD10MAX_20051228-1200_18_18_031
object not in US -78.3606762584 33.3561315324
3km_pbl1_WSPD10MAX_20051228-1200_19_19_032
object not in US -79.9464481126 29.4761531334
3km_pbl1_WSPD10MAX_20051228-1200_19_19_033
object not in US -78.9541405955 29.9908676136
3km_pbl1_WSPD10MAX_20051228-1200_19_19_034
object not in US -78.9513603983 30.2888845811
3km_pbl1_WSPD10MAX_20051228-1200_19_19_035
object not in US -78.5014249671 30.9006396722
3km_pbl1_WSPD10MAX_20051228-1200_19_19_036
object not in US -80.2954457786 30.9655597002
3km_pbl1_WSPD10MAX_20051228-1200_19_24_037
object not in US -78.1334391592 31.5730685303
object not in US -78.3572149415 31.5660400718
object not in US -78.0230970749 31.9429093401
object not in US -78.1811746279 31.9572253092
object not in US -78.5956328069 31.9667211878
object not in US -77.9710209322 32.1009569485
3km_pbl1_WSPD10MAX_20051228-1200_19_19_038
object not in US -79.2652785558 31.6978420874
3km_pbl1_WSPD10MAX_20051228-1200_19_20_039
object not in US -80.5474365625 31.9318420659
object not in US -80.3644745387 32.1622654553
3km_pbl1_WSPD10MAX_20051228-1200_19_19_040
object not in US -79.5165761676 32.8831684249
3km_pbl1_WSPD10MAX_20051228-1200_19_19_041
object not in US -77.8968262507 33.1792751208
3km_pbl1_WSPD10MAX_20051228-1200_19_19_042
object not in US -77.6409392055 34.1319155317
3km_pbl1_WSPD10MAX_20051228-1200_20_20_043
object not in US -79.2559701715 29.5285203486
3km_pbl1_WSPD10MAX_20051228-1200_20_20_044
object not in US -81.1558130706 30.5395980919
3km_pbl1_WSPD10MAX_20051228-1200_20_21_045
object not in US -80.7606801619 31.0535553531
object not in US -80.2653692162 31.2612585937
3km_pbl1_WSPD10MAX_20051228-1200_20_20_046
object not in US -79.0759194269 31.6821993326
3km_pbl1_WSPD10MAX_20051228-1200_20_20_047
object not in US -77.7613407854 32.9770193271
3km_pbl1_WSPD10MAX_20051228-1200_21_21_048
object not in US -79.0872578542 29.9208865688
3km_pbl1_WSPD10MAX_20051228-1200_21_22_049
object not in US -78.3279897839 29.9898674391
object not in US -78.1289335756 30.0801973795
3km_pbl1_WSPD10MAX_20051228-1200_21_23_050
object not in US -78.485112292 30.2481463057
object not in US -78.674720833 30.2377983996
object not in US -78.3627291729 30.481336179
3km_pbl1_WSPD10MAX_20051228-1200_21_21_051
object not in US -79.6496883144 30.5092976848
3km_pbl1_WSPD10MAX_20051228-1200_21_23_052
object not in US -80.4164252787 30.703691077
object not in US -79.8282179495 30.9027805454
object not in US -79.0401676027 31.1640839457
3km_pbl1_WSPD10MAX_20051228-1200_21_22_053
object not in US -78.9488485097 30.8580993408
object not in US -78.8612623173 30.7963831443
3km_pbl1_WSPD10MAX_20051228-1200_21_21_054
object not in US -77.8972262921 30.9271727549
3km_pbl1_WSPD10MAX_20051228-1200_21_21_055
object not in US -78.3613622779 30.7525166655
3km_pbl1_WSPD10MAX_20051228-1200_21_24_056
object not in US -78.4181590519 31.3273023847
object not in US -78.2710013294 31.2327646556
object not in US -78.1868343147 31.1437624472
object not in US -78.4043354451 30.9191410115
3km_pbl1_WSPD10MAX_20051228-1200_21_21_057
object not in US -78.9416727394 33.1075049931
3km_pbl1_WSPD10MAX_20051228-1200_21_21_058
object not in US -78.5590563914 33.5900441433
3km_pbl1_WSPD10MAX_20051228-1200_22_23_059
object not in US -80.6487635168 29.9353917248
object not in US -80.5840979812 29.957757908
3km_pbl1_WSPD10MAX_20051228-1200_22_22_060
object not in US -78.2302357262 29.7639235943
3km_pbl1_WSPD10MAX_20051228-1200_22_22_061
object not in US -78.8614201865 31.8810575013
3km_pbl1_WSPD10MAX_20051228-1200_22_22_062
object not in US -77.6724229542 32.670351721
3km_pbl1_WSPD10MAX_20051228-1200_22_24_063
object not in US -77.9187708564 32.2589739909
object not in US -78.0637735693 32.3806972539
object not in US -77.888455785 32.7445429274
3km_pbl1_WSPD10MAX_20051228-1200_22_23_064
object not in US -78.5403640061 32.4229181432
object not in US -78.3615506339 32.5699944095
3km_pbl1_WSPD10MAX_20051228-1200_22_23_065
object not in US -78.1870332258 32.9341930836
object not in US -77.9599862493 32.9409246642
3km_pbl1_WSPD10MAX_20051228-1200_22_22_066
object not in US -78.0581188229 33.4378412486
3km_pbl1_WSPD10MAX_20051228-1200_22_22_067
object not in US -77.7486528314 34.0604569627
3km_pbl1_WSPD10MAX_20051228-1200_23_23_068
object not in US -79.2826555126 29.2868524536
3km_pbl1_WSPD10MAX_20051228-1200_23_24_069
object not in US -78.9755904778 29.8029215776
object not in US -78.7744062778 29.9210886693
3km_pbl1_WSPD10MAX_20051228-1200_23_24_070
object not in US -79.9414102016 30.1258945173
object not in US -79.2534155086 30.3956874288
3km_pbl1_WSPD10MAX_20051228-1200_23_24_071
object not in US -78.2839852191 30.094390065
object not in US -78.2464320277 30.1452330905
3km_pbl1_WSPD10MAX_20051228-1200_23_23_072
object not in US -78.8425272579 30.415117136
3km_pbl1_WSPD10MAX_20051228-1200_23_24_073
object not in US -78.4549722208 31.5475751453
object not in US -78.2527818007 31.6380975328
3km_pbl1_WSPD10MAX_20051228-1200_23_23_074
object not in US -78.5033258369 32.9890462881
3km_pbl1_WSPD10MAX_20051228-1200_24_24_075
object not in US -79.1676028343 28.924873205
3km_pbl1_WSPD10MAX_20051228-1200_24_24_076
object not in US -78.7100954538 29.4002508648
3km_pbl1_WSPD10MAX_20051228-1200_24_24_077
object not in US -78.233497886 29.7370932891
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_01_01_002
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_01_01_003
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_01_01_004
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_08_08_005
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_09_09_006
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_09_09_007
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_09_09_008
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_10_10_009
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_10_10_010
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_11_12_011
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_12_13_012
object not in US -83.8457900202 29.7221573875
object not in US -83.6544099518 29.7939326951
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_13_13_013
object not in US -83.6515770729 29.3614541847
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_13_16_014
object not in US -80.8507562205 31.7637981542
object not in US -80.4542954578 32.2229469543
object not in US -80.0851649556 32.3852858194
object not in US -80.2609274118 32.235892328
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_13_13_015
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_14_15_016
object not in US -81.0103843715 31.4229312881
object not in US -80.968670608 31.528339177
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_14_14_017
object not in US -80.573763288 31.9878800052
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_14_14_018
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_15_15_019
object not in US -83.0966998459 28.4411179788
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_15_15_020
object not in US -81.1978101898 31.1108730637
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_15_16_021
object not in US -80.3312306428 31.8619647131
object not in US -80.5844565276 31.8803479613
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_15_15_022
object not in US -79.6652024372 32.7052327203
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_15_15_023
object not in US -79.003028813 33.4105703677
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_16_024
object not in US -80.2872614805 31.0462063088
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_18_025
object not in US -80.6428393729 31.2888481566
object not in US -80.4747965823 31.3850252797
object not in US -80.2295835645 31.6106954547
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_16_026
object not in US -79.871102678 31.9898344146
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_20_027
object not in US -79.1229219192 32.6618416201
object not in US -79.677012748 32.5978131959
object not in US -79.5924493461 32.7807982686
object not in US -79.4176422026 32.9024111264
object not in US -78.7524775248 33.3355235997
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_17_028
object not in US -79.0635267226 33.1717493314
object not in US -78.7589494858 33.2818800053
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_16_029
object not in US -77.7543195528 33.0306244376
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_16_030
object not in US -78.8071373915 33.1504563302
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_16_17_031
object not in US -78.6398269518 33.4614604523
object not in US -78.2305087389 33.6157549489
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_032
object not in US -79.9672382288 30.4800969693
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_033
object not in US -79.734645082 30.5973519581
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_034
object not in US -79.6235864903 30.7511105793
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_035
object not in US -79.7422027865 31.4108681753
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_036
object not in US -79.0803350195 32.1976078943
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_037
object not in US -78.3449131061 32.7041142014
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_18_038
object not in US -78.43274065 33.0371394906
object not in US -77.8794142558 33.3132816084
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_17_17_039
object not in US -78.0408903382 33.5718410195
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_040
object not in US -79.4714280564 30.4136167755
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_041
object not in US -80.140595614 30.6288544641
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_20_042
object not in US -79.0524885995 31.0566667475
object not in US -79.2575665057 30.6400075747
object not in US -79.373529085 30.7308808813
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_043
object not in US -79.3420831147 31.2975377473
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_044
object not in US -80.499587555 32.0908468294
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_045
object not in US -78.6085601094 31.8593654775
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_21_046
object not in US -79.2113663875 32.4522972047
object not in US -78.6924280509 32.7613260412
object not in US -78.832804907 32.9358278882
object not in US -79.0366781584 32.5734322566
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_047
object not in US -78.2057854045 32.5290763058
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_048
object not in US -78.0296703474 32.6488768012
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_049
object not in US -78.8552353489 33.5608534868
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_18_18_050
object not in US -77.640878556 33.8879540171
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_051
object not in US -79.5811283561 29.6908293135
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_20_052
object not in US -79.1931861832 30.092470455
object not in US -79.3246369991 30.3202666346
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_053
object not in US -78.845646174 30.1170958239
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_054
object not in US -78.624005031 30.6673122875
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_055
object not in US -79.8481626107 30.7146718114
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_21_056
object not in US -78.6541258874 31.2124120067
object not in US -78.7451294154 31.2474188012
object not in US -78.7796919001 31.2232769763
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_057
object not in US -79.2731718264 31.3461081991
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_20_058
object not in US -80.4108419659 31.7053220253
object not in US -80.1069349788 31.8723540789
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_21_059
object not in US -78.1200151487 31.6803857791
object not in US -78.2179356493 31.6620979373
object not in US -78.4603902838 31.7650527735
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_060
object not in US -78.7289247509 31.6528128627
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_20_061
object not in US -79.8596010947 32.3952530612
object not in US -79.5554837797 32.5341062689
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_20_062
object not in US -77.8739198353 32.6075712488
object not in US -77.771857611 32.8966073679
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_19_19_063
object not in US -77.5980058752 33.2331546999
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_20_064
object not in US -78.8425817728 29.3305360598
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_21_065
object not in US -78.9137113445 29.7975990498
object not in US -78.9538428652 29.719720055
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_22_066
object not in US -78.3283285179 30.5053680869
object not in US -78.0870433417 30.6733370069
object not in US -78.3301337925 30.7497113163
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_20_067
object not in US -80.9642947897 30.9053986835
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_22_068
object not in US -80.6454759804 31.2619594663
object not in US -79.9828084712 31.5378828328
object not in US -79.5178531789 31.7182747136
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_20_069
object not in US -77.902067662 31.3890335724
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_24_070
object not in US -78.2660581057 32.0462133161
object not in US -77.9256416964 32.2053371394
object not in US -78.2477526295 31.9360688849
object not in US -78.5704830847 31.9102968508
object not in US -77.9077011027 32.0951528433
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_20_071
object not in US -79.2348176626 31.9663926542
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_20_072
object not in US -79.1135865219 32.742366085
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_20_22_073
object not in US -77.850841393 33.2835641739
object not in US -78.3014329011 33.052764662
object not in US -77.719092688 33.2986138222
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_23_074
object not in US -78.3117492855 30.1240412057
object not in US -78.3524995548 30.0463439059
object not in US -78.3919102798 30.2397973958
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_21_075
object not in US -79.0232316253 30.4848068305
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_21_076
object not in US -80.5308983368 30.8204136855
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_23_077
object not in US -78.2281193791 31.0660995462
object not in US -78.1354642307 31.3019064383
object not in US -78.134144782 31.057565147
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_24_078
object not in US -79.0128136091 31.6769244812
object not in US -79.0154424886 31.3789106222
object not in US -78.9304555869 31.2903909678
object not in US -78.1367904407 31.5462385636
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_23_079
object not in US -79.2164582642 32.1275076082
object not in US -78.6804355624 32.3265453381
object not in US -78.1239104512 32.4132473344
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_21_21_080
object not in US -78.4066228821 32.4654833686
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_22_081
object not in US -78.5719607366 30.3101126821
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_22_082
object not in US -79.9647717597 30.8050173655
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_23_083
object not in US -78.8831735327 30.8796138536
object not in US -78.9924789982 30.7533431453
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_22_084
object not in US -78.1082558791 30.7566958777
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_22_085
object not in US -79.6141079556 31.129758341
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_22_086
object not in US -77.9924510712 32.1843117587
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_22_23_087
object not in US -78.091194067 32.9256343284
object not in US -78.2778138469 32.725311883
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_23_23_088
object not in US -80.0290740414 30.186877965
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_23_23_089
object not in US -79.2833304321 30.1271007331
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_23_23_090
object not in US -78.0074886446 31.561584094
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_091
object not in US -78.6277193719 29.0404826839
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_092
object not in US -78.1815290503 29.6509297625
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_093
object not in US -79.3381289805 29.9148073875
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_094
object not in US -78.6904772301 30.1035765919
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_095
object not in US -78.1090898368 30.2411788492
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_096
object not in US -79.3097279192 30.4545681418
1km_on_3km_pbl1_WSPD10MAX_20051228-1200_24_24_097
object not in US -78.0357605476 30.8314460327
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2005122812_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20060113-1200_01_04_000
object not in US -96.7937171216 27.7449262844
object not in US -96.5845423547 27.8099928474
object not in US -96.9552388221 27.4391979824
object not in US -97.1459666541 27.1316432661
3km_pbl1_WSPD10MAX_20060113-1200_01_01_001
object not in US -96.3331882659 28.1737758107
3km_pbl1_WSPD10MAX_20060113-1200_02_04_002
object not in US -100.062141213 25.9589254944
object not in US -100.062141213 25.9589254944
object not in US -100.062141213 25.9589254944
3km_pbl1_WSPD10MAX_20060113-1200_02_03_003
object not in US -101.295296212 26.7720950632
object not in US -101.325291979 26.769378861
3km_pbl1_WSPD10MAX_20060113-1200_03_04_004
object not in US -96.3985602233 27.765564076
object not in US -96.3022041441 27.6894429198
3km_pbl1_WSPD10MAX_20060113-1200_03_06_005
object not in US -91.9421172583 28.9641474291
object not in US -91.6946060142 28.913721038
object not in US -91.541420189 28.9696048094
object not in US -91.5735450604 29.0501339573
3km_pbl1_WSPD10MAX_20060113-1200_03_04_006
object not in US -91.4863222749 29.4018658876
object not in US -91.4224309693 29.2677029787
3km_pbl1_WSPD10MAX_20060113-1200_03_03_007
3km_pbl1_WSPD10MAX_20060113-1200_04_09_008
object not in US -98.9399199152 24.4819375201
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
object not in US -98.9692985882 24.4797932477
3km_pbl1_WSPD10MAX_20060113-1200_04_08_009
object not in US -91.2873689639 28.4060993137
object not in US -91.040746245 28.2735540634
object not in US -90.5189646863 28.0072029451
object not in US -90.0 27.7118298341
object not in US -89.5747048308 27.5225141348
3km_pbl1_WSPD10MAX_20060113-1200_04_05_010
object not in US -90.7690515646 28.7608269369
object not in US -90.7688402019 28.7338608836
3km_pbl1_WSPD10MAX_20060113-1200_04_04_011
object not in US -90.3396006959 29.1132994698
3km_pbl1_WSPD10MAX_20060113-1200_04_04_012
object not in US -90.0624173959 30.1658766082
3km_pbl1_WSPD10MAX_20060113-1200_04_05_013
object not in US -89.0937035944 30.2976355341
object not in US -88.8749557025 30.295921117
3km_pbl1_WSPD10MAX_20060113-1200_04_05_014
3km_pbl1_WSPD10MAX_20060113-1200_05_05_015
object not in US -93.0223290989 27.002061648
3km_pbl1_WSPD10MAX_20060113-1200_05_05_016
object not in US -92.6028824016 27.1461320024
3km_pbl1_WSPD10MAX_20060113-1200_05_05_017
object not in US -91.97492535 27.5347175788
3km_pbl1_WSPD10MAX_20060113-1200_05_10_018
object not in US -91.4929102903 27.8108069095
object not in US -91.155906163 27.6526526157
object not in US -90.6674103086 27.3867713387
object not in US -90.2116714341 27.0651760219
object not in US -89.7586768111 26.8228098725
object not in US -89.3069509665 26.7134527743
3km_pbl1_WSPD10MAX_20060113-1200_05_05_019
object not in US -92.051272856 28.2882187573
3km_pbl1_WSPD10MAX_20060113-1200_05_05_020
object not in US -90.2761032982 28.4931981031
3km_pbl1_WSPD10MAX_20060113-1200_05_05_021
object not in US -90.1231517087 28.8439871853
3km_pbl1_WSPD10MAX_20060113-1200_05_06_022
object not in US -89.5990966544 29.0052355607
object not in US -89.5376747048 28.9510872417
3km_pbl1_WSPD10MAX_20060113-1200_05_05_023
object not in US -89.379810795 29.5438541343
3km_pbl1_WSPD10MAX_20060113-1200_05_06_024
object not in US -88.7551753547 29.8900741976
object not in US -88.5995876192 29.8884796847
3km_pbl1_WSPD10MAX_20060113-1200_05_06_025
object not in US -87.9364304285 30.3383486278
object not in US -87.966553452 30.3927997583
3km_pbl1_WSPD10MAX_20060113-1200_05_06_026
3km_pbl1_WSPD10MAX_20060113-1200_05_06_027
3km_pbl1_WSPD10MAX_20060113-1200_05_05_028
3km_pbl1_WSPD10MAX_20060113-1200_05_05_029
3km_pbl1_WSPD10MAX_20060113-1200_05_05_030
3km_pbl1_WSPD10MAX_20060113-1200_06_06_031
object not in US -93.4230233478 26.3455233063
3km_pbl1_WSPD10MAX_20060113-1200_06_07_032
object not in US -92.6196769197 26.6341284949
object not in US -92.2572334101 26.5873528801
3km_pbl1_WSPD10MAX_20060113-1200_06_06_033
object not in US -92.0554524938 27.0216100453
3km_pbl1_WSPD10MAX_20060113-1200_06_07_034
object not in US -91.6367602585 27.297094538
object not in US -91.2114695539 27.2211007568
3km_pbl1_WSPD10MAX_20060113-1200_06_06_035
object not in US -90.9491799606 28.3012302747
3km_pbl1_WSPD10MAX_20060113-1200_06_07_036
object not in US -89.8469447635 28.2777244046
object not in US -89.265143937 28.3026502941
3km_pbl1_WSPD10MAX_20060113-1200_06_06_037
object not in US -89.8773208576 28.4664764233
3km_pbl1_WSPD10MAX_20060113-1200_06_06_038
object not in US -92.2736149385 28.6350065873
3km_pbl1_WSPD10MAX_20060113-1200_06_06_039
object not in US -89.4164794341 28.6000144074
3km_pbl1_WSPD10MAX_20060113-1200_06_09_040
object not in US -88.4806142745 29.5363745755
object not in US -87.8277822842 29.6079521318
object not in US -86.9852601438 29.7529005754
object not in US -87.0857399842 29.5123251617
3km_pbl1_WSPD10MAX_20060113-1200_06_07_041
object not in US -87.4384758362 30.2484954434
object not in US -87.2831032983 30.2183385905
3km_pbl1_WSPD10MAX_20060113-1200_06_06_042
object not in US -87.1550658527 30.3235541182
3km_pbl1_WSPD10MAX_20060113-1200_06_06_043
3km_pbl1_WSPD10MAX_20060113-1200_06_08_044
3km_pbl1_WSPD10MAX_20060113-1200_06_06_045
3km_pbl1_WSPD10MAX_20060113-1200_06_06_046
3km_pbl1_WSPD10MAX_20060113-1200_06_10_047
3km_pbl1_WSPD10MAX_20060113-1200_06_06_048
3km_pbl1_WSPD10MAX_20060113-1200_07_07_049
object not in US -93.0223406121 26.0060711271
3km_pbl1_WSPD10MAX_20060113-1200_07_09_050
object not in US -92.5198826713 26.2593816759
object not in US -92.2756935414 26.0757557335
object not in US -92.1467601421 25.6477996362
3km_pbl1_WSPD10MAX_20060113-1200_07_08_051
object not in US -91.6850488926 26.5694521565
object not in US -91.5638635168 26.517199432
3km_pbl1_WSPD10MAX_20060113-1200_07_08_052
object not in US -91.2374000108 26.8707802823
object not in US -90.9642305965 26.7116588589
3km_pbl1_WSPD10MAX_20060113-1200_07_07_053
object not in US -89.3580527332 28.1414100336
3km_pbl1_WSPD10MAX_20060113-1200_07_10_054
object not in US -88.7732572351 28.4606237708
object not in US -88.2519637337 28.4545313482
object not in US -88.623324739 28.2164394924
object not in US -88.4993266094 28.322875414
3km_pbl1_WSPD10MAX_20060113-1200_07_09_055
object not in US -87.9311815805 29.1240156753
object not in US -87.715723855 29.0933762626
object not in US -87.9014689299 29.0695787367
3km_pbl1_WSPD10MAX_20060113-1200_07_07_056
object not in US -88.1746323075 29.3165576301
3km_pbl1_WSPD10MAX_20060113-1200_07_09_057
object not in US -88.008408728 29.8807101021
object not in US -87.9456140056 29.9067106976
object not in US -87.9173904286 29.7713345513
3km_pbl1_WSPD10MAX_20060113-1200_07_08_058
3km_pbl1_WSPD10MAX_20060113-1200_07_07_059
3km_pbl1_WSPD10MAX_20060113-1200_07_08_060
3km_pbl1_WSPD10MAX_20060113-1200_08_08_061
object not in US -92.8292586717 25.5265863427
3km_pbl1_WSPD10MAX_20060113-1200_08_08_062
object not in US -92.5966223906 25.746745774
3km_pbl1_WSPD10MAX_20060113-1200_08_11_063
object not in US -91.8880271605 26.1629325413
object not in US -91.583718789 25.8713340468
object not in US -91.3709101904 25.6050374573
object not in US -91.1271056589 25.1239021483
3km_pbl1_WSPD10MAX_20060113-1200_08_10_064
object not in US -91.0830025276 26.5492000663
object not in US -90.6302395123 26.3101373797
object not in US -90.2694545491 26.0693554785
3km_pbl1_WSPD10MAX_20060113-1200_08_08_065
object not in US -92.3456043939 26.504977795
3km_pbl1_WSPD10MAX_20060113-1200_08_10_066
object not in US -90.5431201692 26.8487863053
object not in US -90.210476975 26.4998913073
object not in US -89.8499414764 26.3116381855
3km_pbl1_WSPD10MAX_20060113-1200_08_08_067
object not in US -88.8431504164 27.7334822065
3km_pbl1_WSPD10MAX_20060113-1200_08_08_068
object not in US -87.1215131161 29.3512202599
3km_pbl1_WSPD10MAX_20060113-1200_08_08_069
object not in US -88.5748122403 29.4565156087
3km_pbl1_WSPD10MAX_20060113-1200_08_08_070
object not in US -86.5321072556 30.2543889096
3km_pbl1_WSPD10MAX_20060113-1200_08_10_071
3km_pbl1_WSPD10MAX_20060113-1200_08_09_072
3km_pbl1_WSPD10MAX_20060113-1200_08_08_073
3km_pbl1_WSPD10MAX_20060113-1200_08_08_074
3km_pbl1_WSPD10MAX_20060113-1200_09_09_075
object not in US -92.8270019 25.4460021645
3km_pbl1_WSPD10MAX_20060113-1200_09_10_076
object not in US -91.1361401371 25.9300054207
object not in US -90.8950511264 25.7168954444
3km_pbl1_WSPD10MAX_20060113-1200_09_12_077
object not in US -91.048411198 26.1190258372
object not in US -90.5975043883 25.8530969887
object not in US -90.1489003654 25.5319004132
object not in US -89.7624550542 25.236240431
3km_pbl1_WSPD10MAX_20060113-1200_09_09_078
object not in US -89.2754534513 26.9017133639
3km_pbl1_WSPD10MAX_20060113-1200_09_09_079
object not in US -88.7565634463 27.3554662637
3km_pbl1_WSPD10MAX_20060113-1200_09_09_080
object not in US -88.3565626348 27.7011445471
3km_pbl1_WSPD10MAX_20060113-1200_09_10_081
object not in US -87.7363286406 28.2037237065
object not in US -87.0041106296 28.1346239843
3km_pbl1_WSPD10MAX_20060113-1200_09_10_082
object not in US -87.300101534 28.491833716
object not in US -86.8988935996 28.5636103079
3km_pbl1_WSPD10MAX_20060113-1200_09_09_083
object not in US -87.4806678597 28.6303869344
3km_pbl1_WSPD10MAX_20060113-1200_09_10_084
object not in US -86.7266014366 29.1258720694
object not in US -86.8235761958 28.9934022118
3km_pbl1_WSPD10MAX_20060113-1200_09_09_085
object not in US -87.2235426531 29.0296889412
3km_pbl1_WSPD10MAX_20060113-1200_09_10_086
object not in US -86.4011141274 29.575952912
object not in US -86.4902357337 29.6863820501
3km_pbl1_WSPD10MAX_20060113-1200_09_09_087
object not in US -87.5168724249 29.6293128858
3km_pbl1_WSPD10MAX_20060113-1200_09_10_088
object not in US -86.2605220272 30.0038571172
object not in US -85.8315946833 29.8287292458
3km_pbl1_WSPD10MAX_20060113-1200_09_10_089
3km_pbl1_WSPD10MAX_20060113-1200_09_09_090
3km_pbl1_WSPD10MAX_20060113-1200_09_10_091
3km_pbl1_WSPD10MAX_20060113-1200_10_10_092
object not in US -92.4885315395 24.9965546236
3km_pbl1_WSPD10MAX_20060113-1200_10_11_093
object not in US -92.0733318563 24.9773736684
object not in US -91.9522969477 24.8451054421
3km_pbl1_WSPD10MAX_20060113-1200_10_10_094
object not in US -91.1021210413 25.5539655853
3km_pbl1_WSPD10MAX_20060113-1200_10_10_095
object not in US -89.2201261839 26.255488251
3km_pbl1_WSPD10MAX_20060113-1200_10_13_096
object not in US -88.7344699781 26.7089771134
object not in US -88.3158568074 26.5156372828
object not in US -87.6556554934 26.4511730843
object not in US -87.087958061 26.3315757023
3km_pbl1_WSPD10MAX_20060113-1200_10_11_097
object not in US -88.3991826983 26.9474442181
object not in US -87.9785900816 26.8336702537
3km_pbl1_WSPD10MAX_20060113-1200_10_10_098
object not in US -88.093593591 27.1316871513
3km_pbl1_WSPD10MAX_20060113-1200_10_10_099
object not in US -89.0918739008 27.1697914987
3km_pbl1_WSPD10MAX_20060113-1200_10_13_100
object not in US -87.9692829867 27.2913567259
object not in US -87.4252840556 27.2275260864
object not in US -86.6078737424 27.2081405047
object not in US -86.368691167 27.1206292696
3km_pbl1_WSPD10MAX_20060113-1200_10_12_101
object not in US -87.5648249359 27.7153180305
object not in US -87.171573676 27.6262703802
object not in US -87.1458271638 27.4639935227
3km_pbl1_WSPD10MAX_20060113-1200_10_12_102
object not in US -86.2103605766 28.8957443404
object not in US -85.5578658121 29.0096752852
object not in US -84.8350649376 29.2525297064
3km_pbl1_WSPD10MAX_20060113-1200_10_10_103
object not in US -85.8592096004 29.181730268
3km_pbl1_WSPD10MAX_20060113-1200_10_10_104
object not in US -86.3771398397 29.3863435527
3km_pbl1_WSPD10MAX_20060113-1200_10_10_105
3km_pbl1_WSPD10MAX_20060113-1200_10_10_106
3km_pbl1_WSPD10MAX_20060113-1200_10_10_107
3km_pbl1_WSPD10MAX_20060113-1200_10_11_108
3km_pbl1_WSPD10MAX_20060113-1200_10_10_109
3km_pbl1_WSPD10MAX_20060113-1200_10_10_110
3km_pbl1_WSPD10MAX_20060113-1200_10_11_111
3km_pbl1_WSPD10MAX_20060113-1200_10_10_112
3km_pbl1_WSPD10MAX_20060113-1200_10_10_113
3km_pbl1_WSPD10MAX_20060113-1200_10_10_114
3km_pbl1_WSPD10MAX_20060113-1200_10_11_115
3km_pbl1_WSPD10MAX_20060113-1200_10_11_116
3km_pbl1_WSPD10MAX_20060113-1200_10_10_117
3km_pbl1_WSPD10MAX_20060113-1200_10_10_118
3km_pbl1_WSPD10MAX_20060113-1200_11_11_119
object not in US -92.4216071258 24.6757215112
3km_pbl1_WSPD10MAX_20060113-1200_11_11_120
object not in US -90.742318181 25.2342412196
3km_pbl1_WSPD10MAX_20060113-1200_11_11_121
object not in US -89.3432724964 25.7721466622
3km_pbl1_WSPD10MAX_20060113-1200_11_12_122
object not in US -88.5917896765 26.1423771661
object not in US -88.3825166279 26.1129386621
3km_pbl1_WSPD10MAX_20060113-1200_11_11_123
object not in US -88.6784822651 26.385449171
3km_pbl1_WSPD10MAX_20060113-1200_11_11_124
object not in US -86.8760810867 27.3498081322
3km_pbl1_WSPD10MAX_20060113-1200_11_12_125
object not in US -86.3289942712 28.1977914426
object not in US -85.6200605392 28.3101916986
3km_pbl1_WSPD10MAX_20060113-1200_11_11_126
object not in US -86.7511906827 29.3153936285
3km_pbl1_WSPD10MAX_20060113-1200_11_11_127
object not in US -85.5035105123 29.5206985885
3km_pbl1_WSPD10MAX_20060113-1200_11_11_128
object not in US -86.4453877288 30.0630669401
3km_pbl1_WSPD10MAX_20060113-1200_11_12_129
3km_pbl1_WSPD10MAX_20060113-1200_11_11_130
3km_pbl1_WSPD10MAX_20060113-1200_11_12_131
3km_pbl1_WSPD10MAX_20060113-1200_11_11_132
3km_pbl1_WSPD10MAX_20060113-1200_11_12_133
3km_pbl1_WSPD10MAX_20060113-1200_11_11_134
3km_pbl1_WSPD10MAX_20060113-1200_11_12_135
3km_pbl1_WSPD10MAX_20060113-1200_11_11_136
3km_pbl1_WSPD10MAX_20060113-1200_11_13_137
3km_pbl1_WSPD10MAX_20060113-1200_12_12_138
object not in US -91.3297776986 24.7460269347
3km_pbl1_WSPD10MAX_20060113-1200_12_12_139
object not in US -90.887713835 24.8842083481
3km_pbl1_WSPD10MAX_20060113-1200_12_12_140
object not in US -90.4439813113 24.9134476344
3km_pbl1_WSPD10MAX_20060113-1200_12_12_141
object not in US -89.2559047741 25.4760147673
3km_pbl1_WSPD10MAX_20060113-1200_12_13_142
object not in US -88.116512418 25.9209357215
object not in US -87.9111884744 25.7294377789
3km_pbl1_WSPD10MAX_20060113-1200_12_14_143
object not in US -87.5414130268 26.2067926517
object not in US -87.3665192913 26.014905116
object not in US -86.7999207014 25.9478267827
3km_pbl1_WSPD10MAX_20060113-1200_12_13_144
object not in US -87.2885651389 26.6860188785
object not in US -86.8703613617 26.5685687646
3km_pbl1_WSPD10MAX_20060113-1200_12_12_145
object not in US -87.1876226224 27.0608095014
3km_pbl1_WSPD10MAX_20060113-1200_12_13_146
object not in US -85.8264964194 27.7777071519
object not in US -85.5634685389 27.5260670892
3km_pbl1_WSPD10MAX_20060113-1200_12_12_147
object not in US -85.2640948661 28.702214795
3km_pbl1_WSPD10MAX_20060113-1200_12_12_148
object not in US -84.4645168498 29.2370587881
3km_pbl1_WSPD10MAX_20060113-1200_12_20_149
object not in US -91.5800798898 29.4547043548
object not in US -91.4212527497 29.1867881991
object not in US -91.0168133596 28.9209094986
object not in US -90.491656919 28.6543316803
object not in US -90.183465474 28.1698566039
object not in US -90.0 27.7118298341
object not in US -89.8785524998 27.4692933413
object not in US -89.5148710246 27.3337326839
object not in US -88.638216602 27.1387657253
3km_pbl1_WSPD10MAX_20060113-1200_12_12_150
object not in US -85.6128406465 29.8484712858
3km_pbl1_WSPD10MAX_20060113-1200_12_22_151
object not in US -86.5145051948 29.8759903255
object not in US -86.0269113467 29.6189266005
object not in US -85.8729949757 29.5870850167
object not in US -86.8184577019 30.0997808608
object not in US -87.005515119 30.1042480204
object not in US -87.0383438317 30.0510216654
object not in US -87.0711364799 29.9977876267
object not in US -87.0711364799 29.9977876267
object not in US -87.1358173054 29.9182685008
object not in US -86.984422755 29.7798702895
object not in US -87.1022805993 29.9984900203
3km_pbl1_WSPD10MAX_20060113-1200_12_12_152
object not in US -84.0464244785 30.0017781877
3km_pbl1_WSPD10MAX_20060113-1200_12_18_153
object not in US -89.9687825929 30.1928701992
object not in US -89.9687825929 30.1928701992
object not in US -90.0936260817 30.1658577944
object not in US -90.0936260817 30.1658577944
object not in US -90.124834753 30.165831455
object not in US -90.124834753 30.165831455
object not in US -90.187147639 30.1117920957
3km_pbl1_WSPD10MAX_20060113-1200_12_12_154
3km_pbl1_WSPD10MAX_20060113-1200_12_12_155
3km_pbl1_WSPD10MAX_20060113-1200_12_12_156
3km_pbl1_WSPD10MAX_20060113-1200_12_12_157
3km_pbl1_WSPD10MAX_20060113-1200_12_13_158
3km_pbl1_WSPD10MAX_20060113-1200_12_12_159
3km_pbl1_WSPD10MAX_20060113-1200_12_12_160
3km_pbl1_WSPD10MAX_20060113-1200_12_12_161
3km_pbl1_WSPD10MAX_20060113-1200_13_13_162
object not in US -89.2604293029 24.8583425588
3km_pbl1_WSPD10MAX_20060113-1200_13_13_163
object not in US -89.4668005363 24.9936339521
3km_pbl1_WSPD10MAX_20060113-1200_13_14_164
object not in US -86.5806457346 26.2379669811
object not in US -86.4635898815 26.1539679072
3km_pbl1_WSPD10MAX_20060113-1200_13_13_165
object not in US -85.9206713995 26.9721618749
3km_pbl1_WSPD10MAX_20060113-1200_13_14_166
object not in US -85.040796897 27.6414343709
object not in US -84.8888824669 27.6353743999
3km_pbl1_WSPD10MAX_20060113-1200_13_13_167
object not in US -85.2061831843 27.9984663474
3km_pbl1_WSPD10MAX_20060113-1200_13_19_168
object not in US -89.6309522335 28.7356433429
object not in US -89.7533575679 28.9786553314
object not in US -89.6307492621 28.7895769357
object not in US -89.355941357 28.4649060728
object not in US -88.9926179559 28.0042617948
object not in US -88.8431504164 27.7334822065
object not in US -89.8466931265 28.4394817659
3km_pbl1_WSPD10MAX_20060113-1200_13_17_169
object not in US -88.6491133921 28.5672247342
object not in US -88.3169787281 28.2397084965
object not in US -88.4976819741 28.4307055029
object not in US -88.6491133921 28.5672247342
object not in US -88.4380824343 28.3221375762
3km_pbl1_WSPD10MAX_20060113-1200_13_13_170
object not in US -84.7171309065 28.5727416094
3km_pbl1_WSPD10MAX_20060113-1200_13_13_171
object not in US -88.7702238445 28.7032833491
3km_pbl1_WSPD10MAX_20060113-1200_13_13_172
object not in US -87.0426048813 28.8907372969
3km_pbl1_WSPD10MAX_20060113-1200_13_16_173
object not in US -92.5016675004 29.1432711797
object not in US -92.2164417276 28.8248153079
object not in US -92.0563359983 28.5308230432
object not in US -92.0217697863 28.3426179117
3km_pbl1_WSPD10MAX_20060113-1200_13_14_174
object not in US -91.8835878152 29.1268736876
object not in US -91.6946060142 28.913721038
3km_pbl1_WSPD10MAX_20060113-1200_13_13_175
object not in US -88.9134874701 29.6486769414
3km_pbl1_WSPD10MAX_20060113-1200_13_13_176
object not in US -85.1951074567 29.4825357943
3km_pbl1_WSPD10MAX_20060113-1200_13_18_177
object not in US -88.4734231564 29.9949824249
object not in US -88.4102369169 30.0481885799
object not in US -87.9115897035 30.0410935504
object not in US -87.8199236096 29.9586207169
object not in US -87.9756080688 29.9611550706
object not in US -87.7315671502 29.7412131683
3km_pbl1_WSPD10MAX_20060113-1200_13_14_178
object not in US -87.9127524319 29.987140241
object not in US -87.9427529296 30.0415933417
3km_pbl1_WSPD10MAX_20060113-1200_13_19_179
object not in US -83.6977004977 29.6069056944
object not in US -83.8423726186 29.7760344732
object not in US -83.677235015 29.4437787472
object not in US -84.0352330211 29.6770402141
object not in US -83.7494702911 29.2852109408
object not in US -84.4430337819 29.6142605043
object not in US -84.2928229648 29.5266434381
3km_pbl1_WSPD10MAX_20060113-1200_13_13_180
object not in US -88.6936662476 29.8355020152
3km_pbl1_WSPD10MAX_20060113-1200_13_13_181
object not in US -85.464997324 29.6813463027
3km_pbl1_WSPD10MAX_20060113-1200_13_16_182
object not in US -84.2833233755 29.6883009149
object not in US -84.3174915747 29.6357873274
object not in US -84.4461129868 29.5603712608
object not in US -84.2356869201 29.4430549014
3km_pbl1_WSPD10MAX_20060113-1200_13_13_183
object not in US -89.3760064825 30.1374048285
3km_pbl1_WSPD10MAX_20060113-1200_13_13_184
object not in US -86.9718058801 30.1844390157
3km_pbl1_WSPD10MAX_20060113-1200_13_13_185
3km_pbl1_WSPD10MAX_20060113-1200_13_13_186
3km_pbl1_WSPD10MAX_20060113-1200_13_13_187
3km_pbl1_WSPD10MAX_20060113-1200_13_13_188
3km_pbl1_WSPD10MAX_20060113-1200_13_15_189
3km_pbl1_WSPD10MAX_20060113-1200_13_13_190
3km_pbl1_WSPD10MAX_20060113-1200_13_13_191
3km_pbl1_WSPD10MAX_20060113-1200_14_14_192
object not in US -85.7624143461 26.4282194097
3km_pbl1_WSPD10MAX_20060113-1200_14_14_193
object not in US -85.3484197392 26.9253062189
3km_pbl1_WSPD10MAX_20060113-1200_14_14_194
object not in US -84.6907440018 27.9239420213
3km_pbl1_WSPD10MAX_20060113-1200_14_14_195
object not in US -84.2291111395 27.9846886434
3km_pbl1_WSPD10MAX_20060113-1200_14_14_196
object not in US -90.3390394415 28.95147354
3km_pbl1_WSPD10MAX_20060113-1200_14_14_197
object not in US -83.7821062693 28.7735572622
3km_pbl1_WSPD10MAX_20060113-1200_14_14_198
object not in US -88.642034406 29.0795763157
3km_pbl1_WSPD10MAX_20060113-1200_14_14_199
object not in US -88.8870774679 29.2437863907
3km_pbl1_WSPD10MAX_20060113-1200_14_14_200
object not in US -83.3771645222 29.2935310873
3km_pbl1_WSPD10MAX_20060113-1200_14_14_201
object not in US -83.9246896826 29.4557285419
3km_pbl1_WSPD10MAX_20060113-1200_14_14_202
object not in US -88.3246685585 29.5883988137
3km_pbl1_WSPD10MAX_20060113-1200_14_14_203
object not in US -88.88058301 29.8102782428
3km_pbl1_WSPD10MAX_20060113-1200_14_15_204
object not in US -86.316648849 30.1674483257
object not in US -86.3478414309 30.1683325945
3km_pbl1_WSPD10MAX_20060113-1200_14_14_205
3km_pbl1_WSPD10MAX_20060113-1200_14_15_206
3km_pbl1_WSPD10MAX_20060113-1200_14_15_207
3km_pbl1_WSPD10MAX_20060113-1200_14_15_208
3km_pbl1_WSPD10MAX_20060113-1200_14_14_209
3km_pbl1_WSPD10MAX_20060113-1200_14_14_210
3km_pbl1_WSPD10MAX_20060113-1200_15_15_211
object not in US -84.3786252367 27.5057757227
3km_pbl1_WSPD10MAX_20060113-1200_15_16_212
object not in US -83.6771735345 28.0123101017
object not in US -83.7110839484 27.9600103981
3km_pbl1_WSPD10MAX_20060113-1200_15_15_213
object not in US -90.5522032343 28.4922999681
3km_pbl1_WSPD10MAX_20060113-1200_15_16_214
object not in US -83.158537109 28.8767116905
object not in US -83.0913571147 28.9541551902
3km_pbl1_WSPD10MAX_20060113-1200_15_17_215
object not in US -88.2075476219 29.2091108905
object not in US -87.9934775508 29.09803021
object not in US -87.8137329095 28.8523087832
3km_pbl1_WSPD10MAX_20060113-1200_15_16_216
object not in US -91.5491019292 29.4550815408
object not in US -91.5177035321 29.4284774021
3km_pbl1_WSPD10MAX_20060113-1200_15_15_217
object not in US -83.1975660727 29.2030513448
3km_pbl1_WSPD10MAX_20060113-1200_15_18_218
object not in US -89.0068875044 29.622451859
object not in US -88.9459908348 29.5140521429
object not in US -89.0400506221 29.4068786378
object not in US -88.9789693938 29.3254778239
3km_pbl1_WSPD10MAX_20060113-1200_15_15_219
object not in US -79.1813491814 29.3596274047
3km_pbl1_WSPD10MAX_20060113-1200_15_15_220
object not in US -89.5948536482 30.0303473602
3km_pbl1_WSPD10MAX_20060113-1200_15_15_221
object not in US -87.9051714733 30.3378472731
3km_pbl1_WSPD10MAX_20060113-1200_15_16_222
object not in US -81.1474282587 30.9721214844
object not in US -80.9388557882 31.1743531531
3km_pbl1_WSPD10MAX_20060113-1200_15_15_223
object not in US -80.9371198957 31.5261600156
3km_pbl1_WSPD10MAX_20060113-1200_15_16_224
object not in US -80.6979137318 32.0237836228
object not in US -80.2180206406 32.3410310364
3km_pbl1_WSPD10MAX_20060113-1200_15_17_225
object not in US -79.4906298159 32.8269468696
object not in US -79.3370071379 32.7605156696
object not in US -79.6569556107 32.4879004716
3km_pbl1_WSPD10MAX_20060113-1200_15_15_226
3km_pbl1_WSPD10MAX_20060113-1200_15_15_227
3km_pbl1_WSPD10MAX_20060113-1200_16_16_228
object not in US -84.1278880343 26.6045419537
3km_pbl1_WSPD10MAX_20060113-1200_16_16_229
object not in US -88.4486964664 27.6484155613
3km_pbl1_WSPD10MAX_20060113-1200_16_16_230
object not in US -88.3821524157 27.9979386426
3km_pbl1_WSPD10MAX_20060113-1200_16_16_231
object not in US -83.1628790198 27.9315734701
3km_pbl1_WSPD10MAX_20060113-1200_16_16_232
object not in US -83.5864857914 28.4667723825
3km_pbl1_WSPD10MAX_20060113-1200_16_16_233
object not in US -88.1200433388 28.9381026102
3km_pbl1_WSPD10MAX_20060113-1200_16_16_234
object not in US -82.7748920186 28.6393819496
3km_pbl1_WSPD10MAX_20060113-1200_16_16_235
object not in US -91.6119501796 29.5082676426
3km_pbl1_WSPD10MAX_20060113-1200_16_16_236
object not in US -88.7849418221 29.9982877544
3km_pbl1_WSPD10MAX_20060113-1200_16_16_237
object not in US -81.1241824822 29.8607525801
3km_pbl1_WSPD10MAX_20060113-1200_16_16_238
object not in US -88.5328659054 30.1845600138
3km_pbl1_WSPD10MAX_20060113-1200_16_16_239
object not in US -80.9422895785 30.4707102136
3km_pbl1_WSPD10MAX_20060113-1200_16_16_240
object not in US -81.0833768168 30.6429146649
3km_pbl1_WSPD10MAX_20060113-1200_16_17_241
object not in US -80.6011042943 31.0692219982
object not in US -80.6456497065 30.9370353944
3km_pbl1_WSPD10MAX_20060113-1200_16_18_242
object not in US -80.3324760209 31.537078063
object not in US -79.7447507156 31.6820208269
object not in US -79.1460241387 31.9048805934
3km_pbl1_WSPD10MAX_20060113-1200_16_16_243
object not in US -80.5217393776 31.5509110544
3km_pbl1_WSPD10MAX_20060113-1200_16_17_244
object not in US -79.2811161676 32.4037767446
object not in US -79.3976874522 32.2235102248
3km_pbl1_WSPD10MAX_20060113-1200_16_16_245
3km_pbl1_WSPD10MAX_20060113-1200_16_17_246
3km_pbl1_WSPD10MAX_20060113-1200_17_17_247
object not in US -82.8366111949 27.3735429658
3km_pbl1_WSPD10MAX_20060113-1200_17_18_248
object not in US -90.3700648609 29.0053284748
object not in US -89.9078137553 28.6552462055
3km_pbl1_WSPD10MAX_20060113-1200_17_17_249
object not in US -86.0455517425 29.1606277467
3km_pbl1_WSPD10MAX_20060113-1200_17_18_250
object not in US -88.8824462906 29.6484112433
object not in US -88.9442359265 29.675912541
3km_pbl1_WSPD10MAX_20060113-1200_17_22_251
object not in US -80.893168357 29.3303380293
object not in US -80.7132886826 29.263283529
object not in US -80.6695995878 29.395450837
object not in US -80.2766714469 29.2849977021
object not in US -80.2258453288 29.1728176384
object not in US -79.9741757323 29.2074865373
3km_pbl1_WSPD10MAX_20060113-1200_17_22_252
object not in US -86.4404298908 30.1979089765
object not in US -86.5047875095 30.1456721375
object not in US -86.3508942499 30.0874295828
object not in US -86.382061362 30.0883055869
object not in US -86.3850830891 30.0074031713
object not in US -86.505761715 30.1187032412
3km_pbl1_WSPD10MAX_20060113-1200_17_18_253
object not in US -80.4645059201 30.2197624475
object not in US -79.9020505302 30.5021234516
3km_pbl1_WSPD10MAX_20060113-1200_17_17_254
object not in US -81.1474282587 30.9721214844
3km_pbl1_WSPD10MAX_20060113-1200_17_20_255
object not in US -79.9707533547 31.0493121558
object not in US -80.2927192083 30.9924420045
object not in US -80.2722926904 30.8825731283
object not in US -80.3322282071 30.9141270652
3km_pbl1_WSPD10MAX_20060113-1200_17_17_256
object not in US -79.2345554137 31.1260634617
3km_pbl1_WSPD10MAX_20060113-1200_17_17_257
object not in US -80.9499065946 31.391691208
3km_pbl1_WSPD10MAX_20060113-1200_17_17_258
object not in US -80.5951255908 31.772811224
3km_pbl1_WSPD10MAX_20060113-1200_17_17_259
object not in US -78.3378440241 32.2424624236
3km_pbl1_WSPD10MAX_20060113-1200_17_17_260
object not in US -78.4119821358 32.6828824135
3km_pbl1_WSPD10MAX_20060113-1200_17_18_261
object not in US -77.6229107897 33.0455820129
object not in US -77.6370974943 32.9383844666
3km_pbl1_WSPD10MAX_20060113-1200_17_19_262
object not in US -78.7592050148 33.0109249314
object not in US -78.9474428055 32.5118032428
object not in US -79.2113663875 32.4522972047
3km_pbl1_WSPD10MAX_20060113-1200_17_17_263
object not in US -79.4146084398 32.9292559418
3km_pbl1_WSPD10MAX_20060113-1200_17_21_264
object not in US -78.8552353489 33.5608534868
object not in US -78.6234305683 33.5955304807
object not in US -78.8391557296 33.4240712661
object not in US -79.1361741456 32.8255039059
object not in US -79.3507943112 32.3552184529
3km_pbl1_WSPD10MAX_20060113-1200_17_17_265
3km_pbl1_WSPD10MAX_20060113-1200_18_18_266
object not in US -82.6124889979 27.1176625446
3km_pbl1_WSPD10MAX_20060113-1200_18_18_267
object not in US -86.5200315859 27.9874360087
3km_pbl1_WSPD10MAX_20060113-1200_18_18_268
object not in US -85.9193699204 28.4820282154
3km_pbl1_WSPD10MAX_20060113-1200_18_18_269
object not in US -89.5375473238 28.9780571375
3km_pbl1_WSPD10MAX_20060113-1200_18_18_270
object not in US -85.8044130168 29.0180011617
3km_pbl1_WSPD10MAX_20060113-1200_18_19_271
object not in US -80.5852197012 28.9832442566
object not in US -80.2967524876 28.7721403346
3km_pbl1_WSPD10MAX_20060113-1200_18_18_272
object not in US -91.3594653706 29.1874584892
3km_pbl1_WSPD10MAX_20060113-1200_18_18_273
object not in US -81.020092732 29.6370031965
3km_pbl1_WSPD10MAX_20060113-1200_18_24_274
object not in US -80.0058725847 29.8058357933
object not in US -79.6257228041 29.8570147382
object not in US -79.4679405944 29.8712934597
object not in US -79.4148077144 29.7856293352
object not in US -79.2351231385 29.7164961789
object not in US -79.2791365049 29.882801913
object not in US -79.5802847245 29.9888331067
3km_pbl1_WSPD10MAX_20060113-1200_18_18_275
object not in US -88.5640780603 30.1849100205
3km_pbl1_WSPD10MAX_20060113-1200_18_18_276
object not in US -80.7554816075 31.1073385025
3km_pbl1_WSPD10MAX_20060113-1200_18_19_277
object not in US -79.6053356297 31.2103595589
object not in US -79.4944826319 31.0659650925
3km_pbl1_WSPD10MAX_20060113-1200_18_23_278
object not in US -80.1025788437 31.3031968382
object not in US -79.9110252846 31.3156327217
object not in US -79.9512783914 31.5354668212
object not in US -80.5977890886 31.7459263515
object not in US -80.1897011553 31.688970867
object not in US -80.0030415812 31.6477864472
3km_pbl1_WSPD10MAX_20060113-1200_18_18_279
object not in US -79.0776979088 31.1130090913
3km_pbl1_WSPD10MAX_20060113-1200_18_18_280
object not in US -77.9827939821 31.505041836
3km_pbl1_WSPD10MAX_20060113-1200_18_18_281
object not in US -80.2445934602 31.7743142788
3km_pbl1_WSPD10MAX_20060113-1200_18_18_282
object not in US -78.6530241302 31.7547398089
3km_pbl1_WSPD10MAX_20060113-1200_18_18_283
object not in US -80.470569173 32.0616759497
3km_pbl1_WSPD10MAX_20060113-1200_18_22_284
object not in US -78.0694044889 32.0827824512
object not in US -78.0626239252 32.1364294937
object not in US -77.9290741979 32.1785181115
object not in US -77.9195496829 32.5032288279
object not in US -77.7958652635 32.4647308798
3km_pbl1_WSPD10MAX_20060113-1200_18_18_285
object not in US -80.180620753 32.3924121893
3km_pbl1_WSPD10MAX_20060113-1200_18_23_286
object not in US -77.9470251383 33.2922933459
object not in US -77.8926313279 32.9619248345
object not in US -77.7902405085 33.2509079685
object not in US -77.7801233482 33.5753856202
object not in US -77.7906914211 33.4950083658
object not in US -77.9478865242 33.5363848778
3km_pbl1_WSPD10MAX_20060113-1200_18_18_287
3km_pbl1_WSPD10MAX_20060113-1200_18_21_288
object not in US -78.3860884141 33.4125489912
object not in US -78.1831998866 33.476069011
object not in US -78.3270702156 33.6242088252
object not in US -78.6976008447 33.5205416506
3km_pbl1_WSPD10MAX_20060113-1200_18_18_289
3km_pbl1_WSPD10MAX_20060113-1200_18_18_290
3km_pbl1_WSPD10MAX_20060113-1200_19_19_291
object not in US -82.9828420117 25.7370286936
3km_pbl1_WSPD10MAX_20060113-1200_19_20_292
object not in US -82.5062796689 26.1133662872
object not in US -82.1199693849 26.0625365573
3km_pbl1_WSPD10MAX_20060113-1200_19_19_293
object not in US -82.2444170079 26.393929947
3km_pbl1_WSPD10MAX_20060113-1200_19_19_294
object not in US -82.5101209188 26.4641021358
3km_pbl1_WSPD10MAX_20060113-1200_19_19_295
object not in US -86.0961887221 27.8941814096
3km_pbl1_WSPD10MAX_20060113-1200_19_19_296
3km_pbl1_WSPD10MAX_20060113-1200_19_20_297
object not in US -80.4638858841 28.3247202001
object not in US -80.0591701634 28.3748289144
3km_pbl1_WSPD10MAX_20060113-1200_19_19_298
object not in US -78.8548475682 28.6810867374
3km_pbl1_WSPD10MAX_20060113-1200_19_19_299
object not in US -85.1921002323 28.9154607311
3km_pbl1_WSPD10MAX_20060113-1200_19_19_300
object not in US -87.932322604 29.0700808216
3km_pbl1_WSPD10MAX_20060113-1200_19_19_301
object not in US -87.0612637324 29.2958863397
3km_pbl1_WSPD10MAX_20060113-1200_19_19_302
object not in US -78.5207654128 28.8953376467
3km_pbl1_WSPD10MAX_20060113-1200_19_19_303
object not in US -79.9489419524 29.1513406111
3km_pbl1_WSPD10MAX_20060113-1200_19_20_304
object not in US -88.9707160573 30.1078322423
object not in US -89.0640218514 30.1355240281
3km_pbl1_WSPD10MAX_20060113-1200_19_19_305
object not in US -83.7457950514 29.8254243992
3km_pbl1_WSPD10MAX_20060113-1200_19_19_306
object not in US -79.1892206527 29.8481708768
3km_pbl1_WSPD10MAX_20060113-1200_19_21_307
object not in US -80.2036593108 30.0106420491
object not in US -80.0567759143 29.9181298105
object not in US -80.0601664367 30.1892754072
3km_pbl1_WSPD10MAX_20060113-1200_19_19_308
object not in US -80.832852178 30.3005678063
3km_pbl1_WSPD10MAX_20060113-1200_19_19_309
object not in US -78.9920710995 30.4821603222
3km_pbl1_WSPD10MAX_20060113-1200_19_22_310
object not in US -78.6477351642 31.2661008469
object not in US -78.6156736274 31.5345332508
object not in US -78.6278963944 31.6983226456
object not in US -78.9937166159 31.566873529
3km_pbl1_WSPD10MAX_20060113-1200_19_20_311
object not in US -79.409535059 31.5469584846
object not in US -79.7540826954 31.0053498857
3km_pbl1_WSPD10MAX_20060113-1200_19_19_312
object not in US -80.4451444635 31.6807452859
3km_pbl1_WSPD10MAX_20060113-1200_19_20_313
object not in US -79.8106419445 31.9580753331
object not in US -80.0153392715 32.1362831916
3km_pbl1_WSPD10MAX_20060113-1200_19_19_314
object not in US -78.5729395327 32.1545804755
3km_pbl1_WSPD10MAX_20060113-1200_19_19_315
3km_pbl1_WSPD10MAX_20060113-1200_19_19_316
3km_pbl1_WSPD10MAX_20060113-1200_20_20_317
object not in US -82.437314317 25.4356143097
3km_pbl1_WSPD10MAX_20060113-1200_20_21_318
3km_pbl1_WSPD10MAX_20060113-1200_20_22_319
object not in US -80.2320254957 27.8741581182
object not in US -79.8125293338 27.786879548
object not in US -79.1905526255 27.599737507
3km_pbl1_WSPD10MAX_20060113-1200_20_23_320
object not in US -86.4197275174 28.2273537758
object not in US -85.4868349056 27.8739145547
object not in US -85.7456123341 27.532342843
object not in US -85.4519274028 27.3064171606
3km_pbl1_WSPD10MAX_20060113-1200_20_20_321
object not in US -85.3920271517 28.5989507481
3km_pbl1_WSPD10MAX_20060113-1200_20_21_322
object not in US -78.8578743146 28.3832838331
object not in US -79.0318582319 28.4797286363
3km_pbl1_WSPD10MAX_20060113-1200_20_21_323
object not in US -84.7776259435 29.1691931274
object not in US -84.3597162964 28.9084169291
3km_pbl1_WSPD10MAX_20060113-1200_20_20_324
object not in US -78.3287589207 28.6880819611
3km_pbl1_WSPD10MAX_20060113-1200_20_23_325
object not in US -79.3209685267 28.9378151331
object not in US -79.0942750004 29.0270145559
object not in US -79.6142692208 28.7995317654
object not in US -79.4436900913 28.948036261
3km_pbl1_WSPD10MAX_20060113-1200_20_21_326
object not in US -87.8516577185 29.9321666821
object not in US -87.821742192 29.8776939805
3km_pbl1_WSPD10MAX_20060113-1200_20_20_327
object not in US -78.9073898656 29.5801582415
3km_pbl1_WSPD10MAX_20060113-1200_20_20_328
object not in US -88.5956821809 30.1582723622
3km_pbl1_WSPD10MAX_20060113-1200_20_20_329
object not in US -87.9364304285 30.3383486278
3km_pbl1_WSPD10MAX_20060113-1200_20_20_330
object not in US -78.4647592821 29.8936953146
3km_pbl1_WSPD10MAX_20060113-1200_20_20_331
object not in US -79.5424923297 30.3380762528
3km_pbl1_WSPD10MAX_20060113-1200_20_20_332
object not in US -78.3821994599 30.3203101607
3km_pbl1_WSPD10MAX_20060113-1200_20_20_333
object not in US -80.841002827 30.5448106845
3km_pbl1_WSPD10MAX_20060113-1200_20_21_334
object not in US -79.3675723023 30.7846053181
object not in US -79.6664334234 30.6461306099
3km_pbl1_WSPD10MAX_20060113-1200_20_21_335
object not in US -78.3450394272 30.8867058604
object not in US -78.5864080546 30.7182572693
3km_pbl1_WSPD10MAX_20060113-1200_20_20_336
object not in US -80.0592808318 31.1102785419
3km_pbl1_WSPD10MAX_20060113-1200_20_20_337
object not in US -78.3684347902 31.2143629307
3km_pbl1_WSPD10MAX_20060113-1200_20_20_338
object not in US -80.753071067 31.4591461786
3km_pbl1_WSPD10MAX_20060113-1200_20_20_339
object not in US -79.2470226772 31.858976033
3km_pbl1_WSPD10MAX_20060113-1200_20_23_340
object not in US -80.4044117002 32.0839494426
object not in US -80.3064951401 32.1038593319
object not in US -80.1562715311 32.0114747376
object not in US -79.8739772385 31.9629666639
3km_pbl1_WSPD10MAX_20060113-1200_21_22_341
object not in US -81.9667802566 25.352080505
object not in US -81.4378009062 25.262680667
3km_pbl1_WSPD10MAX_20060113-1200_21_21_342
object not in US -81.7009811401 25.6848033626
3km_pbl1_WSPD10MAX_20060113-1200_21_21_343
object not in US -84.3923187797 27.2636523944
3km_pbl1_WSPD10MAX_20060113-1200_21_21_344
object not in US -79.9527024732 27.3112226559
3km_pbl1_WSPD10MAX_20060113-1200_21_22_345
object not in US -84.7243660556 28.4380795703
object not in US -84.4654300487 28.1301713411
3km_pbl1_WSPD10MAX_20060113-1200_21_23_346
object not in US -83.5829700119 28.5206081757
object not in US -83.4604328897 28.5143676024
object not in US -83.0488191513 28.249428428
3km_pbl1_WSPD10MAX_20060113-1200_21_21_347
object not in US -84.8213453671 28.9279663106
3km_pbl1_WSPD10MAX_20060113-1200_21_22_348
object not in US -78.4658235688 28.8361485781
object not in US -78.457391936 28.6456095005
3km_pbl1_WSPD10MAX_20060113-1200_21_22_349
object not in US -85.5642370112 29.5498073652
object not in US -85.2339864378 29.3219818001
3km_pbl1_WSPD10MAX_20060113-1200_21_24_350
object not in US -84.1902827691 29.6841341488
object not in US -83.9472504539 29.5918778503
object not in US -84.41822994 29.505141614
object not in US -84.1493580134 29.3310990573
3km_pbl1_WSPD10MAX_20060113-1200_21_23_351
object not in US -80.4739688844 29.4893516607
object not in US -80.3088666942 29.5852949716
object not in US -80.2443560738 29.6074884652
3km_pbl1_WSPD10MAX_20060113-1200_21_24_352
object not in US -78.3017853603 29.6890786722
object not in US -78.3809579052 29.2894267273
object not in US -78.442485172 29.2950038585
object not in US -78.5711010388 29.5235037023
3km_pbl1_WSPD10MAX_20060113-1200_21_21_353
object not in US -83.9236757916 29.9690373374
3km_pbl1_WSPD10MAX_20060113-1200_21_21_354
object not in US -80.4485326033 30.3810710791
3km_pbl1_WSPD10MAX_20060113-1200_21_21_355
object not in US -79.1781296496 30.22675186
3km_pbl1_WSPD10MAX_20060113-1200_21_21_356
object not in US -79.2172970897 30.7179934859
3km_pbl1_WSPD10MAX_20060113-1200_21_22_357
object not in US -78.0357605476 30.8314460327
object not in US -77.9420327254 30.8227732599
3km_pbl1_WSPD10MAX_20060113-1200_21_21_358
object not in US -80.99919262 31.2055993974
3km_pbl1_WSPD10MAX_20060113-1200_21_21_359
object not in US -77.8494998938 31.3027244947
3km_pbl1_WSPD10MAX_20060113-1200_21_21_360
object not in US -78.9851634093 32.189688672
3km_pbl1_WSPD10MAX_20060113-1200_21_21_361
object not in US -78.5347246374 32.2054958532
3km_pbl1_WSPD10MAX_20060113-1200_21_24_362
object not in US -80.2096511145 32.4216424044
object not in US -79.9493184492 32.4562703459
object not in US -79.8219849268 32.4465313745
object not in US -79.9607747081 32.3488117266
3km_pbl1_WSPD10MAX_20060113-1200_21_21_363
object not in US -78.8615817012 32.9653419433
3km_pbl1_WSPD10MAX_20060113-1200_21_21_364
object not in US -77.6804370141 34.0813305246
3km_pbl1_WSPD10MAX_20060113-1200_21_24_365
3km_pbl1_WSPD10MAX_20060113-1200_22_22_366
object not in US -82.6559981717 24.480229875
3km_pbl1_WSPD10MAX_20060113-1200_22_23_367
object not in US -82.2108755623 24.5065680106
object not in US -81.7741926888 24.4242926211
3km_pbl1_WSPD10MAX_20060113-1200_22_22_368
object not in US -81.4604455862 24.9949216363
3km_pbl1_WSPD10MAX_20060113-1200_22_24_369
object not in US -79.7282679211 26.8333681189
object not in US -79.2506886723 26.7661706607
object not in US -79.4108274979 26.9691411702
3km_pbl1_WSPD10MAX_20060113-1200_22_22_370
object not in US -84.1311206445 27.0629648047
3km_pbl1_WSPD10MAX_20060113-1200_22_23_371
object not in US -85.2599482881 27.5150234056
object not in US -85.0017583153 27.2084637428
3km_pbl1_WSPD10MAX_20060113-1200_22_23_372
object not in US -79.3879416164 27.1835961509
object not in US -79.1857713371 27.0851577669
3km_pbl1_WSPD10MAX_20060113-1200_22_23_373
object not in US -84.755966858 27.845724698
object not in US -84.2751993205 27.7169429766
3km_pbl1_WSPD10MAX_20060113-1200_22_24_374
object not in US -84.0572831891 28.3006558113
object not in US -84.0043337765 28.1631877602
object not in US -83.2348339941 27.7734547137
3km_pbl1_WSPD10MAX_20060113-1200_22_24_375
object not in US -78.8122831838 27.9729019539
object not in US -78.8943111546 28.0613995457
object not in US -78.6904092289 28.2329683881
3km_pbl1_WSPD10MAX_20060113-1200_22_23_376
object not in US -86.1434814946 29.0286734984
object not in US -85.6351341815 28.6614835412
3km_pbl1_WSPD10MAX_20060113-1200_22_22_377
object not in US -84.5795960765 28.836936008
3km_pbl1_WSPD10MAX_20060113-1200_22_22_378
object not in US -85.8009415983 29.098858716
3km_pbl1_WSPD10MAX_20060113-1200_22_22_379
object not in US -85.9198309915 29.2106667127
3km_pbl1_WSPD10MAX_20060113-1200_22_22_380
object not in US -80.7751798493 29.5925770303
3km_pbl1_WSPD10MAX_20060113-1200_22_23_381
object not in US -85.5482021041 29.9002592634
object not in US -85.5482021041 29.9002592634
3km_pbl1_WSPD10MAX_20060113-1200_22_22_382
object not in US -80.9212346201 30.3609469926
3km_pbl1_WSPD10MAX_20060113-1200_22_22_383
object not in US -78.2922011495 30.285051838
3km_pbl1_WSPD10MAX_20060113-1200_22_22_384
object not in US -79.8793471115 30.4190688642
3km_pbl1_WSPD10MAX_20060113-1200_22_24_385
object not in US -78.4529364979 30.5165462853
object not in US -78.3724724378 30.4008231418
object not in US -78.5711852687 30.5812911014
3km_pbl1_WSPD10MAX_20060113-1200_22_23_386
object not in US -79.1106382211 30.5464134033
object not in US -78.8862911291 30.8527630105
3km_pbl1_WSPD10MAX_20060113-1200_22_22_387
object not in US -79.2840171749 30.9674931228
3km_pbl1_WSPD10MAX_20060113-1200_22_23_388
object not in US -80.7424596504 31.2417941787
object not in US -80.5329997259 31.1184533345
3km_pbl1_WSPD10MAX_20060113-1200_22_22_389
object not in US -78.0872851665 31.4331970262
3km_pbl1_WSPD10MAX_20060113-1200_22_22_390
object not in US -79.1837900408 31.8537835478
3km_pbl1_WSPD10MAX_20060113-1200_22_22_391
object not in US -78.1610266714 32.1181870211
3km_pbl1_WSPD10MAX_20060113-1200_22_23_392
object not in US -77.8502349309 33.0394246797
object not in US -78.0307406182 32.8930788457
3km_pbl1_WSPD10MAX_20060113-1200_23_23_393
object not in US -81.2069918985 24.4925536969
3km_pbl1_WSPD10MAX_20060113-1200_23_23_394
object not in US -80.9042855884 24.90124286
3km_pbl1_WSPD10MAX_20060113-1200_23_24_395
object not in US -79.7345159967 26.1853326871
object not in US -79.2445692655 25.9817983861
3km_pbl1_WSPD10MAX_20060113-1200_23_23_396
object not in US -79.4619626245 26.486799395
3km_pbl1_WSPD10MAX_20060113-1200_23_23_397
object not in US -82.6768261206 27.067460227
3km_pbl1_WSPD10MAX_20060113-1200_23_23_398
object not in US -84.9605999882 27.4225159241
3km_pbl1_WSPD10MAX_20060113-1200_23_24_399
object not in US -83.6456706829 27.5518984793
object not in US -83.2926016217 27.371685226
3km_pbl1_WSPD10MAX_20060113-1200_23_23_400
object not in US -78.6886306744 27.4473063044
3km_pbl1_WSPD10MAX_20060113-1200_23_24_401
object not in US -83.6040071227 28.1976234387
object not in US -83.096344953 28.008967487
3km_pbl1_WSPD10MAX_20060113-1200_23_23_402
object not in US -79.8290387681 27.9235135346
3km_pbl1_WSPD10MAX_20060113-1200_23_23_403
object not in US -78.4113821471 27.9909290679
3km_pbl1_WSPD10MAX_20060113-1200_23_23_404
object not in US -80.1229152262 28.3527434337
3km_pbl1_WSPD10MAX_20060113-1200_23_23_405
object not in US -83.7072474766 28.4998109294
3km_pbl1_WSPD10MAX_20060113-1200_23_24_406
object not in US -78.8517903303 28.7079188491
object not in US -78.8976120832 28.5764368337
3km_pbl1_WSPD10MAX_20060113-1200_23_24_407
object not in US -85.3910971573 29.2737281325
object not in US -85.2688208401 29.2422756529
3km_pbl1_WSPD10MAX_20060113-1200_23_24_408
object not in US -85.9970079172 29.5910043885
object not in US -85.7881637902 29.3953631463
3km_pbl1_WSPD10MAX_20060113-1200_23_23_409
object not in US -84.8517294398 29.5232430515
3km_pbl1_WSPD10MAX_20060113-1200_23_23_410
object not in US -79.4087353804 29.2702582563
3km_pbl1_WSPD10MAX_20060113-1200_23_24_411
object not in US -79.8258227853 29.4395468183
object not in US -79.6630300909 29.5077921341
3km_pbl1_WSPD10MAX_20060113-1200_23_23_412
object not in US -78.7655037361 29.4593512921
3km_pbl1_WSPD10MAX_20060113-1200_23_23_413
object not in US -83.864892332 29.9122129349
3km_pbl1_WSPD10MAX_20060113-1200_23_23_414
object not in US -78.3082633837 29.6354159405
3km_pbl1_WSPD10MAX_20060113-1200_23_23_415
object not in US -80.0684674581 30.1086478703
3km_pbl1_WSPD10MAX_20060113-1200_23_23_416
object not in US -79.3868731692 30.325392448
3km_pbl1_WSPD10MAX_20060113-1200_23_24_417
object not in US -79.9051793104 31.0713403979
object not in US -80.2995498461 31.2367176006
3km_pbl1_WSPD10MAX_20060113-1200_23_23_418
object not in US -78.3191208887 31.6169029755
3km_pbl1_WSPD10MAX_20060113-1200_23_24_419
object not in US -78.7232615506 33.5768873019
object not in US -78.7522015536 33.6064105166
3km_pbl1_WSPD10MAX_20060113-1200_23_24_420
3km_pbl1_WSPD10MAX_20060113-1200_24_24_421
object not in US -81.0060566527 24.4241715313
3km_pbl1_WSPD10MAX_20060113-1200_24_24_422
object not in US -80.2080923387 25.0364512144
3km_pbl1_WSPD10MAX_20060113-1200_24_24_423
object not in US -79.8485491472 25.3579190453
3km_pbl1_WSPD10MAX_20060113-1200_24_24_424
object not in US -79.6296725679 25.7445510822
3km_pbl1_WSPD10MAX_20060113-1200_24_24_425
object not in US -78.8457135542 26.3249991592
3km_pbl1_WSPD10MAX_20060113-1200_24_24_426
object not in US -85.480081433 26.6876481499
3km_pbl1_WSPD10MAX_20060113-1200_24_24_427
object not in US -85.138555996 26.8903995023
3km_pbl1_WSPD10MAX_20060113-1200_24_24_428
object not in US -82.5079349697 26.8955787904
3km_pbl1_WSPD10MAX_20060113-1200_24_24_429
object not in US -78.6055274642 26.8442644415
3km_pbl1_WSPD10MAX_20060113-1200_24_24_430
object not in US -84.63007222 27.3549238447
3km_pbl1_WSPD10MAX_20060113-1200_24_24_431
object not in US -83.8074587995 27.3980662924
3km_pbl1_WSPD10MAX_20060113-1200_24_24_432
object not in US -78.2995174317 27.8993160028
3km_pbl1_WSPD10MAX_20060113-1200_24_24_433
object not in US -79.127086345 27.6213411547
3km_pbl1_WSPD10MAX_20060113-1200_24_24_434
object not in US -79.6128904768 28.2307587248
3km_pbl1_WSPD10MAX_20060113-1200_24_24_435
object not in US -79.9538802301 28.5018832773
3km_pbl1_WSPD10MAX_20060113-1200_24_24_436
object not in US -86.2390770528 28.9505623956
3km_pbl1_WSPD10MAX_20060113-1200_24_24_437
object not in US -85.8660562803 29.0200084042
3km_pbl1_WSPD10MAX_20060113-1200_24_24_438
object not in US -87.4427585154 30.0866443831
3km_pbl1_WSPD10MAX_20060113-1200_24_24_439
object not in US -78.5075292377 30.0602684228
3km_pbl1_WSPD10MAX_20060113-1200_24_24_440
object not in US -81.1369763307 30.4029702375
3km_pbl1_WSPD10MAX_20060113-1200_24_24_441
object not in US -80.8625660889 30.9795168757
3km_pbl1_WSPD10MAX_20060113-1200_24_24_442
object not in US -77.8048455841 31.6514163706
3km_pbl1_WSPD10MAX_20060113-1200_24_24_443
object not in US -78.264392832 31.8019153409
3km_pbl1_WSPD10MAX_20060113-1200_24_24_444
object not in US -80.3409688534 32.0793130734
3km_pbl1_WSPD10MAX_20060113-1200_24_24_445
3km_pbl1_WSPD10MAX_20060113-1200_24_24_446
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_01_02_000
object not in US -101.034488632 26.6060732521
object not in US -101.031525967 26.5792917731
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_01_04_001
object not in US -96.7633263338 27.7465576321
object not in US -96.6149555362 27.8084043819
object not in US -96.9571247736 27.4660843127
object not in US -97.1459666541 27.1316432661
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_02_02_002
object not in US -100.637774247 26.2891381274
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_03_003
object not in US -100.08097607 26.1464128642
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_04_004
object not in US -96.3360289348 27.7417265467
object not in US -96.3595075859 27.6325942693
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_04_005
object not in US -91.6370495227 29.1572374795
object not in US -91.6683932222 29.1838091903
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_03_006
object not in US -92.1638176373 29.230358506
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_03_007
object not in US -92.6906198442 29.274347986
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_03_008
object not in US -91.4243990156 29.4025675818
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_03_04_009
object not in US -91.9566703773 29.6923577985
object not in US -91.9256182983 29.6928257959
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_09_010
object not in US -98.9399199152 24.4819375201
object not in US -98.9352178779 24.4284644012
object not in US -98.9352178779 24.4284644012
object not in US -98.9375682794 24.4552003111
object not in US -98.9692985882 24.4797932477
object not in US -98.998676022 24.4776419641
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_04_011
object not in US -92.2538143657 27.7725852645
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_05_012
object not in US -91.4998524225 28.2689635889
object not in US -91.4994422752 28.2420085015
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_04_013
object not in US -93.1668257004 28.6968705677
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_07_014
object not in US -90.9544029827 28.8404811953
object not in US -91.1695772933 28.8117228044
object not in US -91.4196848229 29.0789068014
object not in US -91.3260085124 28.998991941
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_04_015
object not in US -90.370677813 29.1671588438
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_04_016
object not in US -90.0936260817 30.1658577944
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_04_017
object not in US -89.3760064825 30.1374048285
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_04_04_018
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_019
object not in US -92.6014753462 27.0922887423
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_020
object not in US -92.3646664996 27.3124671455
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_10_021
object not in US -91.9146903109 27.5625908794
object not in US -91.5450040715 27.2443820734
object not in US -91.1786330416 27.0059708057
object not in US -90.8133563434 26.685812913
object not in US -90.3004388284 26.4189843798
object not in US -89.7601638916 26.2038960611
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_08_022
object not in US -91.4022810917 27.8657446581
object not in US -90.8821520172 27.6548609429
object not in US -90.4551787769 27.4146538081
object not in US -90.0 27.1461398334
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_023
object not in US -90.8556886271 28.1131931545
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_024
object not in US -91.527533073 28.0799256307
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_09_025
object not in US -90.4591634185 28.2769869299
object not in US -90.061171923 28.1969304584
object not in US -89.4195065792 28.0877962644
object not in US -88.9336045155 27.8151212578
object not in US -88.5119514748 27.487513685
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_026
object not in US -90.4294927818 28.4927730587
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_027
object not in US -90.950740855 28.4629847392
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_06_028
object not in US -89.9385593685 28.6282998392
object not in US -89.5699176541 28.62758916
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_029
object not in US -90.246167655 28.7898735708
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_030
object not in US -89.6602118062 29.1672444737
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_09_031
object not in US -89.2875744839 29.4354667054
object not in US -88.824603416 29.2971805863
object not in US -88.0210653453 29.2603237098
object not in US -87.5292071828 29.1438704369
object not in US -87.715723855 29.0933762626
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_032
object not in US -88.9427690329 29.8108030562
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_06_033
object not in US -88.6268860752 30.1586072222
object not in US -88.9710028756 30.0808515417
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_034
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_035
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_05_036
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_06_037
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_05_06_038
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_039
object not in US -93.3585019555 26.2127091856
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_040
object not in US -92.5888799597 26.6078489562
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_041
object not in US -92.3846379844 26.881141799
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_042
object not in US -92.1420624563 26.8316670699
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_043
object not in US -91.8776749204 27.2129223684
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_10_044
object not in US -91.15433721 27.5179504032
object not in US -90.7571864996 27.2246544328
object not in US -90.3321771225 26.9302884567
object not in US -89.8795979324 26.6076540311
object not in US -89.4597931883 26.3105594787
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_045
object not in US -90.7312543469 27.8175023082
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_046
object not in US -91.6187307043 28.051838077
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_047
object not in US -91.5283675899 28.1338293094
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_07_048
object not in US -91.7875159116 28.9394284747
object not in US -91.723040166 28.7784834641
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_049
object not in US -89.1061850206 28.9487992
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_08_050
object not in US -88.2889048299 29.8577508015
object not in US -88.78965957 29.6205925068
object not in US -88.6356373952 29.5381126507
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_08_051
object not in US -88.0647136973 30.1784068802
object not in US -88.0679471331 30.0165399449
object not in US -87.8839630747 29.8787293547
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_052
object not in US -87.1550658527 30.3235541182
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_053
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_054
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_055
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_056
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_06_06_057
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_058
object not in US -93.0821589675 26.0046042746
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_059
object not in US -92.7232235987 26.0129742905
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_060
object not in US -92.4312190695 26.3149568233
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_08_061
object not in US -91.8068468354 26.6485009277
object not in US -91.5596718743 26.2481767099
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_10_062
object not in US -91.3882878074 26.8692010265
object not in US -91.0529209251 26.5494569036
object not in US -90.6895211399 26.2022205242
object not in US -90.3884837055 25.8808114854
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_08_063
object not in US -90.9378881397 27.1157119816
object not in US -90.5428274201 26.7949474627
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_09_064
object not in US -89.8782551929 27.7117712008
object not in US -89.3016856655 27.467418461
object not in US -88.7875459687 27.3018951754
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_065
object not in US -89.0185916334 28.462751965
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_066
object not in US -88.4294860653 28.8613627129
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_067
object not in US -89.4754542445 29.0587312038
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_068
object not in US -89.629322187 29.1671588438
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_08_069
object not in US -89.1327050206 29.4345146061
object not in US -88.8864621964 29.2977323655
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_070
object not in US -88.2030814341 29.4518549684
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_071
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_072
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_073
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_074
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_07_07_075
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_076
object not in US -92.44809315 25.7766498583
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_077
object not in US -92.1248770462 26.0246246076
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_078
object not in US -91.2314217939 26.3863699165
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_079
object not in US -91.5621841593 26.4095789314
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_10_080
object not in US -89.7271877066 27.3074366549
object not in US -89.2746706927 27.0094068884
object not in US -88.6429873348 26.7887774302
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_081
object not in US -88.472466927 28.0799256307
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_082
object not in US -88.0055809451 28.5048408312
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_083
object not in US -88.9859788377 28.6512475388
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_12_084
object not in US -87.1151307001 29.5669607983
object not in US -86.4591965118 29.6855322268
object not in US -87.1429698289 29.6755301607
object not in US -86.6783258052 29.6373904849
object not in US -86.7785524364 29.4240303918
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_085
object not in US -88.0690225455 29.9625856025
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_09_086
object not in US -86.5662051323 30.1743119728
object not in US -86.219912319 30.2456515606
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_087
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_088
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_089
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_08_090
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_09_091
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_08_09_092
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_093
object not in US -92.0827027443 25.4338755438
object not in US -91.781439247 25.2236401114
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_094
object not in US -91.7601595657 25.7076471231
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_095
object not in US -91.2849332451 25.8747802696
object not in US -90.9835029327 25.6087130002
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_096
object not in US -89.5172257206 26.8490331192
object not in US -89.1572011392 26.6048740666
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_097
object not in US -88.1700078747 27.9141888915
object not in US -87.3453254102 27.953498337
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_098
object not in US -87.361439855 28.4931199303
object not in US -87.2019609559 28.7054943901
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_099
object not in US -87.7914559668 28.4743391079
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_100
object not in US -86.8946341801 28.6983819011
object not in US -86.7093564159 28.7207134345
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_101
object not in US -87.290445359 28.8422799913
object not in US -87.5936140628 29.0371838098
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_102
object not in US -87.0019108184 29.2135614672
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_103
object not in US -88.139069154 29.558866819
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_104
object not in US -88.3228086105 29.6963002808
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_16_105
object not in US -85.9903390507 29.7527726352
object not in US -86.1445563085 29.7844754529
object not in US -85.922567633 29.8856347623
object not in US -86.2957863344 29.8968903842
object not in US -86.0856837325 29.7017133166
object not in US -85.7239190219 29.4472307787
object not in US -85.7239190219 29.4472307787
object not in US -85.4541490443 29.2489827584
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_106
object not in US -85.9502878524 29.9675032648
object not in US -85.6726020113 29.9044918749
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_107
object not in US -85.9123388529 30.1283047309
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_108
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_109
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_11_110
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_111
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_112
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_11_113
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_114
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_115
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_09_116
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_09_10_117
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_118
object not in US -91.3958766737 25.2554539179
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_12_119
object not in US -90.0897702988 26.0158297354
object not in US -89.522504798 25.7460831565
object not in US -89.3159766754 25.395755842
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_12_120
object not in US -87.9703823845 27.2374993165
object not in US -87.4287636574 27.0929110989
object not in US -86.8274901782 26.9714209614
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_11_121
object not in US -87.5390804473 27.5261742444
object not in US -86.9005155763 27.5390511778
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_122
object not in US -88.1990298798 27.9954683209
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_123
object not in US -86.8470321129 28.265652136
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_124
object not in US -86.4683364929 28.5793756976
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_125
object not in US -87.9066643512 28.8268925643
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_126
object not in US -86.1774701478 28.9487349396
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_127
object not in US -85.7986241276 29.1527655761
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_128
object not in US -86.1040640689 29.2433903046
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_129
object not in US -88.0155822871 29.5300392835
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_130
object not in US -85.4054927398 29.6252336562
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_131
object not in US -86.6304791168 30.1220128881
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_132
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_133
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_134
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_135
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_136
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_137
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_10_138
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_10_11_139
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_140
object not in US -91.0957043174 24.9630743654
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_141
object not in US -91.5102517021 24.9586978454
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_142
object not in US -90.6537626023 25.3153248042
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_143
object not in US -90.0297642471 25.4782446878
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_12_144
object not in US -88.8925727435 26.0378301661
object not in US -88.4465736298 25.8448283259
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_145
object not in US -88.5591304768 26.3303168698
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_146
object not in US -88.1941250917 26.5946816074
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_147
object not in US -87.6769681642 26.8284446512
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_148
object not in US -87.8076803765 27.7467149115
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_149
object not in US -86.3419905915 27.8475975138
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_150
object not in US -86.3299972646 28.1708499245
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_12_151
object not in US -85.7956056854 28.504980187
object not in US -85.7188843061 28.1516998703
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_152
object not in US -85.8113386711 28.8562964821
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_153
object not in US -85.4875323658 29.1961710187
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_154
object not in US -87.2204780583 29.137543071
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_155
object not in US -86.3841416024 29.197620302
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_14_156
object not in US -85.0190061215 29.2868112803
object not in US -84.586524788 29.2692772923
object not in US -84.0208101916 29.4062114303
object not in US -83.9005062726 29.3465178518
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_157
object not in US -86.5956376665 29.3383475951
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_158
object not in US -84.5594730789 29.7542925475
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_159
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_160
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_161
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_162
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_163
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_164
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_165
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_166
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_12_167
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_168
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_11_11_169
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_170
object not in US -89.7036980859 25.0212786646
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_171
object not in US -90.0889850165 25.1290095771
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_172
object not in US -89.6436832503 25.2359553356
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_173
object not in US -88.8379997047 25.5802938463
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_174
object not in US -87.9016768318 26.186472032
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_13_175
object not in US -87.234291264 26.469472825
object not in US -87.2782319308 25.9592097468
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_176
object not in US -86.3627914338 27.2821319428
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_177
object not in US -86.2941875513 27.4957415191
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_178
object not in US -85.8884870795 27.7527738911
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_179
object not in US -85.1943883927 28.2408347134
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_180
object not in US -85.23075944 28.7549539091
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_181
object not in US -86.5239948128 28.742776115
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_182
object not in US -84.7684250214 28.7638235417
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_14_183
object not in US -91.3899753856 29.1601560751
object not in US -91.484268691 29.2670022958
object not in US -91.2335040662 28.9999173081
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_184
object not in US -92.3164138511 29.146755114
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_185
object not in US -89.0408469077 29.3259551826
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_16_186
object not in US -88.6375251163 29.4032394216
object not in US -88.6987299057 29.4578301902
object not in US -88.6681189399 29.4305382962
object not in US -88.9451141105 29.5949811501
object not in US -88.9454065139 29.5680045417
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_187
object not in US -92.8816745587 29.4590882082
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_14_188
object not in US -86.5561383738 29.5801971558
object not in US -86.5309018704 29.4175794964
object not in US -86.2585471189 29.2479921273
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_189
object not in US -91.7068245319 29.6149660394
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_190
object not in US -88.1054340773 29.6932863075
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_13_191
object not in US -84.3064411127 29.8243976717
object not in US -84.3080223784 29.7974527036
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_15_192
object not in US -88.3474418261 30.0743856004
object not in US -88.0100687637 29.7997825867
object not in US -88.0416991363 29.7732830684
object not in US -87.8886597936 29.6629316192
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_19_193
object not in US -83.9564570464 29.9435564116
object not in US -84.0808314119 29.9493226546
object not in US -84.0956124197 29.7068415147
object not in US -84.2896599419 29.5805282853
object not in US -84.0956124197 29.7068415147
object not in US -83.9506033527 29.538001443
object not in US -84.1657445906 29.574964045
object not in US -84.2912418911 29.5535857345
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_18_194
object not in US -90.0312174071 30.1928701992
object not in US -90.0936260817 30.1658577944
object not in US -90.124834753 30.165831455
object not in US -90.124834753 30.165831455
object not in US -90.124834753 30.165831455
object not in US -90.124834753 30.165831455
object not in US -90.0936260817 30.1658577944
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_195
object not in US -88.8440295021 30.2686647166
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_196
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_197
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_198
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_199
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_200
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_201
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_202
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_203
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_204
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_205
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_13_206
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_12_12_207
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_208
object not in US -89.7341026638 24.7260797827
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_209
object not in US -89.4382198557 24.8055988499
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_210
object not in US -88.7832740532 25.1767659789
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_211
object not in US -88.3377463 25.1984383775
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_212
object not in US -88.124529113 25.4909314831
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_213
object not in US -87.7900902242 25.808002595
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_214
object not in US -86.6678961169 26.3210682277
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_215
object not in US -86.4474198132 26.6111207802
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_216
object not in US -85.9184679693 27.0259766522
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_217
object not in US -85.5246235157 27.0395024177
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_218
object not in US -85.4029664276 27.7090761227
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_219
object not in US -85.1055577243 27.5630575243
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_17_220
object not in US -89.5394507 28.5735539718
object not in US -89.5388179845 28.7083771429
object not in US -89.0518577915 28.1934048064
object not in US -89.2036900231 28.3292395111
object not in US -88.8159306056 27.4637930717
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_221
object not in US -87.5461369218 28.4698457454
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_222
object not in US -84.5510658639 28.2418330445
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_14_223
object not in US -88.8313869912 28.7308259644
object not in US -88.6491133921 28.5672247342
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_21_224
object not in US -90.6767677808 28.7613495945
object not in US -90.3063613291 28.3583238841
object not in US -90.0610551007 28.0082507529
object not in US -90.3369050443 28.331287184
object not in US -90.122110165 28.0082066344
object not in US -90.030444494 27.7387716119
object not in US -90.1518093417 27.4692604484
object not in US -89.1223809213 27.143077229
object not in US -89.0926103014 27.0890065208
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_14_225
object not in US -86.8227007559 29.0203620937
object not in US -86.7708293039 28.7222844415
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_226
object not in US -86.2318129007 29.1392545796
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_227
object not in US -91.9474819936 29.233827067
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_16_228
object not in US -83.7837841475 29.2328481375
object not in US -83.4334754499 29.3774936681
object not in US -83.677235015 29.4437787472
object not in US -83.5933182207 29.3045183892
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_15_229
object not in US -88.8796490378 29.8912147598
object not in US -89.0027387195 30.0271348431
object not in US -89.1266612711 30.1089791914
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_230
object not in US -87.3247706372 29.8413586008
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_231
object not in US -87.4477369132 29.8978252253
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_232
object not in US -89.2507934053 30.1907060184
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_233
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_14_234
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_14_235
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_236
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_14_237
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_13_13_238
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_239
object not in US -88.1028402882 25.0607668535
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_240
object not in US -86.4692618876 25.9926870058
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_241
object not in US -85.9403957781 26.4879818498
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_242
object not in US -85.5318645053 26.8780871501
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_243
object not in US -85.2655752045 26.7605396511
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_244
object not in US -84.9316576646 27.3943900097
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_245
object not in US -84.5953879815 27.4343441832
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_246
object not in US -84.2017933945 27.92946604
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_15_247
object not in US -91.2247288041 28.2988734599
object not in US -91.4740853027 28.5928249387
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_15_248
object not in US -90.8879452032 28.3016728758
object not in US -90.7682068102 28.6529654633
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_249
object not in US -89.7854293017 28.4124322527
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_15_250
object not in US -88.2164137292 28.723711526
object not in US -88.2457139126 28.8050286256
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_251
object not in US -92.2472174205 28.8242774545
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_252
object not in US -91.6946060142 28.913721038
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_253
object not in US -84.0360784737 28.6506634816
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_254
object not in US -86.6758807271 28.800781873
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_255
object not in US -92.709554641 28.8422799913
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_256
object not in US -90.3083027593 28.9785215734
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_257
object not in US -83.51102855 28.679015733
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_258
object not in US -86.4855271108 28.9575754065
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_16_259
object not in US -79.5367178511 28.6577587664
object not in US -79.1824739602 28.7906613024
object not in US -78.7873667646 29.0004015239
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_260
object not in US -88.7321670536 29.2693242598
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_261
object not in US -86.9533496138 29.7791395398
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_18_262
object not in US -87.9739164749 30.04208562
object not in US -87.8187095336 30.0125727986
object not in US -87.7576521557 29.9575544313
object not in US -88.0067459206 29.9616394215
object not in US -87.8235577433 29.7967690499
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_16_263
object not in US -89.5635672955 30.0572272444
object not in US -89.5634456743 30.0842087421
object not in US -89.5948536482 30.0303473602
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_264
object not in US -87.9364304285 30.3383486278
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_265
object not in US -81.0456172842 31.7230952089
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_266
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_267
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_268
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_269
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_15_270
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_14_14_271
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_272
object not in US -83.7434823486 27.4488627091
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_273
object not in US -89.6642895089 27.9808688739
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_274
object not in US -85.8795191212 27.9682177961
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_275
object not in US -83.420807119 28.1882514009
object not in US -82.941762503 28.4596223071
object not in US -82.8114696854 28.5603927054
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_16_276
object not in US -79.1130421493 28.0262649748
object not in US -78.7939770419 28.1338119799
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_277
object not in US -92.0569001128 28.5577816241
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_16_278
object not in US -83.7106945103 28.4459725198
object not in US -83.4405871974 28.3513012466
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_279
object not in US -89.5692080372 28.7893841234
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_280
object not in US -90.0615250877 28.7631288768
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_281
object not in US -83.1485273361 28.5789881679
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_282
object not in US -88.9230480265 28.7855687466
object not in US -88.7708992269 28.6493556375
object not in US -88.4989157882 28.3498321401
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_283
object not in US -87.5962646014 28.9293271275
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_284
object not in US -83.0894547724 28.9810739587
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_285
object not in US -87.2807198792 29.192798079
object not in US -87.310123458 29.2473815824
object not in US -87.523740228 29.3596102668
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_286
object not in US -87.1810508674 29.4334947491
object not in US -86.8165591428 29.2090917068
object not in US -86.3622976687 28.9541282672
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_287
object not in US -85.5270540322 29.6835175759
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_288
object not in US -88.7527472555 30.0789305096
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_23_289
object not in US -86.9734942251 30.1304943853
object not in US -87.0678713634 30.1056769543
object not in US -87.069504831 30.0517319704
object not in US -87.0703208826 30.0247597155
object not in US -87.1645701802 29.9998722862
object not in US -87.1949346966 30.0275250345
object not in US -86.9827465815 29.8338103701
object not in US -87.1382054549 29.8373538012
object not in US -87.2291757496 29.9203063726
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_290
object not in US -81.0746560611 31.0754331876
object not in US -80.7840016494 30.8115265454
object not in US -81.06586646 30.8312010835
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_291
object not in US -80.7084704485 31.9162429451
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_292
object not in US -80.1056988387 32.495138862
object not in US -79.5285784894 32.7757736126
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_17_293
object not in US -79.4966456246 32.7732497847
object not in US -79.2072759799 33.0480303719
object not in US -79.117477519 32.9865337293
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_294
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_15_15_295
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_296
object not in US -85.2928144297 24.9049893554
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_297
object not in US -89.7872939007 27.5499922632
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_17_298
object not in US -88.3821524157 27.9979386426
object not in US -88.0202370327 27.7771728394
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_299
object not in US -83.1057435148 27.8744703586
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_300
object not in US -85.6062917901 27.9320605764
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_301
object not in US -85.1677804117 28.158880117
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_302
object not in US -91.3162151458 28.2709988552
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_303
object not in US -91.837504243 28.3184521653
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_304
object not in US -88.0066740179 28.4509255926
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_305
object not in US -84.9429292134 28.3659948014
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_17_306
object not in US -86.0036680473 28.6735702694
object not in US -85.6777095321 28.3931050433
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_307
object not in US -87.7866025216 28.6900074634
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_308
object not in US -84.2831455993 28.6349895535
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_309
object not in US -87.6937697051 28.7153342356
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_310
object not in US -87.4765112967 28.7921423034
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_311
object not in US -87.0167399834 28.7282722983
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_24_312
object not in US -85.9562970639 29.0768711327
object not in US -86.1392252027 29.1364966763
object not in US -85.807878703 28.937147031
object not in US -85.807878703 28.937147031
object not in US -85.294811141 28.7033520627
object not in US -85.0000392484 28.4492171522
object not in US -84.5875481483 28.1354433303
object not in US -83.9934880807 27.8387844681
object not in US -83.6742923656 27.5803223034
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_313
object not in US -88.7969996068 29.0271801926
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_314
object not in US -87.1603043306 29.082261301
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_315
object not in US -87.8659075437 29.2848148756
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_17_316
object not in US -78.3822500875 29.0183559325
object not in US -78.178711029 29.1623822812
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_317
object not in US -88.4102369169 30.0481885799
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_318
object not in US -81.1502799592 29.9166791268
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_20_319
object not in US -80.2694005024 31.5324064364
object not in US -79.8222989891 31.5525971769
object not in US -79.6617402925 31.5671152083
object not in US -79.8538314496 31.555044153
object not in US -79.885365526 31.5574835554
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_320
object not in US -80.7321358762 31.6742594592
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_321
object not in US -80.1478785884 32.0920937443
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_20_322
object not in US -79.3432993133 32.1378296426
object not in US -79.2646172233 32.2669433825
object not in US -78.8455999948 32.5574648189
object not in US -79.1631915565 32.3128538751
object not in US -79.1601044481 32.3397016967
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_323
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_18_324
object not in US -78.5978250575 33.5391666732
object not in US -78.8262768764 33.5313513293
object not in US -78.7297670542 33.5232556437
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_325
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_16_16_326
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_327
object not in US -83.0257665479 26.8445468285
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_328
object not in US -90.090765474 27.1191777571
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_329
object not in US -89.6967932327 27.3343019745
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_330
object not in US -82.8521017317 27.1585180321
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_331
object not in US -88.3579024105 27.6203218004
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_19_332
object not in US -89.2384849984 27.7903757867
object not in US -89.2393132862 27.68259541
object not in US -88.9999838098 27.2768265241
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_333
object not in US -82.7603838621 27.585144244
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_334
object not in US -90.8845566332 27.9243225652
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_18_335
object not in US -89.265143937 28.3026502941
object not in US -89.0234095288 27.9775500158
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_336
object not in US -91.7413552966 28.0771697813
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_337
object not in US -87.5181944648 28.3614345817
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_18_338
object not in US -89.1414978168 28.4366781464
object not in US -89.1721574696 28.4368813044
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_339
object not in US -86.9022927335 28.4558017073
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_340
object not in US -88.4628146176 28.6999493814
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_341
object not in US -78.3524827337 28.2294186814
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_342
object not in US -87.9659811878 28.9357443266
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_343
object not in US -88.583050741 28.8901290918
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_344
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_18_345
object not in US -90.3393198366 29.032384758
object not in US -90.2771671513 28.8707144212
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_346
object not in US -82.9644370295 29.0012735907
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_18_347
object not in US -89.0397848997 29.4338537429
object not in US -88.856796738 29.1895699345
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_348
object not in US -88.1756410582 29.262615693
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_349
object not in US -80.8466618894 29.1646353863
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_350
object not in US -80.8006575678 29.3237257713
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_18_351
object not in US -80.7777339555 29.5656908464
object not in US -80.9456736262 29.7671166958
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_352
object not in US -78.1263672234 29.5915739562
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_353
object not in US -89.2822097184 30.1639011765
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_22_354
object not in US -86.5018616322 30.2265796255
object not in US -86.5038127609 30.1726411709
object not in US -86.5047875095 30.1456721375
object not in US -86.4434062512 30.117003331
object not in US -86.2014173235 29.9211427369
object not in US -86.3850830891 30.0074031713
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_355
object not in US -87.9364304285 30.3383486278
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_19_356
object not in US -80.5214502838 30.2781125815
object not in US -80.7445801952 30.240128976
object not in US -80.7134550261 30.237895938
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_19_357
object not in US -80.0781244772 30.6240904298
object not in US -79.6866405088 30.4580485762
object not in US -79.689520804 30.4311797112
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_358
object not in US -81.223189638 30.4900430646
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_20_359
object not in US -80.1101475601 30.9245218016
object not in US -80.1442479616 30.9000206723
object not in US -80.483576292 30.979447997
object not in US -80.3376532604 30.8603605544
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_19_360
object not in US -80.6769328 31.2642088343
object not in US -80.8079557807 31.2193466624
object not in US -80.9235236664 31.3357198622
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_23_361
object not in US -78.3887116006 31.5688386428
object not in US -78.2146031556 31.6889291904
object not in US -78.6221003646 31.4808485028
object not in US -78.6163306932 31.2633642596
object not in US -78.3605030135 31.5392044052
object not in US -78.3337720042 31.2383959927
object not in US -78.0805608202 31.4868554999
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_362
object not in US -79.7185686409 31.9238165886
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_22_363
object not in US -78.3959780855 32.0306152155
object not in US -78.2393461839 32.2608355474
object not in US -78.1056994764 32.303100333
object not in US -77.9341358668 32.6402035228
object not in US -77.9641833573 32.1545985247
object not in US -77.781084804 32.0834535436
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_19_364
object not in US -78.2795304018 32.9694997777
object not in US -78.3163783783 32.6744841714
object not in US -77.8780556911 32.8249718092
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_20_365
object not in US -78.2897404033 33.4041361093
object not in US -78.3587412453 33.1120099907
object not in US -78.0008014698 33.3784817299
object not in US -77.7801233482 33.5753856202
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_17_17_366
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_367
object not in US -89.0381005849 26.4694589119
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_368
object not in US -87.9823976677 26.6452815037
object not in US -88.0125047542 26.6457631424
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_369
object not in US -89.3667031371 26.7945230553
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_370
object not in US -89.0026846429 27.00754157
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_371
object not in US -82.6926131692 26.8525277757
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_372
object not in US -87.7256405611 27.3410711514
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_373
object not in US -90.8831122931 27.7626376984
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_20_374
object not in US -86.549597205 28.0152096015
object not in US -86.2820807564 27.8188880393
object not in US -86.047088695 27.5960674867
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_375
object not in US -85.1451915804 27.9961430533
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_23_376
object not in US -86.8461695527 28.2925994258
object not in US -87.0798271471 28.6757817134
object not in US -86.5401589184 28.2846337212
object not in US -85.8524173719 27.8864266017
object not in US -85.5550232617 27.7145180225
object not in US -85.291575052 27.4892447653
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_377
object not in US -86.2627491027 28.3307215761
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_378
object not in US -89.8770512648 28.6821856238
object not in US -89.969254359 28.7092069949
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_379
object not in US -87.8415481959 28.9876541544
object not in US -87.5721425663 28.6591334072
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_380
object not in US -85.5270503964 29.0086011528
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_381
object not in US -80.5726589676 28.7928623894
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_382
object not in US -85.3885490553 29.3276317338
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_20_383
object not in US -80.3903327237 29.0769988791
object not in US -79.9824642982 29.1268919022
object not in US -80.2220316024 28.9017812738
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_384
object not in US -89.0707581325 29.4340814975
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_385
object not in US -88.9738622916 29.811054218
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_386
object not in US -80.718412337 29.2095213371
object not in US -80.6876161346 29.2072828023
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_387
object not in US -80.1516276247 29.60040779
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_388
object not in US -88.2247192578 29.9648196785
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_389
object not in US -86.1295055526 30.1619848559
object not in US -85.8546103593 30.0184660965
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_21_390
object not in US -79.7832364613 30.1405599327
object not in US -79.9581851128 29.9646578264
object not in US -80.1753528961 29.9814019052
object not in US -79.8369476697 29.9280562953
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_391
object not in US -80.554740631 30.5784261445
object not in US -80.3754592409 30.4839898466
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_392
object not in US -81.1046785687 30.7526537289
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_393
object not in US -79.4093315808 30.9777537788
object not in US -79.4436291962 30.9534363942
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_394
object not in US -78.6546720963 30.9412311582
object not in US -78.7893245739 30.8715508199
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_395
object not in US -77.9886255203 31.2070511076
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_20_396
object not in US -79.0944305126 31.5210815297
object not in US -79.2489245245 31.5609717365
object not in US -79.1696735192 31.4188950838
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_397
object not in US -80.5635025475 31.7705424313
object not in US -80.5951255908 31.772811224
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_398
object not in US -79.8078989925 31.6869442694
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_21_399
object not in US -77.9062148692 31.6065395497
object not in US -77.9308903822 31.6630948243
object not in US -78.0277779591 31.4006196377
object not in US -77.9953817339 31.1533949785
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_24_400
object not in US -80.3464555768 32.0255590368
object not in US -80.3092497618 32.0769834571
object not in US -80.3064951401 32.1038593319
object not in US -80.2775322314 32.0746462203
object not in US -80.1795987438 32.0944621036
object not in US -80.058378034 32.0312011837
object not in US -80.058378034 32.0312011837
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_401
object not in US -80.0243794712 32.3536301087
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_402
object not in US -77.9444677493 32.5597616147
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_403
object not in US -78.5771130202 32.9140894942
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_404
object not in US -77.7550336479 33.5188616935
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_18_405
object not in US -78.3356859958 33.8146286011
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_18_19_406
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_407
object not in US -82.5102863737 26.0596986655
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_408
object not in US -82.2485751065 26.3402503497
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_409
object not in US -82.3560811098 26.508704843
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_410
object not in US -87.7058920142 26.8828301957
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_411
object not in US -87.2805125628 26.9820527792
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_412
object not in US -86.8777731939 27.2959595297
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_413
object not in US -85.7293829778 27.9093031638
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_414
object not in US -87.4971581012 27.9835477532
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_415
object not in US -88.041091895 28.2627142762
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_416
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_21_417
object not in US -85.8342600334 28.3173960004
object not in US -85.74362097 28.287413709
object not in US -85.4109146841 28.1948878067
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_418
object not in US -87.7896384209 28.5552111056
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_419
object not in US -86.1952822873 28.4905765314
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_420
object not in US -80.4795013784 28.1635626564
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_421
object not in US -87.3300385583 28.5194352704
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_422
object not in US -84.9290491433 28.6353417759
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_23_423
object not in US -80.1903255973 28.6015681704
object not in US -79.6732726792 28.5335250511
object not in US -79.9262964967 28.7704418791
object not in US -79.8121383911 28.6801217776
object not in US -79.6676128441 28.5872222932
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_424
object not in US -88.5783547273 29.2137594467
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_20_425
object not in US -84.1751175765 28.9001305713
object not in US -84.1168294097 28.8434464307
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_24_426
object not in US -78.4300016668 28.6160086083
object not in US -78.3013956052 28.6584526398
object not in US -78.5482612356 28.924924075
object not in US -78.9559952827 28.8796079284
object not in US -79.0413903528 28.6702068012
object not in US -78.9036917047 28.5227754516
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_427
object not in US -84.5676440816 29.0524408509
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_24_428
object not in US -85.1130508605 29.2634301947
object not in US -84.8758563744 29.0651588281
object not in US -84.7597842872 28.925456036
object not in US -84.3122673684 28.6632931141
object not in US -84.0491453815 28.4352643569
object not in US -84.2737164297 28.7965749901
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_429
object not in US -85.7203654356 29.5281021495
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_430
object not in US -78.3598313545 29.2061428733
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_20_431
object not in US -79.4720413282 29.5464431265
object not in US -78.9721828294 29.55863668
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_432
object not in US -88.7204990201 30.1595666589
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_21_433
object not in US -79.147048074 30.2241426279
object not in US -78.497932634 30.1407871376
object not in US -78.7152272769 30.1599854014
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_434
object not in US -78.0536358609 30.1817825572
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_22_435
object not in US -78.0313541082 30.6139283174
object not in US -78.2939107115 30.5293909299
object not in US -78.0436491172 30.2622688131
object not in US -78.1099149472 29.7257069025
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_436
object not in US -78.5856701302 30.9894408302
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_437
object not in US -78.6605094439 31.1587224917
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_438
object not in US -78.5583319125 31.7465119443
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_439
object not in US -78.0976837557 32.1124740429
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_20_440
object not in US -79.065408103 32.6029087488
object not in US -78.9985442302 32.6244708107
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_441
object not in US -77.6732853349 34.1348809073
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_19_19_442
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_443
object not in US -82.0985555997 25.9533448815
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_444
object not in US -81.9491488498 26.3212695498
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_445
object not in US -87.6525032344 26.585691786
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_21_446
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_447
object not in US -90.3939546326 27.2801818104
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_448
object not in US -87.3808263983 27.7655448327
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_449
object not in US -88.2952402006 27.7272804689
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_22_450
object not in US -85.4246674843 27.8986533906
object not in US -85.5099585789 28.0365733196
object not in US -85.2976759235 28.0018962553
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_21_451
object not in US -80.2479469922 27.7130900719
object not in US -79.864904564 27.5746566431
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_452
object not in US -87.2798724377 28.1138735453
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_453
object not in US -80.1167207134 28.1086986603
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_454
object not in US -78.3778599425 28.014945948
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_455
object not in US -85.0074217979 28.9083766479
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_456
object not in US -79.21013961 28.820103053
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_457
object not in US -84.5616483123 29.1602022315
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_458
object not in US -85.4516364195 29.302886994
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_22_459
object not in US -80.1761123865 29.3585546473
object not in US -79.8174941818 29.2221883173
object not in US -79.607808922 29.1511353193
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_24_460
object not in US -87.9433257821 30.0146164593
object not in US -87.7918602397 29.8232151816
object not in US -87.9433257821 30.0146164593
object not in US -87.7912464172 29.8501900094
object not in US -87.9139138664 29.933187639
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_461
object not in US -86.8877469543 29.8855340321
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_462
object not in US -79.9051793104 31.0713403979
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_22_463
object not in US -80.9677476076 31.2034274633
object not in US -80.5356624665 31.0915663232
object not in US -80.7005168918 31.0221987423
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_464
object not in US -79.8221949581 31.850606544
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_21_465
object not in US -78.8456104621 32.0152809757
object not in US -78.7474477021 32.0340337859
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_466
object not in US -78.8263990342 32.9894884249
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_21_467
object not in US -78.848791526 33.0726613751
object not in US -78.8615817012 32.9653419433
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_20_20_468
object not in US -78.6523447218 33.6250747164
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_469
object not in US -82.3705635028 25.1353547635
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_470
object not in US -82.0662673419 25.2238597692
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_471
object not in US -78.6274711614 25.0624531491
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_472
object not in US -81.7142201374 25.5239963685
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_473
object not in US -81.5500298352 25.7015579406
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_474
object not in US -86.9662016737 27.3789570563
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_24_475
object not in US -84.7702061412 27.5765690748
object not in US -84.5362393805 27.4048230962
object not in US -84.8019795052 27.5509118934
object not in US -84.599780599 27.3536280522
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_476
object not in US -86.6780058692 27.8299064216
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_477
object not in US -78.5740310173 27.3827809286
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_478
object not in US -84.08156374 27.8969117175
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_479
object not in US -78.3520262505 27.7145159825
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_480
object not in US -86.878481218 28.23946099
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_22_481
object not in US -79.431410657 27.9179263329
object not in US -78.8183719915 27.9192695187
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_482
object not in US -84.4778645494 28.4546067101
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_22_483
object not in US -83.7072474766 28.4998109294
object not in US -83.5864857914 28.4667723825
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_484
object not in US -79.068369678 28.4286978781
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_485
object not in US -85.6941856072 28.7174634968
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_22_486
object not in US -78.6320416991 28.471631583
object not in US -78.4584653259 28.3746415743
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_487
object not in US -79.4656824183 29.0311266902
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_488
object not in US -80.7492099488 29.211752476
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_489
object not in US -88.230628609 29.6411029693
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_24_490
object not in US -84.4430337819 29.6142605043
object not in US -84.1625095954 29.6288466951
object not in US -83.9061392859 29.752047898
object not in US -83.6667207865 29.6053832949
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_23_491
object not in US -79.0212760479 29.400206638
object not in US -78.9660762564 29.6123304072
object not in US -78.4722090538 29.5688874878
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_492
object not in US -78.3000707973 29.4447902925
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_493
object not in US -80.4351522399 29.5676906323
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_494
object not in US -84.1152011319 29.8968586745
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_24_495
object not in US -79.3897473997 29.7293608896
object not in US -79.4089317832 29.8393477206
object not in US -79.5657814653 30.1231558508
object not in US -79.7547090078 30.4092601225
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_496
object not in US -80.7933507688 29.7292320524
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_497
object not in US -80.5889687999 30.2288890047
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_498
object not in US -79.1669514436 30.6053568362
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_24_499
object not in US -79.7231447584 30.7048327215
object not in US -79.8822552716 30.6902392376
object not in US -79.8083416021 30.7928396493
object not in US -80.0871644558 30.8415023601
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_22_500
object not in US -78.3958430687 30.7284756661
object not in US -78.449709061 30.543386282
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_501
object not in US -78.9612323053 30.750689207
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_24_502
object not in US -81.0746560611 31.0754331876
object not in US -81.0946934856 30.8602479884
object not in US -80.8260434377 31.0310983169
object not in US -80.959218398 30.9591903494
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_503
object not in US -80.6090266687 30.9885561627
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_22_504
object not in US -78.8959069352 31.3145723577
object not in US -78.7889945719 31.4139083471
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_505
object not in US -77.9096312737 31.5797156496
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_506
object not in US -79.2154054953 31.8563835853
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_507
object not in US -78.6454444527 32.3506528382
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_508
object not in US -79.9811559214 32.4586859745
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_21_509
object not in US -78.2257325701 32.8833982484
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_21_22_510
object not in US -78.675235611 33.4373716589
object not in US -78.4081899175 33.4957686329
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_511
object not in US -82.1122719084 24.6347449236
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_512
object not in US -81.4764565569 25.1576103241
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_513
object not in US -79.0102237929 26.4748163362
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_514
object not in US -86.118397145 27.3287322009
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_23_515
object not in US -85.7502266723 27.4246643939
object not in US -85.6942451717 27.3149397151
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_516
object not in US -83.3228796818 27.373295254
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_517
object not in US -85.1901155211 27.7011502222
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_23_518
object not in US -79.1779073116 27.4362514219
object not in US -78.6436100925 27.3078676662
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_519
object not in US -87.2820990897 28.0330365655
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_520
object not in US -83.5944704993 27.8731786768
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_521
object not in US -87.7980948087 28.1778486135
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_24_522
object not in US -83.4513380274 28.1898317598
object not in US -83.1479449548 28.1467929401
object not in US -82.9725586064 28.0291608816
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_523
object not in US -83.1117903731 28.2258547599
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_524
object not in US -85.2490382867 28.3778065594
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_525
object not in US -83.3649036355 28.5634410773
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_526
object not in US -85.3768048795 28.9222780011
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_23_527
object not in US -87.3402951056 29.2749928139
object not in US -87.2792174526 29.2467294927
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_528
object not in US -80.2847169507 29.2043807936
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_24_529
object not in US -84.5375324015 29.591298719
object not in US -84.234091402 29.4699956047
object not in US -84.1493580134 29.3310990573
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_530
object not in US -78.5631916176 30.1194683737
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_531
object not in US -79.41824718 30.8971643763
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_532
object not in US -80.8894683822 31.3604230671
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_24_533
object not in US -79.400551291 31.6275398931
object not in US -79.9370629436 31.6698285397
object not in US -79.6588178412 31.5939814717
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_534
object not in US -80.6031115715 31.692155823
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_23_535
object not in US -78.5615695131 31.7196725348
object not in US -78.5615695131 31.7196725348
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_536
object not in US -77.7044925366 32.9175130896
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_537
object not in US -78.1448926418 33.0117876986
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_22_22_538
object not in US -77.6157945653 33.5873889437
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_539
object not in US -81.5707978024 24.3835886296
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_540
object not in US -81.1449849227 24.8649359602
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_541
object not in US -80.7150611358 25.0218084995
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_542
object not in US -79.9619721403 25.7179408927
object not in US -79.5488838829 25.6567716004
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_543
object not in US -79.707421971 26.156081516
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_544
object not in US -79.1415505306 26.3781934662
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_545
object not in US -85.8960200188 26.8366558766
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_546
object not in US -85.2135406466 27.2167036829
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_547
object not in US -79.03771371 26.7747103486
object not in US -79.4007543257 26.7789903843
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_548
object not in US -86.7851425117 27.3475196497
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_549
object not in US -87.8404719202 27.6394806768
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_550
object not in US -84.0865493923 27.3035887672
object not in US -84.1439177181 27.3602161626
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_551
object not in US -83.0881717761 27.2526798031
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_552
object not in US -83.1796023174 27.6894973239
object not in US -83.5822377031 28.0615275812
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_553
object not in US -86.434349167 27.8232724837
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_554
object not in US -84.5674013952 27.9456890574
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_555
object not in US -78.4397115759 27.7496849339
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_556
object not in US -86.0865928725 28.1366041689
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_557
object not in US -79.8262693727 27.9503527751
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_558
object not in US -85.8932181726 28.3732704815
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_559
object not in US -79.2287400017 28.0903369546
object not in US -78.9337532662 27.9836045159
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_560
object not in US -80.0646043463 28.3211226698
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_561
object not in US -86.5337794057 29.3366915478
object not in US -86.2657677709 29.0592878926
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_562
object not in US -85.2189343411 28.9974517225
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_563
object not in US -85.5443610577 29.3061419916
object not in US -85.5431292821 29.3330955257
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_564
object not in US -85.8121530668 29.5581217046
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_565
object not in US -79.029860996 29.0485924991
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_566
object not in US -79.8790558399 29.2270759523
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_567
object not in US -86.1167246975 29.702653151
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_568
object not in US -79.68247969 29.6177296408
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_569
object not in US -80.6694171703 30.0451903965
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_570
object not in US -81.074604537 30.3986851709
object not in US -81.045921374 30.3696345938
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_571
object not in US -78.4379349057 30.3795667168
object not in US -78.3348465951 30.4516943235
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_572
object not in US -78.5303851178 30.659062811
object not in US -78.3632563555 30.9968603232
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_573
object not in US -79.1266231121 30.6833145525
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_574
object not in US -78.3496767812 32.4062355654
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_23_575
object not in US -79.5465306803 32.6146663322
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_23_24_576
object not in US -78.7876362096 33.5822950043
object not in US -78.7167485579 33.6305161735
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_577
object not in US -80.895802104 24.3353140113
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_578
object not in US -80.3938342107 24.6469665862
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_579
object not in US -80.0230746633 25.102478771
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_580
object not in US -86.2209743171 26.2275859678
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_581
object not in US -79.1552504735 25.974024337
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_582
object not in US -86.3659596404 26.3664761818
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_583
object not in US -86.572379215 26.4799901489
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_584
object not in US -84.9192405858 26.4506258282
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_585
object not in US -85.7220537143 26.6692164837
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_586
object not in US -78.6903437589 26.3650554639
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_587
object not in US -86.5905213553 26.8305343097
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_588
object not in US -84.1833140064 26.6879840052
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_589
object not in US -84.7437376939 26.9283717413
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_590
object not in US -83.2064647427 26.8544775258
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_591
object not in US -83.8928750218 26.9976674765
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_592
object not in US -78.4254638734 26.8277157858
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_593
object not in US -83.7737909914 27.4503644945
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_594
object not in US -83.2798577672 27.5599168767
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_595
object not in US -83.49045837 27.5979538145
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_596
object not in US -86.0363221939 27.8653544508
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_597
object not in US -85.4221731062 27.9525088417
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_598
object not in US -87.0740142043 27.839685758
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_599
object not in US -85.2236543439 28.268921368
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_600
object not in US -84.8704844114 28.579012034
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_601
object not in US -82.7521873247 28.5300093891
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_602
object not in US -78.5733902314 28.7103078292
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_603
object not in US -80.5252463664 29.6014481647
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_604
object not in US -85.4860062599 29.898098003
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_605
object not in US -87.973351982 30.0690628075
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_606
object not in US -85.5768411309 29.9552480637
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_607
object not in US -78.2595304482 29.5224567163
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_608
object not in US -79.6595701881 29.8326438587
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_609
object not in US -80.3942517769 30.2958044809
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_610
object not in US -79.5298026474 30.743580727
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_611
object not in US -79.199146967 30.8791443459
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_612
object not in US -79.9252246812 31.1812647254
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_613
object not in US -80.603430149 31.3672538071
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_614
object not in US -79.9493184492 32.4562703459
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_615
object not in US -79.2320018063 32.8333115797
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_616
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_617
1km_on_3km_pbl1_WSPD10MAX_20060113-1200_24_24_618
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2006011312_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20070104-1200_01_01_000
object not in US -99.9459188482 24.4852495864
3km_pbl1_WSPD10MAX_20070104-1200_01_01_001
object not in US -100.285410088 24.9153421352
3km_pbl1_WSPD10MAX_20070104-1200_01_01_002
object not in US -100.474258036 25.3039740707
3km_pbl1_WSPD10MAX_20070104-1200_03_03_003
object not in US -93.4381436182 29.4184119654
3km_pbl1_WSPD10MAX_20070104-1200_04_05_004
object not in US -93.0348488531 29.4015891289
object not in US -92.9134529778 29.4853573513
3km_pbl1_WSPD10MAX_20070104-1200_05_06_005
object not in US -92.871340331 29.1085362993
object not in US -92.7810567769 29.1914723229
3km_pbl1_WSPD10MAX_20070104-1200_06_06_006
object not in US -100.248116359 25.1341550158
3km_pbl1_WSPD10MAX_20070104-1200_07_07_007
object not in US -92.7749275818 28.975764157
3km_pbl1_WSPD10MAX_20070104-1200_08_09_008
object not in US -100.325793536 25.0198055224
object not in US -100.325793536 25.0198055224
3km_pbl1_WSPD10MAX_20070104-1200_08_14_009
object not in US -92.7949878176 27.5192150955
object not in US -92.5305933553 27.8751675204
object not in US -92.0484707568 28.1534574601
object not in US -91.8997826185 28.3714629071
object not in US -91.4161696044 28.8361962767
object not in US -91.2341842976 29.0538561105
object not in US -91.0487792702 29.0285370691
3km_pbl1_WSPD10MAX_20070104-1200_09_10_010
object not in US -92.3312063574 28.4721515225
object not in US -92.2416678236 28.5816329802
3km_pbl1_WSPD10MAX_20070104-1200_10_11_011
object not in US -92.097952528 29.0426120185
object not in US -92.0098489098 29.2598429595
3km_pbl1_WSPD10MAX_20070104-1200_10_10_012
3km_pbl1_WSPD10MAX_20070104-1200_10_11_013
3km_pbl1_WSPD10MAX_20070104-1200_11_12_014
object not in US -91.8501624253 28.9924849005
object not in US -91.6370495227 29.1572374795
3km_pbl1_WSPD10MAX_20070104-1200_12_13_015
object not in US -90.6791951358 29.1119487983
object not in US -90.5561677094 29.1934615242
3km_pbl1_WSPD10MAX_20070104-1200_13_14_016
3km_pbl1_WSPD10MAX_20070104-1200_15_16_017
object not in US -90.2807211312 30.1116228678
object not in US -90.1248695799 30.1928137417
3km_pbl1_WSPD10MAX_20070104-1200_16_17_018
3km_pbl1_WSPD10MAX_20070104-1200_17_18_019
3km_pbl1_WSPD10MAX_20070104-1200_17_17_020
3km_pbl1_WSPD10MAX_20070104-1200_18_18_021
3km_pbl1_WSPD10MAX_20070104-1200_18_19_022
3km_pbl1_WSPD10MAX_20070104-1200_18_21_023
3km_pbl1_WSPD10MAX_20070104-1200_19_19_024
object not in US -90.4609287208 28.6544464583
3km_pbl1_WSPD10MAX_20070104-1200_19_19_025
3km_pbl1_WSPD10MAX_20070104-1200_19_19_026
3km_pbl1_WSPD10MAX_20070104-1200_20_20_027
3km_pbl1_WSPD10MAX_20070104-1200_21_21_028
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_01_01_000
object not in US -99.9459188482 24.4852495864
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_01_01_001
object not in US -100.285410088 24.9153421352
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_01_01_002
object not in US -100.474258036 25.3039740707
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_03_03_003
object not in US -93.4719804451 29.4984701166
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_04_04_004
object not in US -93.3332852951 29.0703591995
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_04_05_005
object not in US -93.1913721822 29.4517685157
object not in US -93.0717506048 29.5896211846
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_08_10_006
object not in US -92.7638696934 27.4929527018
object not in US -92.5271510038 27.7404646152
object not in US -92.2599649009 28.0420285893
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_09_15_007
object not in US -92.0406654466 27.7762046988
object not in US -91.7699675397 27.9689502146
object not in US -91.8635338145 28.0754331606
object not in US -91.5925393046 28.3217575921
object not in US -91.2598257274 28.6490557506
object not in US -90.954928448 28.8944165044
object not in US -90.6176218415 29.1392333676
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_09_09_008
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_09_09_009
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_10_12_010
object not in US -92.0557721931 28.5038649565
object not in US -91.8486342436 28.9115861427
object not in US -91.6402186404 29.3460357327
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_10_10_011
object not in US -92.2231686378 29.1214293986
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_10_10_012
object not in US -92.0751166248 29.4206822559
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_10_11_013
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_13_13_014
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_14_14_015
object not in US -90.9881792917 29.1369109178
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_14_14_016
object not in US -90.5563213263 29.2204347018
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_14_14_017
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_16_16_018
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_16_16_019
object not in US -90.0 30.1389094957
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_16_16_020
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_17_17_021
object not in US -89.8126957273 30.192738465
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_17_17_022
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_19_19_023
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_20_20_024
object not in US -89.8461873621 28.7630510325
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_20_20_025
object not in US -89.6911867272 29.1403499506
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_20_20_026
object not in US -89.1300561077 29.7312613689
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_21_21_027
object not in US -89.6932187036 28.4931278782
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_21_21_028
object not in US -89.4442926328 29.1125441332
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_21_21_029
object not in US -88.5688687016 29.8611601066
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_22_22_030
object not in US -89.106677131 28.8948619612
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_22_22_031
1km_on_3km_pbl1_WSPD10MAX_20070104-1200_23_23_032
object not in US -88.8284893559 28.9735280801
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2007010412_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20070107-1200_01_01_000
3km_pbl1_WSPD10MAX_20070107-1200_01_01_001
3km_pbl1_WSPD10MAX_20070107-1200_17_17_002
object not in US -89.0226098338 28.0584040709
3km_pbl1_WSPD10MAX_20070107-1200_17_17_003
object not in US -88.3759502638 28.3752833339
3km_pbl1_WSPD10MAX_20070107-1200_18_18_004
object not in US -89.3984806608 26.5255313587
3km_pbl1_WSPD10MAX_20070107-1200_18_18_005
object not in US -89.547398773 26.8491456376
3km_pbl1_WSPD10MAX_20070107-1200_18_18_006
object not in US -88.939954433 27.2224675386
3km_pbl1_WSPD10MAX_20070107-1200_18_19_007
object not in US -88.6927246848 27.5972873434
object not in US -88.3601305226 27.4856311155
3km_pbl1_WSPD10MAX_20070107-1200_18_18_008
object not in US -88.2543556708 28.3197470225
3km_pbl1_WSPD10MAX_20070107-1200_18_18_009
object not in US -87.8539655888 28.4214758169
3km_pbl1_WSPD10MAX_20070107-1200_19_22_010
object not in US -89.0373247779 26.5501840104
object not in US -88.6169343984 26.4924185639
object not in US -88.1369466909 26.4323641211
object not in US -87.5361323117 26.4219602694
3km_pbl1_WSPD10MAX_20070107-1200_19_21_011
object not in US -88.5486184055 27.056971806
object not in US -88.2184680195 26.9180826683
object not in US -87.9473197074 26.8870131997
3km_pbl1_WSPD10MAX_20070107-1200_19_19_012
object not in US -87.739418199 28.0689763118
3km_pbl1_WSPD10MAX_20070107-1200_19_19_013
object not in US -87.580778927 28.3087099652
3km_pbl1_WSPD10MAX_20070107-1200_19_19_014
object not in US -86.922828875 28.7799955744
3km_pbl1_WSPD10MAX_20070107-1200_19_19_015
object not in US -85.9168913034 30.0204497722
3km_pbl1_WSPD10MAX_20070107-1200_20_20_016
object not in US -87.9361857976 27.4255202916
3km_pbl1_WSPD10MAX_20070107-1200_20_20_017
object not in US -87.3474949708 27.8726711567
3km_pbl1_WSPD10MAX_20070107-1200_20_20_018
object not in US -87.0563786258 28.4324889431
3km_pbl1_WSPD10MAX_20070107-1200_20_20_019
object not in US -86.3622976687 28.9541282672
3km_pbl1_WSPD10MAX_20070107-1200_20_20_020
object not in US -85.9406263457 29.4542625606
3km_pbl1_WSPD10MAX_20070107-1200_21_24_021
object not in US -87.4878847645 27.1479783552
object not in US -87.1279436942 27.032523694
object not in US -86.7093659583 26.8875754859
object not in US -86.3843306541 26.6900979157
3km_pbl1_WSPD10MAX_20070107-1200_21_22_022
object not in US -87.0171462589 27.7035770234
object not in US -86.5285521356 27.7450133572
3km_pbl1_WSPD10MAX_20070107-1200_21_21_023
object not in US -86.4828111568 28.1751776554
3km_pbl1_WSPD10MAX_20070107-1200_21_21_024
object not in US -86.0990292496 28.5955804009
3km_pbl1_WSPD10MAX_20070107-1200_21_21_025
object not in US -85.4516364195 29.302886994
3km_pbl1_WSPD10MAX_20070107-1200_21_21_026
object not in US -78.7881529319 32.7694533381
3km_pbl1_WSPD10MAX_20070107-1200_21_24_027
object not in US -77.5407038212 33.661772191
object not in US -77.5443006442 33.634988827
object not in US -77.8017218327 33.6586924583
object not in US -77.5907302883 33.7748783151
3km_pbl1_WSPD10MAX_20070107-1200_22_24_028
object not in US -85.7672665059 28.4500784793
object not in US -85.3740350777 28.328451995
object not in US -85.0483085421 28.1003097175
3km_pbl1_WSPD10MAX_20070107-1200_22_22_029
object not in US -85.5086108896 28.7380504543
3km_pbl1_WSPD10MAX_20070107-1200_22_22_030
object not in US -85.0821604918 29.2622487812
3km_pbl1_WSPD10MAX_20070107-1200_22_22_031
object not in US -84.4632836215 29.8042183524
3km_pbl1_WSPD10MAX_20070107-1200_22_24_032
object not in US -78.387422591 33.1416224926
object not in US -78.8168648088 32.7989801628
object not in US -78.4514784964 33.1471931325
3km_pbl1_WSPD10MAX_20070107-1200_22_22_033
object not in US -78.951191986 33.0270115693
3km_pbl1_WSPD10MAX_20070107-1200_22_22_034
object not in US -78.7200059912 33.6037020891
3km_pbl1_WSPD10MAX_20070107-1200_23_23_035
object not in US -87.5571202458 25.5616804224
3km_pbl1_WSPD10MAX_20070107-1200_23_24_036
object not in US -86.9671179804 26.35561137
object not in US -86.6978975665 26.3218656262
3km_pbl1_WSPD10MAX_20070107-1200_23_23_037
object not in US -86.3404304142 27.065924441
3km_pbl1_WSPD10MAX_20070107-1200_23_24_038
object not in US -86.1424279345 27.491190106
object not in US -85.8120162092 27.399777042
3km_pbl1_WSPD10MAX_20070107-1200_23_24_039
object not in US -85.7903338265 27.9113451247
object not in US -85.4625532985 27.7381981156
3km_pbl1_WSPD10MAX_20070107-1200_23_23_040
object not in US -84.7862587271 29.0075376238
3km_pbl1_WSPD10MAX_20070107-1200_23_23_041
object not in US -84.4228628701 29.4243124376
3km_pbl1_WSPD10MAX_20070107-1200_23_23_042
object not in US -83.8044561556 29.8823016629
3km_pbl1_WSPD10MAX_20070107-1200_23_23_043
object not in US -83.9875492485 29.9450092015
3km_pbl1_WSPD10MAX_20070107-1200_23_24_044
object not in US -78.6804355624 32.3265453381
object not in US -78.2560083544 32.6420259309
3km_pbl1_WSPD10MAX_20070107-1200_23_23_045
object not in US -78.5076028754 32.6912118523
3km_pbl1_WSPD10MAX_20070107-1200_23_24_046
object not in US -78.4724901451 33.5013277263
object not in US -78.2203067125 33.696157821
3km_pbl1_WSPD10MAX_20070107-1200_24_24_047
object not in US -84.7841926338 28.4675383591
3km_pbl1_WSPD10MAX_20070107-1200_24_24_048
object not in US -84.3843036519 29.0175168251
3km_pbl1_WSPD10MAX_20070107-1200_24_24_049
object not in US -83.6994467469 29.5799705361
3km_pbl1_WSPD10MAX_20070107-1200_24_24_050
object not in US -78.36294325 32.2989235088
3km_pbl1_WSPD10MAX_20070107-1200_24_24_051
object not in US -79.8335155144 32.6369995893
3km_pbl1_WSPD10MAX_20070107-1200_24_24_052
object not in US -78.0352527206 33.1104349417
3km_pbl1_WSPD10MAX_20070107-1200_24_24_053
object not in US -78.5358935368 33.7777023746
3km_pbl1_WSPD10MAX_20070107-1200_24_24_054
object not in US -77.7056335328 34.1378385338
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_16_16_002
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_17_19_003
object not in US -98.998676022 24.4776419641
object not in US -98.9692985882 24.4797932477
object not in US -98.998676022 24.4776419641
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_18_18_004
object not in US -89.2448574439 26.9553803959
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_18_18_005
object not in US -89.1228553643 27.0892212437
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_18_18_006
object not in US -88.6923694237 27.6242280469
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_18_24_007
object not in US -88.1007374245 28.3445072098
object not in US -87.675165707 28.2026183898
object not in US -87.2791294096 28.1408203772
object not in US -86.8886897135 27.9161422617
object not in US -86.5617902896 27.6650488737
object not in US -86.17277874 27.4921149931
object not in US -85.7839829162 27.3449313971
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_008
object not in US -88.8254906059 26.6560302716
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_009
object not in US -88.7924524208 26.8979945168
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_010
object not in US -88.6087103316 27.0845811601
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_23_011
object not in US -88.2671598542 27.5921635556
object not in US -87.9367453606 27.3985876087
object not in US -87.5470712878 27.2030210997
object not in US -87.1589302369 27.0062938632
object not in US -86.8050543838 26.7284676288
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_20_012
object not in US -87.9886908204 27.8305784665
object not in US -87.6878059152 27.6637272029
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_013
object not in US -87.2694329798 28.4911795277
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_014
object not in US -87.4213659268 28.5482877059
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_015
object not in US -86.7971662691 28.8578406648
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_19_19_016
object not in US -86.8783411433 29.2106114013
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_017
object not in US -89.4940112368 25.4772154866
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_018
object not in US -88.7422594381 26.0901925143
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_019
object not in US -88.4670309574 26.4637595449
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_21_020
object not in US -88.2491309412 26.8915885845
object not in US -87.9807676027 26.7260142731
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_021
object not in US -86.9669276897 28.3494773182
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_022
object not in US -86.7814415635 28.3988579559
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_023
object not in US -86.3692971342 28.7654482938
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_024
object not in US -85.9804882971 29.2395748763
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_20_20_025
object not in US -85.5258126726 29.7104749201
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_026
object not in US -89.1974464791 25.3413133671
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_027
object not in US -89.1968064084 25.4219077508
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_028
object not in US -88.0794383645 26.2969523079
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_029
object not in US -88.0441910141 26.5655119736
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_030
object not in US -87.7734538241 26.5609858635
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_031
object not in US -87.7982066993 26.8037075728
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_22_032
object not in US -87.6744605001 26.9361080423
object not in US -87.2863737141 26.7667450836
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_033
object not in US -86.9546450886 27.7559971191
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_24_034
object not in US -86.51146912 28.2299077673
object not in US -86.1508450822 28.0576598983
object not in US -85.7587024009 27.9372586821
object not in US -85.4625532985 27.7381981156
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_035
object not in US -85.840964968 28.8842521292
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_23_036
object not in US -85.3228432282 29.4062498787
object not in US -84.8911897956 29.3627909395
object not in US -84.6144356545 29.3244649304
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_21_037
object not in US -84.9362273068 29.6886346774
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_21_24_038
object not in US -78.8424000019 32.8553329677
object not in US -78.2964826227 33.3505182252
object not in US -78.4581096995 33.0935567483
object not in US -78.1428578838 33.2827373324
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_22_039
object not in US -87.5334834396 26.5295668729
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_24_040
object not in US -86.9400259088 27.2436013557
object not in US -86.5538653425 27.0180820353
object not in US -86.1985666344 26.8192601245
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_24_041
object not in US -85.6717838116 28.5278121685
object not in US -85.2809450998 28.3520114608
object not in US -84.9206640957 28.2031914905
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_23_042
object not in US -85.3844285593 28.7606065646
object not in US -85.0798123743 28.6952359078
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_22_043
object not in US -84.6600088225 29.6234522522
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_23_044
object not in US -84.1430241041 29.9521608564
object not in US -83.8976698234 29.8867473164
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_22_045
object not in US -78.9886995294 32.4339341517
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_24_046
object not in US -78.6900985076 32.2460344374
object not in US -78.4384210251 32.4682691182
object not in US -78.2727612992 32.5079126796
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_22_24_047
object not in US -78.8648753524 33.4803943503
object not in US -78.6780068492 33.6814239067
object not in US -78.60369254 33.7563912767
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_23_048
object not in US -87.3728416614 25.7729923486
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_23_049
object not in US -87.0579507734 26.3308720378
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_23_050
object not in US -84.6044104165 28.9459889915
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_23_051
object not in US -84.3718984919 29.233023804
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_23_052
object not in US -84.2618599011 29.5252643573
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_23_053
object not in US -78.6253665491 32.7826982297
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_23_24_054
object not in US -77.7840831202 33.792633162
object not in US -77.7376682072 33.8968291898
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_055
object not in US -84.6601887764 28.4893853343
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_056
object not in US -84.2997486394 28.8787504003
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_057
object not in US -83.8060966212 29.3690093411
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_058
object not in US -80.1618589069 31.9577270858
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_059
object not in US -77.8112679982 33.0901048333
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_060
object not in US -78.6561763027 33.3273736324
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_061
object not in US -77.9929071366 33.1879719692
1km_on_3km_pbl1_WSPD10MAX_20070107-1200_24_24_062
object not in US -77.5473414552 34.3401104737
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2007010712_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20070212-1200_01_04_000
object not in US -99.9217804518 24.5410665932
object not in US -100.055145125 24.6918390084
object not in US -100.087218206 24.7161528201
object not in US -99.9616418346 24.6455786081
3km_pbl1_WSPD10MAX_20070212-1200_01_01_001
object not in US -100.119306633 24.7404593433
3km_pbl1_WSPD10MAX_20070212-1200_01_01_002
object not in US -100.188905815 24.8425077296
3km_pbl1_WSPD10MAX_20070212-1200_03_09_003
object not in US -85.2079085134 24.8211188395
object not in US -85.2324150997 24.9295374877
object not in US -85.1719865555 24.9540570898
object not in US -85.1990297024 25.008857286
object not in US -85.2569741149 25.0379717444
object not in US -85.1436886075 24.926075255
object not in US -84.968914942 24.8653270079
3km_pbl1_WSPD10MAX_20070212-1200_03_03_004
object not in US -85.5566206794 24.9685117506
3km_pbl1_WSPD10MAX_20070212-1200_05_05_005
object not in US -85.4273717898 25.2056610991
3km_pbl1_WSPD10MAX_20070212-1200_07_09_006
object not in US -84.8233392227 25.3969568769
object not in US -84.6762203315 25.3638206365
object not in US -84.6211136962 25.2807556583
3km_pbl1_WSPD10MAX_20070212-1200_10_13_007
object not in US -84.6776227492 24.7724806946
object not in US -84.5357820473 24.6588009716
object not in US -84.3927810798 24.5717753453
object not in US -84.6299193459 24.5555032419
3km_pbl1_WSPD10MAX_20070212-1200_10_17_008
object not in US -80.1315900829 25.5157244478
object not in US -80.0590654749 25.6448166781
object not in US -79.9619721403 25.7179408927
object not in US -79.8674378333 25.7642253264
object not in US -79.8025552194 25.8128911025
object not in US -79.5888681186 25.8491261881
object not in US -79.5182049871 25.9511924513
object not in US -79.3608421835 26.0188337531
3km_pbl1_WSPD10MAX_20070212-1200_14_14_009
3km_pbl1_WSPD10MAX_20070212-1200_15_15_010
3km_pbl1_WSPD10MAX_20070212-1200_16_17_011
object not in US -80.0315047472 25.3188802108
object not in US -79.7866292468 25.3797902343
3km_pbl1_WSPD10MAX_20070212-1200_18_19_012
object not in US -79.3171191657 25.5829859964
object not in US -79.1515381567 25.7305934025
3km_pbl1_WSPD10MAX_20070212-1200_20_21_013
object not in US -78.8755053523 26.0573513474
object not in US -78.7473510414 26.1268924242
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_03_11_000
object not in US -85.1526623889 24.7383681372
object not in US -85.1745396326 24.900416989
object not in US -85.201569859 24.9552115265
object not in US -85.1990297024 25.008857286
object not in US -85.1411185678 24.9797171095
object not in US -85.2657483435 24.850219634
object not in US -84.9742282722 24.7580771489
object not in US -84.8307131501 24.6715456275
object not in US -84.5990360047 24.581009195
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_04_04_001
object not in US -85.8536623042 24.951986781
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_06_11_002
object not in US -81.4922325616 24.9701950176
object not in US -81.3718422665 24.988748956
object not in US -81.3127794021 24.9845985476
object not in US -81.042320682 25.0190967047
object not in US -80.9513291704 25.0393856053
object not in US -80.830759392 25.0574138511
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_08_08_003
object not in US -80.3608152644 24.9945966403
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_08_08_004
object not in US -84.6507859192 25.2820428231
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_09_09_005
object not in US -85.5636636133 24.8075794717
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_09_09_006
object not in US -84.532101586 25.276851494
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_11_11_007
object not in US -79.8539330098 25.3044132854
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_12_14_008
object not in US -84.1896262021 24.5086161358
object not in US -83.8053279408 24.516704672
object not in US -83.5075705694 24.5550708295
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_12_13_009
object not in US -80.5894918251 25.0931187299
object not in US -80.5304017277 25.0885933107
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_12_12_010
object not in US -80.0267166746 25.6691989454
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_13_13_011
object not in US -79.5442357823 25.4134712415
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_13_13_012
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_14_14_013
object not in US -80.2220961788 25.199303607
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_14_18_014
object not in US -79.4032866564 25.6173940634
object not in US -79.3028990382 25.7167572797
object not in US -79.1044355195 25.8885244814
object not in US -79.0064166772 25.9609253799
object not in US -78.7563661679 26.0466175012
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_15_15_015
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_16_17_016
object not in US -84.6466854077 24.7980086698
object not in US -84.4148846901 24.7071050762
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_16_19_017
object not in US -79.7114513663 25.238669459
object not in US -79.4341986315 25.3231526208
object not in US -78.9968057976 25.5008942749
object not in US -78.7359091819 25.6934712233
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_20_21_018
object not in US -79.5663919774 25.1995091422
object not in US -79.4453948152 25.2161883751
1km_on_3km_pbl1_WSPD10MAX_20070212-1200_22_24_019
object not in US -79.0143146015 25.340468797
object not in US -78.9197032819 25.3860035105
object not in US -78.7302250477 25.4768657846
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2007021212_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20070213-1200_01_01_000
3km_pbl1_WSPD10MAX_20070213-1200_01_01_001
3km_pbl1_WSPD10MAX_20070213-1200_06_06_002
object not in US -86.0092062662 30.0503333496
3km_pbl1_WSPD10MAX_20070213-1200_13_13_003
object not in US -80.5583162374 29.9017170017
3km_pbl1_WSPD10MAX_20070213-1200_13_14_004
object not in US -80.6665155937 31.0468448648
object not in US -80.3309900965 31.239050095
3km_pbl1_WSPD10MAX_20070213-1200_13_13_005
object not in US -80.3531122805 31.6469272752
3km_pbl1_WSPD10MAX_20070213-1200_13_16_006
object not in US -78.8835818603 31.9642721416
object not in US -78.8106711262 32.3105412428
object not in US -78.6799554063 32.5976146911
object not in US -78.8582928184 32.1790231257
3km_pbl1_WSPD10MAX_20070213-1200_13_13_007
3km_pbl1_WSPD10MAX_20070213-1200_13_13_008
3km_pbl1_WSPD10MAX_20070213-1200_13_13_009
3km_pbl1_WSPD10MAX_20070213-1200_14_14_010
object not in US -79.4436900913 28.948036261
3km_pbl1_WSPD10MAX_20070213-1200_14_15_011
object not in US -80.2578468147 29.4731131591
object not in US -80.1825356072 29.6027754366
3km_pbl1_WSPD10MAX_20070213-1200_14_14_012
object not in US -80.7392735793 29.9690033447
3km_pbl1_WSPD10MAX_20070213-1200_14_14_013
object not in US -80.6926826993 30.7779423263
3km_pbl1_WSPD10MAX_20070213-1200_14_15_014
object not in US -80.0133534324 30.9442188812
object not in US -80.064221039 30.7584787854
3km_pbl1_WSPD10MAX_20070213-1200_14_14_015
object not in US -80.0592808318 31.1102785419
3km_pbl1_WSPD10MAX_20070213-1200_14_14_016
object not in US -79.7335128228 31.4914744013
3km_pbl1_WSPD10MAX_20070213-1200_14_17_017
object not in US -78.643960063 31.5641126186
object not in US -78.3558167239 31.8371881995
object not in US -78.1259807447 32.1421592223
object not in US -77.9822009897 32.2647723608
3km_pbl1_WSPD10MAX_20070213-1200_14_14_018
object not in US -80.3394478509 31.7813276989
3km_pbl1_WSPD10MAX_20070213-1200_14_15_019
object not in US -79.5712679272 32.1018811532
object not in US -79.2646172233 32.2669433825
3km_pbl1_WSPD10MAX_20070213-1200_14_15_020
object not in US -79.7524823163 32.4953348437
object not in US -79.8538158424 32.4489775847
3km_pbl1_WSPD10MAX_20070213-1200_14_14_021
object not in US -79.456923929 32.5533819665
3km_pbl1_WSPD10MAX_20070213-1200_14_18_022
object not in US -78.6410248756 32.9195700971
object not in US -78.5631835048 33.2923372492
object not in US -78.5155419988 33.1527330444
object not in US -78.2762327184 33.5113638685
object not in US -78.0592727176 33.6819024289
3km_pbl1_WSPD10MAX_20070213-1200_14_14_023
3km_pbl1_WSPD10MAX_20070213-1200_14_14_024
3km_pbl1_WSPD10MAX_20070213-1200_15_16_025
object not in US -79.1992463878 29.1985355197
object not in US -79.0152064575 29.4538993601
3km_pbl1_WSPD10MAX_20070213-1200_15_16_026
object not in US -79.8203020619 29.1953263575
object not in US -79.7587633691 29.190410594
3km_pbl1_WSPD10MAX_20070213-1200_15_15_027
object not in US -79.7917638302 30.0599512051
3km_pbl1_WSPD10MAX_20070213-1200_15_15_028
object not in US -80.1616767623 30.1157893253
3km_pbl1_WSPD10MAX_20070213-1200_15_16_029
object not in US -79.1465405953 31.0645401719
object not in US -79.0647820131 30.9492474863
3km_pbl1_WSPD10MAX_20070213-1200_15_16_030
object not in US -79.3284120271 31.702995723
object not in US -79.2500696212 31.8321211015
3km_pbl1_WSPD10MAX_20070213-1200_15_15_031
object not in US -78.7983344581 31.6045322371
3km_pbl1_WSPD10MAX_20070213-1200_15_15_032
object not in US -78.5147166556 31.5799573607
3km_pbl1_WSPD10MAX_20070213-1200_15_16_033
object not in US -79.0414809624 33.3595575944
object not in US -78.8520183164 33.5876718245
3km_pbl1_WSPD10MAX_20070213-1200_15_15_034
3km_pbl1_WSPD10MAX_20070213-1200_16_17_035
object not in US -78.5005638898 28.5410959575
object not in US -78.4605549474 28.6187880828
3km_pbl1_WSPD10MAX_20070213-1200_16_16_036
object not in US -78.6145398939 29.4189026528
3km_pbl1_WSPD10MAX_20070213-1200_16_16_037
object not in US -79.7834582764 29.8425431785
3km_pbl1_WSPD10MAX_20070213-1200_16_18_038
object not in US -79.3351666739 29.9416657374
object not in US -79.264231676 30.0170869197
object not in US -78.8177208933 30.0875596434
3km_pbl1_WSPD10MAX_20070213-1200_16_17_039
object not in US -78.6189221169 30.1786450685
object not in US -78.4626080341 30.4360262108
3km_pbl1_WSPD10MAX_20070213-1200_16_16_040
object not in US -78.3492599536 30.07317946
3km_pbl1_WSPD10MAX_20070213-1200_16_16_041
object not in US -79.7034292019 30.5948762013
3km_pbl1_WSPD10MAX_20070213-1200_16_17_042
object not in US -78.7049946804 30.7828810109
object not in US -78.4733778709 30.8710271426
3km_pbl1_WSPD10MAX_20070213-1200_16_17_043
object not in US -78.4463229579 31.3569254808
object not in US -78.1132917905 31.7340427488
3km_pbl1_WSPD10MAX_20070213-1200_17_17_044
object not in US -78.3529440113 28.7445264767
3km_pbl1_WSPD10MAX_20070213-1200_17_17_045
object not in US -78.3809579052 29.2894267273
3km_pbl1_WSPD10MAX_20070213-1200_17_18_046
object not in US -78.7746098801 29.6499466628
object not in US -78.496696455 29.6253294101
3km_pbl1_WSPD10MAX_20070213-1200_17_17_047
object not in US -78.233497886 29.7370932891
3km_pbl1_WSPD10MAX_20070213-1200_17_17_048
object not in US -78.0098706529 31.2904235142
3km_pbl1_WSPD10MAX_20070213-1200_17_17_049
object not in US -78.991838424 32.4070915797
3km_pbl1_WSPD10MAX_20070213-1200_17_17_050
object not in US -77.9737727389 32.8336843773
3km_pbl1_WSPD10MAX_20070213-1200_17_18_051
object not in US -77.9003026715 33.1524719448
object not in US -77.7226244555 33.2718176966
3km_pbl1_WSPD10MAX_20070213-1200_18_19_052
object not in US -78.4129276606 29.0211475088
object not in US -78.3950222015 28.9110557405
3km_pbl1_WSPD10MAX_20070213-1200_18_19_053
object not in US -78.1745019862 30.2200559117
object not in US -78.1434509342 30.2172059158
3km_pbl1_WSPD10MAX_20070213-1200_18_20_054
object not in US -77.7253131949 32.5124639495
object not in US -77.7253131949 32.5124639495
object not in US -77.7358089641 32.4320329339
3km_pbl1_WSPD10MAX_20070213-1200_21_23_055
object not in US -77.5943170835 33.7480963402
object not in US -77.5979018144 33.7213136148
object not in US -77.5514880892 33.5814199282
3km_pbl1_WSPD10MAX_20070213-1200_22_22_056
object not in US -80.1755741585 30.9023905536
3km_pbl1_WSPD10MAX_20070213-1200_23_23_057
object not in US -79.7827887067 30.7366387581
3km_pbl1_WSPD10MAX_20070213-1200_23_23_058
object not in US -79.8566902104 30.9320993998
3km_pbl1_WSPD10MAX_20070213-1200_23_23_059
object not in US -79.6594308452 31.2959544587
3km_pbl1_WSPD10MAX_20070213-1200_24_24_060
object not in US -80.3581498914 30.9702192664
3km_pbl1_WSPD10MAX_20070213-1200_24_24_061
object not in US -78.3945662752 30.9996577025
3km_pbl1_WSPD10MAX_20070213-1200_24_24_062
object not in US -80.6296340621 31.4232890723
3km_pbl1_WSPD10MAX_20070213-1200_24_24_063
object not in US -80.1543940321 31.4154621178
3km_pbl1_WSPD10MAX_20070213-1200_24_24_064
object not in US -80.1422753583 32.1458380309
3km_pbl1_WSPD10MAX_20070213-1200_24_24_065
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_05_05_002
object not in US -85.8431455162 29.5591274008
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_07_09_003
object not in US -79.918836548 25.8493958909
object not in US -79.7971168299 25.8664368528
object not in US -79.56468796 25.7930911531
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_08_08_004
object not in US -84.7515553357 29.6542283259
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_19_005
object not in US -80.4516429309 28.134411169
object not in US -80.2010698097 28.4941291217
object not in US -79.9458949887 28.8802999517
object not in US -79.7199063202 28.9706032368
object not in US -79.3838107896 29.214000052
object not in US -78.8641475885 29.413744238
object not in US -78.7069757869 29.4270896578
object not in US -78.6976064686 29.5076073539
object not in US -78.4477500395 29.5124420974
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_11_006
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_11_007
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_15_008
object not in US -79.320693902 32.0546982976
object not in US -79.1570155859 32.3665491055
object not in US -78.8487837106 32.5306273714
object not in US -78.7372245788 32.6567142843
object not in US -78.9345614033 32.3480941803
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_11_009
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_11_010
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_11_011
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_11_11_012
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_12_12_013
object not in US -81.1185516702 30.9430863418
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_12_13_014
object not in US -80.9286401229 31.2819315687
object not in US -80.337936349 31.4833156193
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_12_13_015
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_12_13_016
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_12_12_017
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_12_12_018
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_14_019
object not in US -79.55856237 27.8743699399
object not in US -79.2110921341 28.2513213225
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_020
object not in US -80.6538145183 30.2065190159
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_021
object not in US -80.4995902445 30.8181291701
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_022
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_023
object not in US -80.2816330708 32.345725893
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_024
object not in US -79.0372237198 32.8444647712
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_15_025
object not in US -78.9255448034 32.9706859403
object not in US -78.7592050148 33.0109249314
object not in US -78.4348672236 33.2812734287
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_16_026
object not in US -78.7557144334 33.3087021204
object not in US -78.6588943808 33.5714487222
object not in US -78.9130166507 33.3489528555
object not in US -78.8199858323 33.0431467098
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_14_027
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_028
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_029
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_13_030
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_13_14_031
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_15_032
object not in US -79.9044183894 29.5811995168
object not in US -79.6595701881 29.8326438587
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_17_033
object not in US -79.4912826956 29.6564109319
object not in US -79.1423683343 29.708688325
object not in US -79.3735491107 29.5925186805
object not in US -79.16339275 29.5207280914
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_034
object not in US -79.8848153906 29.7692807624
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_035
object not in US -80.1780835732 29.9545247624
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_036
object not in US -79.7202656615 30.7317028205
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_037
object not in US -79.6529679933 31.6477132714
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_17_038
object not in US -78.5300178931 31.716915524
object not in US -78.9371981213 31.7790143183
object not in US -78.1912230071 31.8767397751
object not in US -78.2527818007 31.6380975328
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_15_039
object not in US -79.4929267856 32.231132338
object not in US -79.1795515469 32.4496968175
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_040
object not in US -79.9664930755 32.2950799616
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_041
object not in US -79.5703716788 32.3998305466
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_042
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_043
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_14_14_044
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_15_045
object not in US -78.876201527 28.4932731068
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_15_046
object not in US -79.1365620884 30.873928152
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_17_047
object not in US -78.5888745363 30.9625973047
object not in US -78.2594479557 31.0689293199
object not in US -78.1853863088 30.8994181541
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_15_048
object not in US -78.2826917506 31.9120625527
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_15_049
object not in US -77.9496284517 32.0175958947
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_17_050
object not in US -78.1272942309 32.3864257641
object not in US -78.1090844796 32.2762778261
object not in US -77.8559631597 32.4974010646
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_15_051
object not in US -78.4691348022 32.7420944622
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_17_052
object not in US -78.691077027 33.5741718714
object not in US -78.4813919805 33.6917587188
object not in US -78.2134955665 33.749756095
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_15_15_053
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_16_19_054
object not in US -78.335156207 28.6344444526
object not in US -78.2047108879 28.9478111703
object not in US -78.325557655 28.7149012847
object not in US -78.3593317601 28.6908858301
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_16_17_055
object not in US -78.5639857286 29.848312255
object not in US -78.2676660926 30.2285612288
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_16_16_056
object not in US -79.4901631874 29.9544110016
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_16_16_057
object not in US -78.1286145252 32.6306632119
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_16_16_058
object not in US -78.7755129557 32.6057517927
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_16_16_059
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_17_060
object not in US -78.7998244715 28.6220493548
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_17_061
object not in US -79.1744607204 29.1422386565
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_17_062
object not in US -79.1453767999 29.6818363117
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_17_063
object not in US -77.8581824709 31.9820434449
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_17_064
object not in US -78.0341682515 32.8662669474
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_17_065
object not in US -77.8787332048 33.0691475736
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_17_18_066
object not in US -77.7089612714 33.8670964964
object not in US -77.5581990399 34.2598110925
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_18_18_067
object not in US -78.6615315528 29.0163827378
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_18_18_068
object not in US -78.2384571775 29.4391444836
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_18_18_069
object not in US -78.0636059986 30.1012967481
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_18_18_070
object not in US -77.6122348348 33.3700983166
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_18_18_071
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_19_19_072
object not in US -78.7177711682 28.2625052097
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_19_19_073
object not in US -78.3048123303 29.1468747558
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_21_22_074
object not in US -77.5658382258 33.4742736177
object not in US -77.5943170835 33.7480963402
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_24_24_075
object not in US -79.8285523172 29.7106591414
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_24_24_076
object not in US -80.8476484291 31.4657937316
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_24_24_077
object not in US -80.5871260568 31.8534642019
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_24_24_078
object not in US -80.1813649991 31.7696006858
1km_on_3km_pbl1_WSPD10MAX_20070213-1200_24_24_079
object not in US -80.2235923995 32.287288112
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2007021312_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20070224-1200_01_01_000
object not in US -99.9752760724 24.4828650099
3km_pbl1_WSPD10MAX_20070224-1200_01_01_001
object not in US -101.051514237 24.5792157292
3km_pbl1_WSPD10MAX_20070224-1200_01_04_002
object not in US -100.258645016 24.9445351587
object not in US -100.277654498 25.1316954359
object not in US -100.239984019 25.0539342127
object not in US -100.277654498 25.1316954359
3km_pbl1_WSPD10MAX_20070224-1200_01_01_003
object not in US -100.541805867 25.3791721597
3km_pbl1_WSPD10MAX_20070224-1200_01_01_004
object not in US -101.243879309 26.3169350164
3km_pbl1_WSPD10MAX_20070224-1200_01_01_005
object not in US -101.202285536 26.7534174979
3km_pbl1_WSPD10MAX_20070224-1200_01_01_006
3km_pbl1_WSPD10MAX_20070224-1200_01_01_007
3km_pbl1_WSPD10MAX_20070224-1200_01_01_008
3km_pbl1_WSPD10MAX_20070224-1200_01_01_009
3km_pbl1_WSPD10MAX_20070224-1200_01_01_010
3km_pbl1_WSPD10MAX_20070224-1200_01_01_011
3km_pbl1_WSPD10MAX_20070224-1200_01_01_012
3km_pbl1_WSPD10MAX_20070224-1200_01_01_013
3km_pbl1_WSPD10MAX_20070224-1200_01_01_014
3km_pbl1_WSPD10MAX_20070224-1200_02_03_015
object not in US -99.9590178947 24.6188539539
object not in US -99.9590178947 24.6188539539
3km_pbl1_WSPD10MAX_20070224-1200_02_04_016
object not in US -100.504897152 25.5982293211
object not in US -100.540170387 25.6492196873
object not in US -100.55139937 25.7562584799
3km_pbl1_WSPD10MAX_20070224-1200_03_03_017
object not in US -100.428916425 25.4427255011
3km_pbl1_WSPD10MAX_20070224-1200_03_08_018
3km_pbl1_WSPD10MAX_20070224-1200_03_03_019
3km_pbl1_WSPD10MAX_20070224-1200_03_08_020
3km_pbl1_WSPD10MAX_20070224-1200_03_06_021
3km_pbl1_WSPD10MAX_20070224-1200_03_03_022
3km_pbl1_WSPD10MAX_20070224-1200_03_06_023
3km_pbl1_WSPD10MAX_20070224-1200_03_03_024
3km_pbl1_WSPD10MAX_20070224-1200_03_05_025
3km_pbl1_WSPD10MAX_20070224-1200_03_03_026
3km_pbl1_WSPD10MAX_20070224-1200_03_10_027
3km_pbl1_WSPD10MAX_20070224-1200_04_09_028
3km_pbl1_WSPD10MAX_20070224-1200_04_04_029
3km_pbl1_WSPD10MAX_20070224-1200_04_08_030
3km_pbl1_WSPD10MAX_20070224-1200_04_09_031
3km_pbl1_WSPD10MAX_20070224-1200_04_08_032
3km_pbl1_WSPD10MAX_20070224-1200_04_08_033
3km_pbl1_WSPD10MAX_20070224-1200_04_07_034
3km_pbl1_WSPD10MAX_20070224-1200_04_04_035
3km_pbl1_WSPD10MAX_20070224-1200_04_05_036
3km_pbl1_WSPD10MAX_20070224-1200_04_06_037
3km_pbl1_WSPD10MAX_20070224-1200_04_09_038
3km_pbl1_WSPD10MAX_20070224-1200_04_05_039
3km_pbl1_WSPD10MAX_20070224-1200_04_05_040
3km_pbl1_WSPD10MAX_20070224-1200_04_04_041
3km_pbl1_WSPD10MAX_20070224-1200_04_04_042
3km_pbl1_WSPD10MAX_20070224-1200_04_11_043
3km_pbl1_WSPD10MAX_20070224-1200_04_05_044
3km_pbl1_WSPD10MAX_20070224-1200_04_04_045
3km_pbl1_WSPD10MAX_20070224-1200_04_06_046
3km_pbl1_WSPD10MAX_20070224-1200_04_10_047
3km_pbl1_WSPD10MAX_20070224-1200_05_06_048
3km_pbl1_WSPD10MAX_20070224-1200_05_06_049
3km_pbl1_WSPD10MAX_20070224-1200_05_07_050
3km_pbl1_WSPD10MAX_20070224-1200_05_08_051
3km_pbl1_WSPD10MAX_20070224-1200_05_05_052
3km_pbl1_WSPD10MAX_20070224-1200_05_05_053
3km_pbl1_WSPD10MAX_20070224-1200_05_12_054
3km_pbl1_WSPD10MAX_20070224-1200_05_06_055
3km_pbl1_WSPD10MAX_20070224-1200_06_08_056
3km_pbl1_WSPD10MAX_20070224-1200_06_06_057
3km_pbl1_WSPD10MAX_20070224-1200_06_06_058
3km_pbl1_WSPD10MAX_20070224-1200_06_09_059
3km_pbl1_WSPD10MAX_20070224-1200_06_06_060
3km_pbl1_WSPD10MAX_20070224-1200_06_08_061
3km_pbl1_WSPD10MAX_20070224-1200_06_06_062
3km_pbl1_WSPD10MAX_20070224-1200_06_06_063
3km_pbl1_WSPD10MAX_20070224-1200_07_07_064
3km_pbl1_WSPD10MAX_20070224-1200_07_07_065
3km_pbl1_WSPD10MAX_20070224-1200_07_07_066
3km_pbl1_WSPD10MAX_20070224-1200_07_07_067
3km_pbl1_WSPD10MAX_20070224-1200_07_08_068
3km_pbl1_WSPD10MAX_20070224-1200_07_09_069
3km_pbl1_WSPD10MAX_20070224-1200_07_07_070
3km_pbl1_WSPD10MAX_20070224-1200_07_12_071
3km_pbl1_WSPD10MAX_20070224-1200_08_09_072
3km_pbl1_WSPD10MAX_20070224-1200_08_08_073
3km_pbl1_WSPD10MAX_20070224-1200_08_08_074
3km_pbl1_WSPD10MAX_20070224-1200_08_08_075
3km_pbl1_WSPD10MAX_20070224-1200_08_08_076
3km_pbl1_WSPD10MAX_20070224-1200_08_09_077
3km_pbl1_WSPD10MAX_20070224-1200_08_12_078
3km_pbl1_WSPD10MAX_20070224-1200_08_09_079
3km_pbl1_WSPD10MAX_20070224-1200_08_09_080
3km_pbl1_WSPD10MAX_20070224-1200_08_08_081
3km_pbl1_WSPD10MAX_20070224-1200_08_08_082
3km_pbl1_WSPD10MAX_20070224-1200_08_08_083
3km_pbl1_WSPD10MAX_20070224-1200_08_08_084
3km_pbl1_WSPD10MAX_20070224-1200_08_12_085
3km_pbl1_WSPD10MAX_20070224-1200_08_08_086
3km_pbl1_WSPD10MAX_20070224-1200_08_08_087
3km_pbl1_WSPD10MAX_20070224-1200_08_08_088
3km_pbl1_WSPD10MAX_20070224-1200_08_08_089
3km_pbl1_WSPD10MAX_20070224-1200_09_09_090
3km_pbl1_WSPD10MAX_20070224-1200_09_09_091
3km_pbl1_WSPD10MAX_20070224-1200_09_10_092
3km_pbl1_WSPD10MAX_20070224-1200_09_11_093
3km_pbl1_WSPD10MAX_20070224-1200_09_10_094
3km_pbl1_WSPD10MAX_20070224-1200_09_09_095
3km_pbl1_WSPD10MAX_20070224-1200_09_09_096
3km_pbl1_WSPD10MAX_20070224-1200_09_09_097
3km_pbl1_WSPD10MAX_20070224-1200_09_10_098
3km_pbl1_WSPD10MAX_20070224-1200_09_10_099
3km_pbl1_WSPD10MAX_20070224-1200_09_09_100
3km_pbl1_WSPD10MAX_20070224-1200_09_09_101
3km_pbl1_WSPD10MAX_20070224-1200_10_10_102
3km_pbl1_WSPD10MAX_20070224-1200_10_12_103
3km_pbl1_WSPD10MAX_20070224-1200_10_11_104
3km_pbl1_WSPD10MAX_20070224-1200_10_12_105
3km_pbl1_WSPD10MAX_20070224-1200_10_10_106
3km_pbl1_WSPD10MAX_20070224-1200_10_10_107
3km_pbl1_WSPD10MAX_20070224-1200_10_11_108
3km_pbl1_WSPD10MAX_20070224-1200_10_10_109
3km_pbl1_WSPD10MAX_20070224-1200_10_10_110
3km_pbl1_WSPD10MAX_20070224-1200_10_10_111
3km_pbl1_WSPD10MAX_20070224-1200_10_12_112
3km_pbl1_WSPD10MAX_20070224-1200_10_10_113
3km_pbl1_WSPD10MAX_20070224-1200_10_11_114
3km_pbl1_WSPD10MAX_20070224-1200_10_10_115
3km_pbl1_WSPD10MAX_20070224-1200_11_13_116
3km_pbl1_WSPD10MAX_20070224-1200_11_11_117
3km_pbl1_WSPD10MAX_20070224-1200_11_12_118
3km_pbl1_WSPD10MAX_20070224-1200_11_11_119
3km_pbl1_WSPD10MAX_20070224-1200_11_22_120
3km_pbl1_WSPD10MAX_20070224-1200_11_13_121
3km_pbl1_WSPD10MAX_20070224-1200_11_11_122
3km_pbl1_WSPD10MAX_20070224-1200_12_13_123
3km_pbl1_WSPD10MAX_20070224-1200_12_13_124
3km_pbl1_WSPD10MAX_20070224-1200_12_13_125
3km_pbl1_WSPD10MAX_20070224-1200_12_13_126
3km_pbl1_WSPD10MAX_20070224-1200_12_23_127
3km_pbl1_WSPD10MAX_20070224-1200_12_12_128
3km_pbl1_WSPD10MAX_20070224-1200_12_24_129
3km_pbl1_WSPD10MAX_20070224-1200_12_13_130
3km_pbl1_WSPD10MAX_20070224-1200_12_12_131
3km_pbl1_WSPD10MAX_20070224-1200_13_14_132
3km_pbl1_WSPD10MAX_20070224-1200_13_14_133
3km_pbl1_WSPD10MAX_20070224-1200_13_13_134
3km_pbl1_WSPD10MAX_20070224-1200_13_17_135
3km_pbl1_WSPD10MAX_20070224-1200_13_14_136
3km_pbl1_WSPD10MAX_20070224-1200_13_19_137
3km_pbl1_WSPD10MAX_20070224-1200_14_14_138
3km_pbl1_WSPD10MAX_20070224-1200_14_15_139
3km_pbl1_WSPD10MAX_20070224-1200_14_14_140
3km_pbl1_WSPD10MAX_20070224-1200_14_15_141
3km_pbl1_WSPD10MAX_20070224-1200_15_15_142
3km_pbl1_WSPD10MAX_20070224-1200_15_18_143
3km_pbl1_WSPD10MAX_20070224-1200_15_15_144
3km_pbl1_WSPD10MAX_20070224-1200_15_15_145
3km_pbl1_WSPD10MAX_20070224-1200_15_16_146
3km_pbl1_WSPD10MAX_20070224-1200_16_16_147
3km_pbl1_WSPD10MAX_20070224-1200_16_16_148
3km_pbl1_WSPD10MAX_20070224-1200_16_16_149
3km_pbl1_WSPD10MAX_20070224-1200_17_18_150
3km_pbl1_WSPD10MAX_20070224-1200_18_18_151
3km_pbl1_WSPD10MAX_20070224-1200_18_19_152
3km_pbl1_WSPD10MAX_20070224-1200_19_19_153
3km_pbl1_WSPD10MAX_20070224-1200_19_19_154
3km_pbl1_WSPD10MAX_20070224-1200_20_20_155
3km_pbl1_WSPD10MAX_20070224-1200_21_24_156
3km_pbl1_WSPD10MAX_20070224-1200_22_24_157
3km_pbl1_WSPD10MAX_20070224-1200_23_24_158
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_000
object not in US -99.9752760724 24.4828650099
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_001
object not in US -101.080871188 24.5765668306
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_002
object not in US -100.288127705 24.9420738679
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_02_003
object not in US -100.541805867 25.3791721597
object not in US -100.283098689 25.1851801811
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_004
object not in US -100.561064956 26.1335577191
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_005
object not in US -101.273740388 26.3142327008
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_006
object not in US -101.202285536 26.7534174979
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_007
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_008
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_009
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_010
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_01_01_011
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_02_03_012
object not in US -100.567040849 25.6199318548
object not in US -100.567040849 25.6199318548
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_03_013
object not in US -100.355914739 25.3139607919
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_08_014
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_08_015
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_06_016
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_03_017
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_09_018
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_03_019
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_03_020
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_03_05_021
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_08_022
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_09_023
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_04_024
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_05_025
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_05_026
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_05_027
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_05_028
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_06_029
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_04_030
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_06_031
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_04_032
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_04_033
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_04_034
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_11_035
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_04_05_036
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_05_037
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_07_038
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_05_039
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_07_040
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_05_041
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_05_042
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_11_043
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_05_05_044
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_06_045
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_07_046
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_08_047
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_07_048
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_09_049
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_07_050
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_06_051
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_06_052
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_11_053
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_12_054
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_06_055
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_06_056
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_06_12_057
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_058
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_059
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_060
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_061
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_062
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_063
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_10_064
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_10_065
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_066
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_067
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_068
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_07_07_069
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_070
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_071
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_072
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_10_073
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_09_074
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_10_075
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_076
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_10_077
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_078
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_12_079
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_080
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_12_081
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_082
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_08_08_083
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_12_084
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_09_085
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_09_086
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_09_087
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_10_088
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_09_089
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_09_090
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_12_091
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_09_092
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_09_12_093
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_10_094
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_11_095
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_10_096
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_10_097
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_12_098
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_10_099
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_11_100
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_11_101
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_10_10_102
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_11_103
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_11_104
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_11_105
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_12_106
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_12_107
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_11_108
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_11_109
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_11_12_110
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_12_111
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_12_112
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_13_113
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_13_114
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_22_115
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_24_116
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_12_12_117
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_118
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_119
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_120
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_121
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_122
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_123
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_18_124
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_13_125
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_13_19_126
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_14_14_127
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_14_14_128
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_14_14_129
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_14_15_130
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_15_16_131
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_15_15_132
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_15_15_133
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_16_16_134
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_16_16_135
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_17_17_136
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_17_18_137
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_17_18_138
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_18_18_139
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_19_19_140
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_20_21_141
object not in US -89.5946278428 30.0843102495
object not in US -89.3446247692 30.1642322936
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_20_20_142
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_20_23_143
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_21_24_144
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_22_22_145
object not in US -88.9083390573 30.1073208204
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_22_23_146
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_22_23_147
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_22_24_148
1km_on_3km_pbl1_WSPD10MAX_20070224-1200_23_24_149
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2007022412_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20080212-1200_01_01_000
3km_pbl1_WSPD10MAX_20080212-1200_01_01_001
3km_pbl1_WSPD10MAX_20080212-1200_01_01_002
3km_pbl1_WSPD10MAX_20080212-1200_01_01_003
3km_pbl1_WSPD10MAX_20080212-1200_01_09_004
3km_pbl1_WSPD10MAX_20080212-1200_01_01_005
3km_pbl1_WSPD10MAX_20080212-1200_02_05_006
3km_pbl1_WSPD10MAX_20080212-1200_04_05_007
object not in US -100.976669732 28.8312306316
object not in US -100.976669732 28.8312306316
3km_pbl1_WSPD10MAX_20080212-1200_04_04_008
object not in US -101.230955555 28.8903640329
3km_pbl1_WSPD10MAX_20080212-1200_06_06_009
object not in US -100.883992623 27.9994401433
3km_pbl1_WSPD10MAX_20080212-1200_06_10_010
object not in US -78.4424961157 33.7425957081
object not in US -78.3713077532 33.7906275866
object not in US -78.4503300334 33.4181190702
object not in US -78.4591786392 33.6085650331
object not in US -78.4680634819 33.7989788929
3km_pbl1_WSPD10MAX_20080212-1200_07_08_011
3km_pbl1_WSPD10MAX_20080212-1200_07_07_012
object not in US -78.6116514077 33.160985286
3km_pbl1_WSPD10MAX_20080212-1200_07_07_013
object not in US -78.2762327184 33.5113638685
3km_pbl1_WSPD10MAX_20080212-1200_08_10_014
object not in US -80.2927589234 28.5011704316
object not in US -80.0904018603 28.6750300981
object not in US -79.9962482428 28.9925736939
3km_pbl1_WSPD10MAX_20080212-1200_08_09_015
object not in US -80.4631157512 28.6493854223
object not in US -80.4114631553 28.8620308274
3km_pbl1_WSPD10MAX_20080212-1200_08_08_016
3km_pbl1_WSPD10MAX_20080212-1200_08_08_017
object not in US -79.5135712995 32.9100158171
3km_pbl1_WSPD10MAX_20080212-1200_08_08_018
object not in US -78.736906592 32.9277335007
3km_pbl1_WSPD10MAX_20080212-1200_09_09_019
object not in US -84.2434836949 26.6907665677
3km_pbl1_WSPD10MAX_20080212-1200_09_09_020
object not in US -84.7465721187 26.8745865794
3km_pbl1_WSPD10MAX_20080212-1200_09_11_021
object not in US -80.332957778 29.3434136233
object not in US -80.2177538128 29.2534296326
object not in US -80.1171829069 29.3269393494
3km_pbl1_WSPD10MAX_20080212-1200_09_09_022
3km_pbl1_WSPD10MAX_20080212-1200_09_09_023
object not in US -78.963190974 32.377596186
3km_pbl1_WSPD10MAX_20080212-1200_09_17_024
object not in US -78.7524775248 33.3355235997
object not in US -78.8262768764 33.5313513293
object not in US -78.7746761219 33.6895556322
object not in US -78.6011134823 33.5123533864
object not in US -78.5102909242 33.721330981
object not in US -78.5887005026 33.3487190413
object not in US -78.5278009226 33.316399228
object not in US -78.3338068838 33.5705988716
object not in US -78.5598919398 33.3191543752
3km_pbl1_WSPD10MAX_20080212-1200_10_10_025
object not in US -85.40092423 26.4423592865
3km_pbl1_WSPD10MAX_20080212-1200_10_16_026
object not in US -84.722116812 26.7657607323
object not in US -84.4451333327 26.8615897625
object not in US -84.1120570759 26.8733407257
object not in US -83.7237088072 26.8005668715
object not in US -83.1991333412 26.961968784
object not in US -83.2028010164 26.908221527
object not in US -83.0106994979 27.059518297
3km_pbl1_WSPD10MAX_20080212-1200_10_10_027
object not in US -84.2009140355 26.9044417597
3km_pbl1_WSPD10MAX_20080212-1200_10_12_028
object not in US -80.1324995961 29.7885274617
object not in US -80.0457136081 30.025627795
object not in US -79.8056382817 30.5216660404
3km_pbl1_WSPD10MAX_20080212-1200_10_10_029
3km_pbl1_WSPD10MAX_20080212-1200_10_13_030
object not in US -79.8680294241 30.5265609521
object not in US -79.8169057527 30.7122232974
object not in US -79.7000668535 30.9197918154
object not in US -79.6577490527 30.7267368571
3km_pbl1_WSPD10MAX_20080212-1200_10_10_031
3km_pbl1_WSPD10MAX_20080212-1200_10_10_032
3km_pbl1_WSPD10MAX_20080212-1200_10_10_033
object not in US -78.9659952305 32.079652344
3km_pbl1_WSPD10MAX_20080212-1200_10_11_034
object not in US -78.6357327419 32.4311564905
object not in US -78.650213997 33.1100754581
3km_pbl1_WSPD10MAX_20080212-1200_10_10_035
object not in US -78.9094638129 32.8338524146
3km_pbl1_WSPD10MAX_20080212-1200_10_10_036
object not in US -78.2998508325 33.3237083035
3km_pbl1_WSPD10MAX_20080212-1200_11_11_037
object not in US -85.1007033074 26.4309427269
3km_pbl1_WSPD10MAX_20080212-1200_11_11_038
object not in US -83.9581160735 26.9199361264
3km_pbl1_WSPD10MAX_20080212-1200_11_11_039
object not in US -84.1120360049 27.3857023802
3km_pbl1_WSPD10MAX_20080212-1200_11_14_040
object not in US -94.4557614506 28.6313519312
object not in US -94.2821471483 28.8801841684
object not in US -93.8267451988 29.0565546689
object not in US -93.5849748599 29.198488057
3km_pbl1_WSPD10MAX_20080212-1200_11_11_041
object not in US -94.2252433221 28.9900349347
3km_pbl1_WSPD10MAX_20080212-1200_11_11_042
3km_pbl1_WSPD10MAX_20080212-1200_11_11_043
object not in US -79.7454394995 31.0859613762
3km_pbl1_WSPD10MAX_20080212-1200_12_12_044
object not in US -84.0006193547 27.2186050596
3km_pbl1_WSPD10MAX_20080212-1200_12_12_045
object not in US -94.1997891 28.3972106685
3km_pbl1_WSPD10MAX_20080212-1200_12_12_046
object not in US -93.6921959173 28.7636837945
3km_pbl1_WSPD10MAX_20080212-1200_12_20_047
object not in US -79.6321652361 29.5052998396
object not in US -79.50765755 29.7932411756
object not in US -79.435675876 30.1667706221
object not in US -79.2977707298 30.5620095109
object not in US -79.0555645352 31.0298121107
object not in US -78.8738850375 31.2313466025
object not in US -78.8079369793 31.2528226515
object not in US -78.7889945719 31.4139083471
object not in US -78.826698344 31.6340717113
3km_pbl1_WSPD10MAX_20080212-1200_12_16_048
object not in US -79.8566753672 29.7399728844
object not in US -79.8059446105 29.9256053994
object not in US -79.9129723995 29.7985827622
object not in US -79.8087760531 29.8987366026
object not in US -79.9183742029 29.4468618219
3km_pbl1_WSPD10MAX_20080212-1200_12_12_049
object not in US -90.1248695799 30.1928137417
3km_pbl1_WSPD10MAX_20080212-1200_12_13_050
object not in US -79.5759875265 31.4790192439
object not in US -79.50113302 31.5814368382
3km_pbl1_WSPD10MAX_20080212-1200_12_12_051
object not in US -78.6357327419 32.4311564905
3km_pbl1_WSPD10MAX_20080212-1200_12_12_052
object not in US -79.2688794995 32.5111716395
3km_pbl1_WSPD10MAX_20080212-1200_12_22_053
object not in US -77.5478953996 33.6082047374
object not in US -77.5550787149 33.5546344056
object not in US -77.6371476718 33.1825420734
object not in US -77.6548815431 33.0485545343
object not in US -77.7355046855 32.18776909
object not in US -77.5550787149 33.5546344056
object not in US -77.7180465726 32.3218342659
object not in US -77.7563892803 32.0268778051
object not in US -77.958042769 30.4442893048
object not in US -77.9690084112 30.6081519112
object not in US -77.9723719204 30.5813239774
3km_pbl1_WSPD10MAX_20080212-1200_13_13_054
object not in US -96.4395970146 26.5226856055
3km_pbl1_WSPD10MAX_20080212-1200_13_16_055
object not in US -96.8894586616 26.9301574799
object not in US -96.4355030062 26.9273134969
object not in US -95.9799677565 26.8959435809
object not in US -95.7574179981 27.2299186802
3km_pbl1_WSPD10MAX_20080212-1200_13_14_056
object not in US -83.6645858122 27.2560675528
object not in US -83.4725159916 27.4081272686
3km_pbl1_WSPD10MAX_20080212-1200_13_13_057
object not in US -83.949881655 28.052626148
3km_pbl1_WSPD10MAX_20080212-1200_13_18_058
object not in US -93.9810266804 28.2963422537
object not in US -93.9187585587 28.2713037775
object not in US -93.9134071275 28.1366041689
object not in US -93.7311244899 28.1690673272
object not in US -93.7891383576 28.0864373421
object not in US -94.2682909697 27.855443891
3km_pbl1_WSPD10MAX_20080212-1200_13_14_059
object not in US -93.1464680165 29.0211241167
object not in US -93.2309462117 28.7761954142
3km_pbl1_WSPD10MAX_20080212-1200_13_13_060
object not in US -93.9403113848 28.8102307551
3km_pbl1_WSPD10MAX_20080212-1200_13_13_061
object not in US -79.8705811261 28.7118660689
3km_pbl1_WSPD10MAX_20080212-1200_13_13_062
object not in US -94.0767919749 29.1298013776
3km_pbl1_WSPD10MAX_20080212-1200_13_13_063
object not in US -93.5899307205 29.3332900292
3km_pbl1_WSPD10MAX_20080212-1200_13_13_064
object not in US -92.5381452926 29.3584015222
3km_pbl1_WSPD10MAX_20080212-1200_13_13_065
object not in US -80.0362874421 29.5102514264
3km_pbl1_WSPD10MAX_20080212-1200_13_13_066
object not in US -88.844996928 30.1877214117
3km_pbl1_WSPD10MAX_20080212-1200_13_13_067
object not in US -78.5671584672 29.8214729314
3km_pbl1_WSPD10MAX_20080212-1200_13_13_068
3km_pbl1_WSPD10MAX_20080212-1200_13_16_069
object not in US -81.0821806309 30.9947393911
object not in US -81.106061481 31.0775794573
object not in US -80.7972465141 31.0019922773
object not in US -80.9388557882 31.1743531531
3km_pbl1_WSPD10MAX_20080212-1200_13_14_070
object not in US -79.8624039505 31.1763972325
object not in US -79.8767168898 31.3400717997
3km_pbl1_WSPD10MAX_20080212-1200_13_15_071
object not in US -78.8991818939 31.5588905297
object not in US -78.7477326586 31.7628995043
object not in US -78.6717642865 31.8648339888
3km_pbl1_WSPD10MAX_20080212-1200_13_13_072
object not in US -78.9922539861 32.6781495822
3km_pbl1_WSPD10MAX_20080212-1200_13_13_073
object not in US -78.941945971 33.3784407129
3km_pbl1_WSPD10MAX_20080212-1200_13_13_074
object not in US -78.5344003679 33.2627658073
3km_pbl1_WSPD10MAX_20080212-1200_14_14_075
object not in US -95.5054321621 26.5134474217
3km_pbl1_WSPD10MAX_20080212-1200_14_14_076
object not in US -96.1125495589 26.5930176547
3km_pbl1_WSPD10MAX_20080212-1200_14_16_077
object not in US -95.3323664376 26.6556659165
object not in US -95.1449466189 26.5288093705
object not in US -94.5665978094 26.389693883
3km_pbl1_WSPD10MAX_20080212-1200_14_14_078
object not in US -94.6893406852 27.0855948571
3km_pbl1_WSPD10MAX_20080212-1200_14_16_079
object not in US -83.1751967552 27.3114021676
object not in US -82.8443648353 27.2660246184
object not in US -82.7458045027 27.3683405836
3km_pbl1_WSPD10MAX_20080212-1200_14_14_080
object not in US -82.9634204611 27.2997317462
3km_pbl1_WSPD10MAX_20080212-1200_14_14_081
object not in US -94.0136735699 27.594149718
3km_pbl1_WSPD10MAX_20080212-1200_14_15_082
object not in US -83.5874860402 27.980803075
object not in US -83.3237495986 28.2641930487
3km_pbl1_WSPD10MAX_20080212-1200_14_16_083
object not in US -93.0662121033 28.4295931995
object not in US -92.7873184091 28.3281358145
object not in US -93.0305836105 28.2686312017
3km_pbl1_WSPD10MAX_20080212-1200_14_15_084
object not in US -92.7657842677 28.6522503349
object not in US -92.398451797 28.7136336754
3km_pbl1_WSPD10MAX_20080212-1200_14_15_085
object not in US -83.3973607033 28.5381189739
object not in US -83.1660562882 28.7690413337
3km_pbl1_WSPD10MAX_20080212-1200_14_14_086
object not in US -94.3294032818 28.5547550743
3km_pbl1_WSPD10MAX_20080212-1200_14_16_087
object not in US -94.7666206948 28.7010701324
object not in US -94.705188859 28.7033520627
object not in US -94.6744718744 28.7044819354
3km_pbl1_WSPD10MAX_20080212-1200_14_14_088
object not in US -92.5914287296 29.033570137
3km_pbl1_WSPD10MAX_20080212-1200_14_14_089
object not in US -89.7836513046 29.2214591275
3km_pbl1_WSPD10MAX_20080212-1200_14_14_090
object not in US -92.9964342221 29.1596343308
3km_pbl1_WSPD10MAX_20080212-1200_14_14_091
object not in US -79.8538716729 29.1709107876
3km_pbl1_WSPD10MAX_20080212-1200_14_14_092
object not in US -93.225017606 29.5318925443
3km_pbl1_WSPD10MAX_20080212-1200_14_14_093
object not in US -89.0074380691 29.5684980937
3km_pbl1_WSPD10MAX_20080212-1200_14_14_094
object not in US -91.9877221549 29.6918823156
3km_pbl1_WSPD10MAX_20080212-1200_14_14_095
object not in US -88.6896599292 30.1322740929
3km_pbl1_WSPD10MAX_20080212-1200_14_14_096
object not in US -78.625877768 29.8538026609
3km_pbl1_WSPD10MAX_20080212-1200_14_14_097
object not in US -80.8170763952 30.1370068304
3km_pbl1_WSPD10MAX_20080212-1200_14_14_098
object not in US -87.9967104803 30.4472442529
3km_pbl1_WSPD10MAX_20080212-1200_14_14_099
object not in US -79.6272005008 30.4261991304
3km_pbl1_WSPD10MAX_20080212-1200_14_14_100
object not in US -80.0184528647 30.5924199751
3km_pbl1_WSPD10MAX_20080212-1200_14_14_101
object not in US -81.131458633 31.4853271207
3km_pbl1_WSPD10MAX_20080212-1200_14_17_102
object not in US -80.6031115715 31.692155823
object not in US -80.3863500978 31.9472443585
object not in US -80.5897940762 31.8265801552
object not in US -80.4651507551 32.115434356
3km_pbl1_WSPD10MAX_20080212-1200_14_14_103
object not in US -79.3989815979 31.3563786016
3km_pbl1_WSPD10MAX_20080212-1200_14_16_104
object not in US -79.7122827307 32.2755115942
object not in US -79.7088909617 32.6002940011
object not in US -79.595427582 32.7539469331
3km_pbl1_WSPD10MAX_20080212-1200_14_14_105
object not in US -79.4827748649 32.609619178
3km_pbl1_WSPD10MAX_20080212-1200_15_15_106
object not in US -87.4439628532 26.5008524686
3km_pbl1_WSPD10MAX_20080212-1200_15_15_107
object not in US -94.6979781177 26.6272154149
3km_pbl1_WSPD10MAX_20080212-1200_15_15_108
object not in US -95.9388951595 27.2214770681
3km_pbl1_WSPD10MAX_20080212-1200_15_15_109
object not in US -93.6674970247 27.2812529726
3km_pbl1_WSPD10MAX_20080212-1200_15_15_110
object not in US -96.278313968 27.312883972
3km_pbl1_WSPD10MAX_20080212-1200_15_15_111
object not in US -93.3847545665 27.8821644939
3km_pbl1_WSPD10MAX_20080212-1200_15_15_112
object not in US -83.4279761459 27.6217023213
3km_pbl1_WSPD10MAX_20080212-1200_15_16_113
object not in US -93.7208960973 28.7088872758
object not in US -93.6029266452 28.8471805312
3km_pbl1_WSPD10MAX_20080212-1200_15_16_114
object not in US -92.0015533508 28.8553365563
object not in US -91.9097178218 28.8837150471
3km_pbl1_WSPD10MAX_20080212-1200_15_18_115
object not in US -93.1447345861 28.9672043013
object not in US -93.1816836899 29.1551671546
object not in US -93.2161072913 29.2622461753
object not in US -93.2542068188 29.477180196
3km_pbl1_WSPD10MAX_20080212-1200_15_15_116
object not in US -89.5370370968 29.0859406616
3km_pbl1_WSPD10MAX_20080212-1200_15_15_117
object not in US -88.7940076512 29.2699206002
3km_pbl1_WSPD10MAX_20080212-1200_15_15_118
object not in US -93.9555399103 29.18758398
3km_pbl1_WSPD10MAX_20080212-1200_15_15_119
object not in US -92.7825933078 29.2454029701
3km_pbl1_WSPD10MAX_20080212-1200_15_16_120
object not in US -91.6420350795 29.4539275803
object not in US -91.7635012468 29.3174227621
3km_pbl1_WSPD10MAX_20080212-1200_15_17_121
object not in US -79.1901782187 30.1193265898
object not in US -79.0666126635 30.3800279417
object not in US -79.0482742424 30.541154824
3km_pbl1_WSPD10MAX_20080212-1200_15_15_122
object not in US -80.7525021489 30.4843755012
3km_pbl1_WSPD10MAX_20080212-1200_15_15_123
object not in US -79.7231447584 30.7048327215
3km_pbl1_WSPD10MAX_20080212-1200_15_16_124
object not in US -80.3597162721 31.2682580171
object not in US -80.2583907043 31.6399234876
3km_pbl1_WSPD10MAX_20080212-1200_15_15_125
object not in US -79.286499129 31.5098403645
3km_pbl1_WSPD10MAX_20080212-1200_15_15_126
object not in US -79.6155359686 31.6989475361
3km_pbl1_WSPD10MAX_20080212-1200_15_15_127
object not in US -79.095134683 31.7922348843
3km_pbl1_WSPD10MAX_20080212-1200_15_15_128
object not in US -80.2526037684 32.3165103817
3km_pbl1_WSPD10MAX_20080212-1200_15_15_129
object not in US -78.1624303922 32.3624558134
3km_pbl1_WSPD10MAX_20080212-1200_15_17_130
object not in US -79.3156051029 32.9484223317
object not in US -79.2958957253 32.83847836
object not in US -79.2774705829 32.9995290826
3km_pbl1_WSPD10MAX_20080212-1200_16_16_131
object not in US -95.0291319779 26.0218864604
3km_pbl1_WSPD10MAX_20080212-1200_16_18_132
object not in US -94.1508508232 26.5119117375
object not in US -93.6369678533 26.4471508876
object not in US -93.2738566105 26.3764402708
3km_pbl1_WSPD10MAX_20080212-1200_16_16_133
object not in US -94.4645237749 26.7973907424
3km_pbl1_WSPD10MAX_20080212-1200_16_17_134
object not in US -93.3252901228 27.021340388
object not in US -93.297749764 27.1028834048
3km_pbl1_WSPD10MAX_20080212-1200_16_17_135
object not in US -94.7221106742 27.1382724967
object not in US -94.8535380043 27.3489274034
3km_pbl1_WSPD10MAX_20080212-1200_16_17_136
object not in US -93.0379155981 27.5135984327
object not in US -92.8813961917 27.3555898206
3km_pbl1_WSPD10MAX_20080212-1200_16_18_137
object not in US -91.8544214284 27.5904361725
object not in US -91.6416514829 27.5933822588
object not in US -91.6720479521 27.5929833421
3km_pbl1_WSPD10MAX_20080212-1200_16_16_138
object not in US -93.7726603436 27.6555007424
3km_pbl1_WSPD10MAX_20080212-1200_16_21_139
object not in US -92.5340450959 28.0098862746
object not in US -92.237983293 28.4198914621
object not in US -92.241052893 28.5546748194
object not in US -92.4231994394 28.4704332697
object not in US -92.4865708758 28.550118362
object not in US -92.2704982 28.5002166078
3km_pbl1_WSPD10MAX_20080212-1200_16_16_140
object not in US -82.5582017367 27.8434177686
3km_pbl1_WSPD10MAX_20080212-1200_16_17_141
3km_pbl1_WSPD10MAX_20080212-1200_16_18_142
object not in US -91.6565021302 28.4827204065
object not in US -91.8054022972 28.2380277602
object not in US -92.0762018282 28.0182141658
3km_pbl1_WSPD10MAX_20080212-1200_16_17_143
object not in US -93.288836294 28.6668051742
object not in US -93.5326327204 28.60632628
3km_pbl1_WSPD10MAX_20080212-1200_16_18_144
object not in US -91.47692254 28.7815681463
object not in US -91.5999832882 28.7800851132
object not in US -91.6624264142 28.8332284838
3km_pbl1_WSPD10MAX_20080212-1200_16_16_145
object not in US -91.1080247293 28.8122717114
3km_pbl1_WSPD10MAX_20080212-1200_16_17_146
object not in US -92.6509143835 28.9514172652
object not in US -92.9225808599 28.7566526377
3km_pbl1_WSPD10MAX_20080212-1200_16_16_147
object not in US -88.45517513 29.185358263
3km_pbl1_WSPD10MAX_20080212-1200_16_17_148
object not in US -79.8594629529 29.1171869236
object not in US -79.873414303 28.9828827182
3km_pbl1_WSPD10MAX_20080212-1200_16_16_149
object not in US -91.9877221549 29.6918823156
3km_pbl1_WSPD10MAX_20080212-1200_16_17_150
object not in US -80.3519804913 29.7780984948
object not in US -80.2684476195 29.9884661739
3km_pbl1_WSPD10MAX_20080212-1200_16_24_151
object not in US -79.5989472571 30.3968308772
object not in US -79.5278839072 30.4724028556
object not in US -79.5590556062 30.4749207438
object not in US -79.2466537603 31.018627747
object not in US -79.3854227092 30.6234314207
object not in US -79.2052037722 30.8254276803
object not in US -79.2394986293 30.801163886
object not in US -78.9052862726 31.2340214077
object not in US -78.5027031811 31.4161530405
3km_pbl1_WSPD10MAX_20080212-1200_16_17_152
object not in US -81.2734284756 30.6287654243
object not in US -81.070876418 30.7774051498
3km_pbl1_WSPD10MAX_20080212-1200_16_16_153
object not in US -78.2808111271 30.636734915
3km_pbl1_WSPD10MAX_20080212-1200_16_16_154
object not in US -79.6170287843 31.1028909845
3km_pbl1_WSPD10MAX_20080212-1200_16_19_155
object not in US -79.0517233764 32.1681288242
object not in US -79.0236337114 32.4097370595
object not in US -78.9091082486 32.2917434842
object not in US -78.6702477269 32.6781103891
3km_pbl1_WSPD10MAX_20080212-1200_16_17_156
object not in US -79.7469726332 32.2511225189
object not in US -79.7005528035 32.3829522453
3km_pbl1_WSPD10MAX_20080212-1200_16_17_157
object not in US -79.0635267226 33.1717493314
object not in US -79.0446357794 33.3327297245
3km_pbl1_WSPD10MAX_20080212-1200_17_18_158
object not in US -93.9760157902 25.8985397324
object not in US -93.8266602999 25.9032259275
3km_pbl1_WSPD10MAX_20080212-1200_17_17_159
object not in US -94.6454063911 26.1444712477
3km_pbl1_WSPD10MAX_20080212-1200_17_17_160
object not in US -94.3334746281 26.5595738049
3km_pbl1_WSPD10MAX_20080212-1200_17_19_161
object not in US -93.0150016946 26.7598554259
object not in US -93.3720527872 26.616116442
object not in US -93.1631171468 26.6754222583
3km_pbl1_WSPD10MAX_20080212-1200_17_17_162
object not in US -82.9506266574 26.6245774804
3km_pbl1_WSPD10MAX_20080212-1200_17_17_163
object not in US -82.7606389376 26.7485760215
3km_pbl1_WSPD10MAX_20080212-1200_17_17_164
object not in US -93.8533896703 27.383502265
3km_pbl1_WSPD10MAX_20080212-1200_17_18_165
object not in US -92.4001749792 27.5273445165
object not in US -92.2137258946 27.3421514349
3km_pbl1_WSPD10MAX_20080212-1200_17_17_166
object not in US -95.8959525767 27.5202075494
3km_pbl1_WSPD10MAX_20080212-1200_17_17_167
object not in US -95.5333697697 27.5636167367
3km_pbl1_WSPD10MAX_20080212-1200_17_20_168
object not in US -93.2045167568 27.9677406096
object not in US -93.3247099657 27.910717659
object not in US -93.2359013666 27.9939054711
object not in US -93.2610749408 27.8314915934
3km_pbl1_WSPD10MAX_20080212-1200_17_17_169
3km_pbl1_WSPD10MAX_20080212-1200_17_18_170
3km_pbl1_WSPD10MAX_20080212-1200_17_17_171
object not in US -94.0544204304 28.5907888232
3km_pbl1_WSPD10MAX_20080212-1200_17_17_172
object not in US -80.2074985442 28.738237029
3km_pbl1_WSPD10MAX_20080212-1200_17_17_173
object not in US -92.0745424767 29.3937109441
3km_pbl1_WSPD10MAX_20080212-1200_17_18_174
object not in US -90.0312087004 30.1658878965
object not in US -90.0 30.1389094957
3km_pbl1_WSPD10MAX_20080212-1200_17_18_175
object not in US -81.0072155362 30.4481626198
object not in US -81.0222670526 30.2867856624
3km_pbl1_WSPD10MAX_20080212-1200_17_17_176
object not in US -79.7995896272 31.1714995649
3km_pbl1_WSPD10MAX_20080212-1200_17_17_177
object not in US -79.6763278771 31.432780496
3km_pbl1_WSPD10MAX_20080212-1200_17_17_178
object not in US -78.2627360927 31.5575990297
3km_pbl1_WSPD10MAX_20080212-1200_17_19_179
object not in US -78.7495225744 33.0914054461
object not in US -78.6588943808 33.5714487222
object not in US -78.4780627349 33.7185648662
3km_pbl1_WSPD10MAX_20080212-1200_18_19_180
object not in US -93.7518836623 25.5020932148
object not in US -93.6577524805 25.3704958825
3km_pbl1_WSPD10MAX_20080212-1200_18_18_181
object not in US -92.7275995408 26.1742923878
3km_pbl1_WSPD10MAX_20080212-1200_18_22_182
object not in US -92.4592458245 26.2336852073
object not in US -92.2463593432 26.1031878193
object not in US -91.9108260007 25.7860740285
object not in US -91.6395331517 25.6286568585
object not in US -91.4618648439 25.7115168945
3km_pbl1_WSPD10MAX_20080212-1200_18_18_183
object not in US -92.764223768 26.415675201
3km_pbl1_WSPD10MAX_20080212-1200_18_21_184
object not in US -92.467843133 26.5833757152
object not in US -92.2910182472 26.7482607915
object not in US -92.3443445066 26.4511730843
object not in US -92.4318712908 26.3418534508
3km_pbl1_WSPD10MAX_20080212-1200_18_18_185
object not in US -82.4937704087 27.083630598
3km_pbl1_WSPD10MAX_20080212-1200_18_19_186
object not in US -85.8871507539 27.0518993902
object not in US -85.8591739384 26.9970910488
3km_pbl1_WSPD10MAX_20080212-1200_18_18_187
object not in US -93.2478095502 27.4275179575
3km_pbl1_WSPD10MAX_20080212-1200_18_20_188
object not in US -91.2474937418 27.6787269427
object not in US -91.2160775113 27.598198676
object not in US -91.0362109524 27.8423212228
3km_pbl1_WSPD10MAX_20080212-1200_18_18_189
object not in US -94.872017307 27.7257394425
3km_pbl1_WSPD10MAX_20080212-1200_18_19_190
object not in US -91.344982348 28.1359057541
object not in US -91.3140584542 28.1092732217
3km_pbl1_WSPD10MAX_20080212-1200_18_18_191
object not in US -92.3755441646 29.0377600772
3km_pbl1_WSPD10MAX_20080212-1200_18_22_192
object not in US -80.4982876667 28.9226660216
object not in US -80.3220877035 28.8282058776
object not in US -79.7559387042 29.217271138
object not in US -79.4836818221 29.4390123099
object not in US -79.5905950886 29.3122796107
3km_pbl1_WSPD10MAX_20080212-1200_18_18_193
object not in US -78.8732270508 28.7910982871
3km_pbl1_WSPD10MAX_20080212-1200_18_18_194
object not in US -78.8794216755 29.008462684
3km_pbl1_WSPD10MAX_20080212-1200_18_19_195
object not in US -79.9492277556 29.4492853462
object not in US -79.8397705961 29.9011868019
3km_pbl1_WSPD10MAX_20080212-1200_18_18_196
object not in US -80.3642352923 29.9685822254
3km_pbl1_WSPD10MAX_20080212-1200_18_18_197
object not in US -80.9971531829 30.5557479121
3km_pbl1_WSPD10MAX_20080212-1200_18_19_198
object not in US -80.4110531114 30.7574608759
object not in US -80.6172050846 30.5829611516
3km_pbl1_WSPD10MAX_20080212-1200_18_18_199
object not in US -79.2990417855 30.8331912967
3km_pbl1_WSPD10MAX_20080212-1200_18_18_200
object not in US -79.4093315808 30.9777537788
3km_pbl1_WSPD10MAX_20080212-1200_18_18_201
object not in US -80.5799126208 31.2843254885
3km_pbl1_WSPD10MAX_20080212-1200_18_18_202
object not in US -78.1960548694 32.0942052956
3km_pbl1_WSPD10MAX_20080212-1200_18_19_203
object not in US -78.3349078202 32.7845800628
object not in US -78.2711413865 33.2940810368
3km_pbl1_WSPD10MAX_20080212-1200_19_20_204
object not in US -91.5668110964 26.7055706882
object not in US -91.0264264994 26.8996069667
3km_pbl1_WSPD10MAX_20080212-1200_19_20_205
object not in US -91.454919785 27.2993270214
object not in US -91.3636272388 27.2734130134
3km_pbl1_WSPD10MAX_20080212-1200_19_19_206
object not in US -85.3408780571 27.0867193857
3km_pbl1_WSPD10MAX_20080212-1200_19_22_207
object not in US -90.7898245716 27.5207588262
object not in US -90.15189177 27.5231394718
object not in US -89.9394405535 27.1999862545
object not in US -89.2146527145 26.955195065
3km_pbl1_WSPD10MAX_20080212-1200_19_20_208
object not in US -92.5617697439 27.9014967611
object not in US -92.5042078373 28.0374386849
3km_pbl1_WSPD10MAX_20080212-1200_19_20_209
object not in US -89.0841938477 28.004956633
object not in US -89.0539265032 27.9777815601
3km_pbl1_WSPD10MAX_20080212-1200_19_20_210
object not in US -90.3664293001 28.0346883482
object not in US -90.3358937169 28.0347729331
3km_pbl1_WSPD10MAX_20080212-1200_19_19_211
object not in US -78.8396095121 28.0024063194
3km_pbl1_WSPD10MAX_20080212-1200_19_19_212
object not in US -91.9076175748 28.7758585992
3km_pbl1_WSPD10MAX_20080212-1200_19_19_213
object not in US -80.3061825116 29.6121718039
3km_pbl1_WSPD10MAX_20080212-1200_19_20_214
object not in US -89.1573809955 30.1631486419
object not in US -89.0030163833 30.0001545654
3km_pbl1_WSPD10MAX_20080212-1200_19_20_215
object not in US -78.9973753926 29.8861215182
object not in US -78.9882029828 29.9666724747
3km_pbl1_WSPD10MAX_20080212-1200_19_19_216
object not in US -80.7705602575 30.2961366243
3km_pbl1_WSPD10MAX_20080212-1200_19_20_217
object not in US -80.0676623328 31.0296467616
object not in US -80.4969249872 30.8450158223
3km_pbl1_WSPD10MAX_20080212-1200_19_19_218
object not in US -80.0914076602 31.4107048398
3km_pbl1_WSPD10MAX_20080212-1200_19_19_219
object not in US -78.5801968446 31.829780875
3km_pbl1_WSPD10MAX_20080212-1200_20_20_220
object not in US -92.8765489701 25.0955587288
3km_pbl1_WSPD10MAX_20080212-1200_20_20_221
object not in US -94.087157352 24.9539617177
3km_pbl1_WSPD10MAX_20080212-1200_20_21_222
object not in US -92.3547866635 25.6171449639
object not in US -92.4991163259 25.4261750507
3km_pbl1_WSPD10MAX_20080212-1200_20_20_223
object not in US -91.2842473537 25.8210141634
3km_pbl1_WSPD10MAX_20080212-1200_20_20_224
object not in US -91.081548699 26.4146643955
3km_pbl1_WSPD10MAX_20080212-1200_20_20_225
object not in US -83.5707653864 26.3615104353
3km_pbl1_WSPD10MAX_20080212-1200_20_20_226
object not in US -91.9413854658 27.3735833183
3km_pbl1_WSPD10MAX_20080212-1200_20_21_227
object not in US -88.1720007448 27.8064083927
object not in US -88.0196980564 27.8041156722
3km_pbl1_WSPD10MAX_20080212-1200_20_20_228
object not in US -93.1495223584 28.1578685135
3km_pbl1_WSPD10MAX_20080212-1200_20_21_229
object not in US -91.4115096346 28.51263711
object not in US -91.4425868377 28.5392538598
3km_pbl1_WSPD10MAX_20080212-1200_20_23_230
object not in US -80.3271941029 28.152017823
object not in US -80.1121011076 28.4601652346
object not in US -79.6199705045 28.7458295664
object not in US -79.2566632628 28.9595060987
3km_pbl1_WSPD10MAX_20080212-1200_20_20_231
object not in US -91.8997826185 28.3714629071
3km_pbl1_WSPD10MAX_20080212-1200_20_20_232
object not in US -93.2054796729 28.9387148439
3km_pbl1_WSPD10MAX_20080212-1200_20_21_233
object not in US -80.3744238327 29.2382385657
object not in US -80.369109186 29.2919874778
3km_pbl1_WSPD10MAX_20080212-1200_20_22_234
object not in US -80.5945561053 29.8502169935
object not in US -80.2657410538 30.0153454441
object not in US -80.0068014554 30.4018821625
3km_pbl1_WSPD10MAX_20080212-1200_20_21_235
object not in US -79.9896168538 30.2650971917
object not in US -79.9105105848 30.4215023428
3km_pbl1_WSPD10MAX_20080212-1200_20_20_236
object not in US -79.6490501146 30.8073426688
3km_pbl1_WSPD10MAX_20080212-1200_20_20_237
object not in US -80.1469623997 31.7941079148
3km_pbl1_WSPD10MAX_20080212-1200_20_20_238
object not in US -79.1429454394 31.9317324587
3km_pbl1_WSPD10MAX_20080212-1200_20_24_239
object not in US -77.6264605049 33.0187834989
object not in US -77.711533739 32.8639065926
object not in US -77.9015596306 32.3930588134
object not in US -77.7323123613 32.4588437332
object not in US -77.7323123613 32.4588437332
3km_pbl1_WSPD10MAX_20080212-1200_20_20_240
object not in US -78.9949755353 32.3802485776
3km_pbl1_WSPD10MAX_20080212-1200_20_21_241
object not in US -79.7784934736 32.551516066
object not in US -79.6740626944 32.6246687887
3km_pbl1_WSPD10MAX_20080212-1200_20_22_242
object not in US -78.1367370894 32.8212370084
object not in US -78.5272819146 32.5302412406
object not in US -78.173475781 33.0414481485
3km_pbl1_WSPD10MAX_20080212-1200_20_22_243
object not in US -79.3217287051 32.8947373605
object not in US -79.1814694251 32.9917549087
object not in US -78.8905009523 33.2658074854
3km_pbl1_WSPD10MAX_20080212-1200_20_20_244
object not in US -78.048915463 33.76228745
3km_pbl1_WSPD10MAX_20080212-1200_21_24_245
object not in US -92.2202141693 24.9211163412
object not in US -91.6856725228 24.82219507
object not in US -91.034017709 24.7220270359
object not in US -90.5021155238 24.698508408
3km_pbl1_WSPD10MAX_20080212-1200_21_21_246
object not in US -90.5380422225 25.9071413394
3km_pbl1_WSPD10MAX_20080212-1200_21_21_247
object not in US -92.1530701826 25.9434549034
3km_pbl1_WSPD10MAX_20080212-1200_21_22_248
object not in US -90.1198539689 26.1502741335
object not in US -89.7903118698 26.1232593896
3km_pbl1_WSPD10MAX_20080212-1200_21_21_249
object not in US -84.0397110728 26.0615457992
3km_pbl1_WSPD10MAX_20080212-1200_21_21_250
object not in US -89.9698670487 26.7153663239
3km_pbl1_WSPD10MAX_20080212-1200_21_21_251
object not in US -90.9039688936 26.7121082404
3km_pbl1_WSPD10MAX_20080212-1200_21_21_252
object not in US -92.262710013 26.8295478085
3km_pbl1_WSPD10MAX_20080212-1200_21_22_253
object not in US -91.9028046974 26.9432293183
object not in US -91.9033183942 26.9701494092
3km_pbl1_WSPD10MAX_20080212-1200_21_21_254
object not in US -92.331832407 27.2053241314
3km_pbl1_WSPD10MAX_20080212-1200_21_21_255
object not in US -88.0266819402 27.4539117011
3km_pbl1_WSPD10MAX_20080212-1200_21_22_256
object not in US -87.2939132798 27.6020009338
object not in US -87.1131274414 27.5440951452
3km_pbl1_WSPD10MAX_20080212-1200_21_21_257
object not in US -90.8814331796 27.5740355452
3km_pbl1_WSPD10MAX_20080212-1200_21_21_258
object not in US -91.9146903109 27.5625908794
3km_pbl1_WSPD10MAX_20080212-1200_21_22_259
object not in US -86.518132449 28.0413145263
object not in US -86.4895254861 27.9865942772
3km_pbl1_WSPD10MAX_20080212-1200_21_21_260
object not in US -90.4278505686 28.115357471
3km_pbl1_WSPD10MAX_20080212-1200_21_21_261
object not in US -91.9556986842 28.1010032673
3km_pbl1_WSPD10MAX_20080212-1200_21_23_262
object not in US -91.1031698451 28.3808684562
object not in US -90.9193173051 28.3823303156
object not in US -90.8531256857 27.8167391913
3km_pbl1_WSPD10MAX_20080212-1200_21_21_263
object not in US -90.3373667545 28.4660884518
3km_pbl1_WSPD10MAX_20080212-1200_21_22_264
object not in US -85.7059823199 28.4480244629
object not in US -85.5491252269 28.5235823983
3km_pbl1_WSPD10MAX_20080212-1200_21_22_265
object not in US -79.6958503238 28.318753722
object not in US -80.108627342 28.1892489647
3km_pbl1_WSPD10MAX_20080212-1200_21_21_266
object not in US -89.692206069 28.8167075931
3km_pbl1_WSPD10MAX_20080212-1200_21_21_267
object not in US -88.6026963654 29.6726596563
3km_pbl1_WSPD10MAX_20080212-1200_21_22_268
object not in US -78.4571225877 31.7918893254
object not in US -78.7888281613 31.6850694667
3km_pbl1_WSPD10MAX_20080212-1200_21_22_269
object not in US -77.6838361168 33.8105740503
object not in US -77.5260550099 34.0128880804
3km_pbl1_WSPD10MAX_20080212-1200_22_23_270
object not in US -90.980890442 25.3400288913
object not in US -90.7122482751 25.1807012526
3km_pbl1_WSPD10MAX_20080212-1200_22_23_271
object not in US -90.1190886235 25.5050612709
object not in US -90.2978002036 25.5316322258
3km_pbl1_WSPD10MAX_20080212-1200_22_23_272
object not in US -89.2509235982 26.1480810606
object not in US -88.7412488637 26.1708745738
3km_pbl1_WSPD10MAX_20080212-1200_22_22_273
object not in US -83.4384875452 26.0851692308
3km_pbl1_WSPD10MAX_20080212-1200_22_22_274
object not in US -90.6315946825 26.5253830841
3km_pbl1_WSPD10MAX_20080212-1200_22_23_275
object not in US -91.4177000706 26.8150269605
object not in US -91.3279332639 26.8698545083
3km_pbl1_WSPD10MAX_20080212-1200_22_22_276
object not in US -91.449814583 26.9492792149
3km_pbl1_WSPD10MAX_20080212-1200_22_22_277
object not in US -90.4835566342 27.0105704595
3km_pbl1_WSPD10MAX_20080212-1200_22_22_278
object not in US -88.6087103316 27.0845811601
3km_pbl1_WSPD10MAX_20080212-1200_22_22_279
object not in US -88.8796875651 27.1950125124
3km_pbl1_WSPD10MAX_20080212-1200_22_22_280
object not in US -87.0906522065 27.2741163086
3km_pbl1_WSPD10MAX_20080212-1200_22_22_281
object not in US -88.7562263555 27.3824006764
3km_pbl1_WSPD10MAX_20080212-1200_22_22_282
object not in US -83.7284785998 27.2053213912
3km_pbl1_WSPD10MAX_20080212-1200_22_23_283
object not in US -86.4724878527 27.608673069
object not in US -86.2668735656 27.4140756062
3km_pbl1_WSPD10MAX_20080212-1200_22_22_284
3km_pbl1_WSPD10MAX_20080212-1200_22_23_285
object not in US -79.565982019 27.2255823981
object not in US -79.5358268483 27.2230710932
3km_pbl1_WSPD10MAX_20080212-1200_22_23_286
object not in US -85.9211350074 27.6999049712
object not in US -85.7444571842 27.5592642189
3km_pbl1_WSPD10MAX_20080212-1200_22_22_287
object not in US -85.5148532161 27.9288536953
3km_pbl1_WSPD10MAX_20080212-1200_22_24_288
object not in US -80.060647234 27.752565632
object not in US -80.0411445359 27.6428197836
object not in US -80.0243898991 27.5062491942
3km_pbl1_WSPD10MAX_20080212-1200_22_22_289
object not in US -85.1917594464 28.2947004929
3km_pbl1_WSPD10MAX_20080212-1200_22_22_290
object not in US -89.4482505712 28.4114167375
3km_pbl1_WSPD10MAX_20080212-1200_22_22_291
object not in US -91.5692184524 28.7804669919
3km_pbl1_WSPD10MAX_20080212-1200_22_22_292
object not in US -78.6656573631 28.4475390188
3km_pbl1_WSPD10MAX_20080212-1200_22_22_293
object not in US -79.3648378873 28.5351514824
3km_pbl1_WSPD10MAX_20080212-1200_22_24_294
object not in US -79.169688727 28.6270170795
object not in US -78.885432898 28.6837644684
object not in US -78.7723377225 28.5925226194
3km_pbl1_WSPD10MAX_20080212-1200_22_22_295
object not in US -88.3884962297 29.4812935275
3km_pbl1_WSPD10MAX_20080212-1200_22_22_296
object not in US -79.6228418876 29.8838791747
3km_pbl1_WSPD10MAX_20080212-1200_22_24_297
object not in US -78.907557383 29.8512942498
object not in US -78.6967675616 30.0498883578
object not in US -78.8920179035 29.7143872441
3km_pbl1_WSPD10MAX_20080212-1200_22_24_298
object not in US -78.624005031 30.6673122875
object not in US -78.2248104662 31.0929338804
object not in US -78.2364593014 30.7412503344
3km_pbl1_WSPD10MAX_20080212-1200_22_22_299
object not in US -79.2859664787 32.0789774396
3km_pbl1_WSPD10MAX_20080212-1200_22_22_300
object not in US -78.6621245892 31.9453557503
3km_pbl1_WSPD10MAX_20080212-1200_22_22_301
object not in US -77.9410257475 32.5865760705
3km_pbl1_WSPD10MAX_20080212-1200_22_22_302
object not in US -78.0899666693 32.6814376709
3km_pbl1_WSPD10MAX_20080212-1200_23_24_303
object not in US -89.7625180729 25.2093819744
object not in US -90.0 25.2364685079
3km_pbl1_WSPD10MAX_20080212-1200_23_24_304
object not in US -88.8677925238 25.580569339
object not in US -89.285857713 25.4493214439
3km_pbl1_WSPD10MAX_20080212-1200_23_23_305
object not in US -89.2547153432 25.6372488136
3km_pbl1_WSPD10MAX_20080212-1200_23_24_306
object not in US -83.0107412191 26.1966174256
object not in US -82.8573353728 26.241820874
3km_pbl1_WSPD10MAX_20080212-1200_23_23_307
object not in US -82.3901693067 26.4568456126
3km_pbl1_WSPD10MAX_20080212-1200_23_23_308
object not in US -88.5540881827 26.6801068971
3km_pbl1_WSPD10MAX_20080212-1200_23_23_309
object not in US -91.1203124349 27.1950125124
3km_pbl1_WSPD10MAX_20080212-1200_23_24_310
object not in US -86.1549479821 27.1681621562
object not in US -85.8267233427 27.0499058646
3km_pbl1_WSPD10MAX_20080212-1200_23_23_311
object not in US -88.4856963381 27.2178205651
3km_pbl1_WSPD10MAX_20080212-1200_23_23_312
object not in US -85.8479637619 27.2661987482
3km_pbl1_WSPD10MAX_20080212-1200_23_24_313
3km_pbl1_WSPD10MAX_20080212-1200_23_24_314
object not in US -90.8197562823 27.466687524
object not in US -90.8501164786 27.4664865174
3km_pbl1_WSPD10MAX_20080212-1200_23_23_315
object not in US -91.184390742 27.4907305934
3km_pbl1_WSPD10MAX_20080212-1200_23_23_316
object not in US -88.4204295516 27.5133430233
3km_pbl1_WSPD10MAX_20080212-1200_23_24_317
object not in US -85.1015678229 27.6438072071
object not in US -84.7963290606 27.6585650417
3km_pbl1_WSPD10MAX_20080212-1200_23_23_318
object not in US -90.7654741294 28.3024695631
3km_pbl1_WSPD10MAX_20080212-1200_23_23_319
object not in US -84.9526001689 28.1774822988
3km_pbl1_WSPD10MAX_20080212-1200_23_24_320
object not in US -79.5653325125 28.3893061924
object not in US -79.4519475263 28.2986875497
3km_pbl1_WSPD10MAX_20080212-1200_23_23_321
object not in US -90.3386663015 28.8435976243
3km_pbl1_WSPD10MAX_20080212-1200_23_23_322
object not in US -88.1127669779 29.3156626743
3km_pbl1_WSPD10MAX_20080212-1200_23_23_323
object not in US -87.4223576886 29.6814260429
3km_pbl1_WSPD10MAX_20080212-1200_23_23_324
object not in US -78.8271599149 29.4647443444
3km_pbl1_WSPD10MAX_20080212-1200_23_23_325
object not in US -77.9470554952 32.2886955778
3km_pbl1_WSPD10MAX_20080212-1200_23_23_326
object not in US -78.6162595677 32.5921517474
3km_pbl1_WSPD10MAX_20080212-1200_23_24_327
object not in US -77.8017218327 33.6586924583
object not in US -77.6445253115 34.1051415309
3km_pbl1_WSPD10MAX_20080212-1200_24_24_328
object not in US -89.7633968367 24.8334919134
3km_pbl1_WSPD10MAX_20080212-1200_24_24_329
object not in US -91.1832862366 24.8548831856
3km_pbl1_WSPD10MAX_20080212-1200_24_24_330
object not in US -90.3549979129 24.8600492342
3km_pbl1_WSPD10MAX_20080212-1200_24_24_331
object not in US -88.8116874692 25.2844838591
3km_pbl1_WSPD10MAX_20080212-1200_24_24_332
object not in US -88.3080676826 25.1980358562
3km_pbl1_WSPD10MAX_20080212-1200_24_24_333
object not in US -88.3355387799 25.33272558
3km_pbl1_WSPD10MAX_20080212-1200_24_24_334
object not in US -88.2109661488 25.6534714747
3km_pbl1_WSPD10MAX_20080212-1200_24_24_335
object not in US -87.8722778915 26.1590716392
3km_pbl1_WSPD10MAX_20080212-1200_24_24_336
object not in US -82.3146548203 26.2634445532
3km_pbl1_WSPD10MAX_20080212-1200_24_24_337
object not in US -87.6819673054 26.6131593759
3km_pbl1_WSPD10MAX_20080212-1200_24_24_338
object not in US -81.8892773177 26.3173872872
3km_pbl1_WSPD10MAX_20080212-1200_24_24_339
object not in US -86.8619242381 26.837621773
3km_pbl1_WSPD10MAX_20080212-1200_24_24_340
object not in US -84.7555093865 27.2793189006
3km_pbl1_WSPD10MAX_20080212-1200_24_24_341
object not in US -78.5873483901 28.0611414852
3km_pbl1_WSPD10MAX_20080212-1200_24_24_342
object not in US -87.6912322184 28.8231795013
3km_pbl1_WSPD10MAX_20080212-1200_24_24_343
object not in US -79.0965856487 28.729141584
3km_pbl1_WSPD10MAX_20080212-1200_24_24_344
object not in US -78.8395227809 29.0862951322
3km_pbl1_WSPD10MAX_20080212-1200_24_24_345
object not in US -78.3162143112 29.3106478834
3km_pbl1_WSPD10MAX_20080212-1200_24_24_346
object not in US -78.3052404709 30.1777112156
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_01_01_002
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_01_01_003
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_01_01_004
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_03_06_005
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_04_05_006
object not in US -101.258508289 28.8608257343
object not in US -101.227869967 28.8635309373
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_007
object not in US -96.7752414369 24.8086234309
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_008
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_009
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_010
object not in US -80.3781583844 32.0278797644
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_011
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_06_012
object not in US -78.6859539621 32.8149857788
object not in US -78.6279886645 33.0268714959
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_013
object not in US -78.68175897 33.3837361306
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_05_05_014
object not in US -78.6681844403 33.7618553856
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_015
object not in US -89.1903490975 26.2283980246
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_07_016
object not in US -80.4717000137 28.2441391718
object not in US -80.4586693574 28.3784433156
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_017
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_018
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_019
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_020
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_021
object not in US -79.2185819776 32.6696596578
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_06_06_022
object not in US -78.5747530368 33.7268400261
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_09_023
object not in US -89.2228344079 25.9058772425
object not in US -89.0434964195 25.9046275283
object not in US -88.8952322224 25.7958542911
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_024
object not in US -88.9158315925 26.6568451739
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_08_025
object not in US -89.6260185104 30.0304412951
object not in US -89.5322635736 30.0840997158
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_026
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_027
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_028
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_029
object not in US -78.9217245418 32.184371123
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_030
object not in US -79.7260939271 32.7370470346
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_10_031
object not in US -78.513208643 32.9085782302
object not in US -78.4081899175 33.4957686329
object not in US -78.6599835575 33.0296032224
object not in US -78.8519786768 32.774833254
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_032
object not in US -79.1814694251 32.9917549087
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_07_033
object not in US -78.3659796188 33.5733999139
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_07_08_034
object not in US -78.8906260346 33.5367098687
object not in US -78.9804182332 33.3274441708
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_11_035
object not in US -84.5604863546 26.4085763147
object not in US -84.4029605087 26.5363208036
object not in US -84.1247286504 26.6582948059
object not in US -84.4330023545 26.5376626825
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_09_036
object not in US -88.7015439001 26.924010986
object not in US -88.5167816792 27.1643240571
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_037
object not in US -88.1246914463 28.695426491
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_038
object not in US -80.2967524876 28.7721403346
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_039
object not in US -80.2312322592 29.1190777908
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_040
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_041
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_042
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_12_043
object not in US -79.2133922934 32.1543588591
object not in US -79.3173120958 32.6505621435
object not in US -79.2928292534 32.8653214902
object not in US -79.3750125086 32.7093841875
object not in US -79.4267330973 32.821873489
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_044
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_045
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_09_046
object not in US -78.9603689802 32.6754969456
object not in US -78.9158117009 32.7801825384
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_047
object not in US -79.4176422026 32.9024111264
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_08_08_048
object not in US -77.7415421958 34.1140120905
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_049
object not in US -85.4707051421 26.229506542
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_050
object not in US -84.747988186 26.8476952451
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_10_051
object not in US -87.9118341139 28.5842412326
object not in US -87.8179357119 28.6635767603
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_14_052
object not in US -80.1381067002 28.8140960886
object not in US -80.1362500877 29.1388570617
object not in US -80.0077110268 29.1830305471
object not in US -79.8510602446 29.4957241795
object not in US -79.4720413282 29.5464431265
object not in US -79.9209605726 29.1220541714
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_053
object not in US -80.6182645737 29.2834214416
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_054
object not in US -93.9730886533 29.6189266005
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_10_055
object not in US -80.0390432764 29.483381339
object not in US -79.9606522743 29.6397854243
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_056
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_057
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_058
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_059
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_10_060
object not in US -78.8456104621 32.0152809757
object not in US -78.8551016599 31.9347478763
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_061
object not in US -79.292050726 32.0252696165
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_062
object not in US -79.7930670648 32.4172167973
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_063
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_064
object not in US -78.8138564415 32.2837013339
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_09_065
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_10_066
object not in US -78.4203053942 33.6593993668
object not in US -78.2423272818 33.7793842736
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_09_12_067
object not in US -78.7908715726 33.5554780895
object not in US -78.7781205075 33.3918673182
object not in US -78.7974817288 33.2309322731
object not in US -78.6697363712 32.9491258198
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_11_068
object not in US -85.108581721 26.2696746496
object not in US -84.9600888046 26.2368340188
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_069
object not in US -94.5540988826 28.7628158275
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_15_070
object not in US -92.5726450797 29.4926310987
object not in US -93.0348488531 29.4015891289
object not in US -92.6287895384 29.2756301915
object not in US -92.744107483 28.9764292136
object not in US -93.1516797898 29.1828926042
object not in US -93.5173791631 29.0384473258
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_11_071
object not in US -93.379038274 29.5009472843
object not in US -93.406245977 29.3922735442
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_072
object not in US -91.9256182983 29.6928257959
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_073
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_074
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_11_075
object not in US -79.6756595218 30.2674847402
object not in US -79.7043644125 29.9988088957
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_076
object not in US -80.4039738881 30.5131885432
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_077
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_078
object not in US -78.2861294064 32.4006137227
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_079
object not in US -79.7638783224 32.6858040154
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_080
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_10_10_081
object not in US -78.2795304018 32.9694997777
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_15_082
object not in US -83.959745217 26.8930529316
object not in US -83.7135480973 26.9618421333
object not in US -83.4831131783 27.246792248
object not in US -83.221030006 27.5297768937
object not in US -82.873988693 27.6996090885
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_083
object not in US -94.7802672649 28.3497234569
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_084
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_14_085
object not in US -94.3294032818 28.5547550743
object not in US -94.1090316843 28.4271549713
object not in US -93.8248928838 28.2202191929
object not in US -93.5419460226 28.0126836613
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_086
object not in US -91.9485584989 29.2877672872
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_12_087
object not in US -91.5800798898 29.4547043548
object not in US -91.4822207736 29.1321470994
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_088
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_12_089
object not in US -80.5766421367 29.7135287495
object not in US -80.5714134115 29.7672959856
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_090
object not in US -90.1872520323 30.1657561998
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_091
object not in US -79.5902289306 30.4774311482
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_13_092
object not in US -79.3422793416 30.7283184038
object not in US -79.3183428603 30.9432086735
object not in US -79.601064715 30.6680062108
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_11_11_093
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_094
object not in US -83.8874504411 26.5930176547
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_15_095
object not in US -94.5523054681 28.0613269134
object not in US -94.2636464541 27.7477329595
object not in US -93.9789695647 27.4874175422
object not in US -93.6332732838 27.1744603935
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_096
object not in US -91.0179345487 29.0287861417
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_13_097
object not in US -90.4946453253 29.2476616112
object not in US -90.3083877277 29.005492004
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_098
object not in US -89.9380834041 29.3834749778
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_099
object not in US -89.2545368058 29.7050619437
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_100
object not in US -89.5948536482 30.0303473602
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_101
object not in US -89.0648040947 30.0545813257
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_16_102
object not in US -88.8131207438 30.2414010581
object not in US -88.4120063148 29.9402745851
object not in US -87.9518804492 29.6099870463
object not in US -87.5546835589 29.3602034527
object not in US -87.191157552 29.0829419984
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_103
object not in US -87.9950280754 30.5281817122
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_14_104
object not in US -78.675235611 33.4373716589
object not in US -78.5557531244 33.6168546161
object not in US -78.5136109889 33.6945241038
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_105
object not in US -78.0512333665 33.4914432218
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_12_12_106
object not in US -77.7450985409 34.0872349392
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_107
object not in US -96.4996455071 26.5195756064
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_16_108
object not in US -83.3287480535 26.8340806857
object not in US -82.8880750035 27.0796099762
object not in US -83.181858298 26.7722321618
object not in US -82.9053212576 26.8377818105
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_14_109
object not in US -96.9534884648 26.980573691
object not in US -96.7442005337 27.0189775179
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_110
object not in US -95.1178596859 27.1766923821
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_111
object not in US -94.6793531018 27.5172905419
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_112
object not in US -91.260864407 28.7299477463
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_15_113
object not in US -92.0973743048 29.0156456836
object not in US -91.8789217585 28.8841715877
object not in US -91.7538037458 28.7780645188
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_114
object not in US -80.2209203431 28.6039253529
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_115
object not in US -89.9382542356 29.1137348143
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_116
object not in US -93.3996623239 29.2035383278
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_117
object not in US -89.1014827888 29.4612773196
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_118
object not in US -80.1471127082 29.0313880408
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_119
object not in US -93.2851815423 29.4763920292
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_14_120
object not in US -88.8187259295 29.7827451901
object not in US -88.5759950292 29.3755940249
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_16_121
object not in US -79.8482299998 29.8205791556
object not in US -80.092559657 29.5687781278
object not in US -80.0719950844 29.1609598014
object not in US -80.0280108067 29.5908630014
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_122
object not in US -79.8171432985 30.1161460346
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_123
object not in US -80.2832715882 30.1520872403
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_124
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_13_125
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_14_126
object not in US -79.1282055826 31.2256782015
object not in US -79.0975096153 31.4942277181
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_13_17_127
object not in US -78.7541003367 31.7092114117
object not in US -78.6369410361 31.8889436858
object not in US -78.858261816 31.907902849
object not in US -78.7981943642 31.8756800059
object not in US -78.8614201865 31.8810575013
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_128
object not in US -96.4471078601 26.1719699376
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_129
object not in US -96.3958263436 26.3093332239
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_130
object not in US -95.7695229554 26.393758787
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_15_131
object not in US -95.355243321 26.5199744786
object not in US -95.219651517 26.2294375167
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_132
object not in US -83.5852590135 26.6048309838
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_133
object not in US -94.9545849546 26.940651601
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_16_134
object not in US -96.4320333517 26.8735580165
object not in US -95.9244700722 26.9794624919
object not in US -95.6846138055 27.0175203772
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_135
object not in US -94.4197367664 27.1492700935
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_136
object not in US -96.4866437401 27.2483562948
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_137
object not in US -93.6804525968 27.6312637396
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_138
object not in US -93.3032274715 28.1809274086
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_15_139
object not in US -83.2700055449 28.1533326186
object not in US -82.9514152019 28.3250887683
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_140
object not in US -90.3372743112 28.4391271532
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_141
object not in US -80.1140243911 28.1355482434
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_142
object not in US -89.6618918711 28.6817967435
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_143
object not in US -93.100255918 28.5366574174
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_144
object not in US -94.2774388661 28.7723911453
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_16_145
object not in US -89.106922983 28.8678939654
object not in US -88.8035955396 28.4878759494
object not in US -88.656485662 28.0280983184
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_17_146
object not in US -87.5071932617 30.0069379334
object not in US -87.111928869 29.6748376527
object not in US -86.7821145857 29.3161729831
object not in US -86.5732356409 29.094874911
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_17_147
object not in US -79.4825415069 29.7369906615
object not in US -79.7524838875 29.8400795007
object not in US -79.7664137986 30.0037521084
object not in US -79.8312971212 29.9817956637
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_148
object not in US -81.0151134441 29.6907866388
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_16_149
object not in US -87.0021731893 30.2121380943
object not in US -86.7597210447 29.9903508367
object not in US -86.4572303985 29.7394632802
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_150
object not in US -86.436453655 30.3057848978
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_151
object not in US -87.0580321977 30.4293576393
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_15_152
object not in US -79.7292888388 30.3530502158
object not in US -79.7942262481 30.6291526008
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_153
object not in US -80.4850108766 30.3295967676
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_154
object not in US -80.4191091112 30.6768061233
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_155
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_17_156
object not in US -81.0230542321 31.288452797
object not in US -80.9055706275 31.5239732703
object not in US -80.887546584 31.7122163677
object not in US -81.0456172842 31.7230952089
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_157
object not in US -79.7483221801 31.059090998
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_158
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_15_159
object not in US -78.0760222996 31.2693502135
object not in US -77.9649189983 31.3948416772
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_160
object not in US -78.019699661 31.9697332695
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_15_161
object not in US -79.505656473 32.692700378
object not in US -79.5225807558 32.8294720553
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_162
object not in US -79.0210019748 32.7076339318
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_15_163
object not in US -79.0156882279 33.3032629941
object not in US -78.8423708207 33.3972495834
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_17_164
object not in US -78.0328979357 33.3813630019
object not in US -78.0156436553 33.5153657933
object not in US -78.0225513118 33.4617667105
object not in US -77.8374211652 33.6348295885
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_14_14_165
object not in US -77.8268775672 33.7152007605
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_166
object not in US -95.5671216998 25.9989763501
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_167
object not in US -95.6374293383 26.1843083146
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_168
object not in US -94.8718933974 26.4858810581
object not in US -94.6454063911 26.1444712477
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_169
object not in US -83.3327665366 26.3220649698
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_17_170
object not in US -94.224572242 26.8326494199
object not in US -94.3588511139 26.4509732592
object not in US -93.8905602591 26.008864145
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_171
object not in US -96.2093758791 26.6960669001
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_172
object not in US -82.7253900088 27.2322061758
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_173
object not in US -96.3302750234 27.1754017008
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_174
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_175
object not in US -93.4923784211 27.4748805666
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_176
object not in US -86.5977471459 27.5042966026
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_18_177
object not in US -92.3128228304 27.6906656871
object not in US -91.8868663929 27.6977442808
object not in US -92.2501400854 27.6109504246
object not in US -92.399523564 27.5004107043
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_178
object not in US -93.0206695087 27.9452975959
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_179
object not in US -89.1737422654 28.2481716197
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_180
object not in US -90.0305943265 28.22389808
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_181
object not in US -92.4198832268 28.3356625301
object not in US -92.2336999511 28.2312166709
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_182
object not in US -92.8163938502 28.2735608833
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_21_183
object not in US -93.3140946799 28.5042968892
object not in US -93.2309462117 28.7761954142
object not in US -93.0712604002 28.5913073761
object not in US -92.9177688097 28.5949149316
object not in US -92.3683623885 28.7411682571
object not in US -92.4225354701 28.4434780859
object not in US -92.5451542105 28.4410843725
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_184
object not in US -94.7986535277 28.7268594078
object not in US -94.5898814156 28.869495487
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_185
object not in US -92.3664112514 28.6602886585
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_186
object not in US -94.1203180302 28.6966070115
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_17_187
object not in US -88.3986958382 28.8609805004
object not in US -88.1901436589 28.4806324014
object not in US -87.7974929271 28.2047995609
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_188
object not in US -93.1207970683 29.1836485112
object not in US -93.1499406152 29.1289683151
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_189
object not in US -86.1957013042 29.2731323284
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_190
object not in US -80.6107748413 29.0392591153
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_191
object not in US -80.5718313649 29.4424380277
object not in US -80.5199952509 29.655211273
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_192
object not in US -79.009130174 29.5075929694
object not in US -79.0030471861 29.5612874188
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_193
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_194
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_16_195
object not in US -80.2041522583 30.9316334292
object not in US -80.3678585121 31.1876086162
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_196
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_197
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_17_198
object not in US -80.3421838251 31.7544481381
object not in US -80.5083267609 31.6853322764
object not in US -80.5265139898 31.8220324749
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_199
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_20_200
object not in US -78.4570524428 32.5783606931
object not in US -78.5631862695 32.2350860318
object not in US -78.5020229284 32.4738177321
object not in US -78.2225896144 32.3949613969
object not in US -78.2677319797 32.2904884627
object not in US -78.731781977 31.8971145632
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_201
object not in US -77.7044925366 32.9175130896
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_15_202
object not in US -79.0691681906 32.8470986975
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_15_19_203
object not in US -78.5828933248 33.1314213813
object not in US -78.2862472485 32.9158654306
object not in US -78.1380880895 33.0654114057
object not in US -77.9825475287 33.2683847147
object not in US -78.0087280571 33.5689621076
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_17_204
object not in US -93.8513460888 26.5484248534
object not in US -93.9051768317 26.3852097759
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_17_205
object not in US -93.4405595362 26.8566182582
object not in US -93.5084489267 27.0702360844
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_17_206
object not in US -95.2505965094 26.8208047496
object not in US -94.8325896055 26.9184624351
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_207
object not in US -93.8045095562 26.8999763061
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_208
object not in US -94.4427693725 26.9867664379
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_209
object not in US -94.1441827564 27.0778150718
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_210
object not in US -96.0647844692 27.2963841239
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_211
object not in US -93.0026610796 27.3527573309
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_19_212
object not in US -95.4940662184 27.4035046738
object not in US -95.0710912889 27.4482097537
object not in US -94.7426258455 27.5688565405
object not in US -94.6578515813 27.7068481528
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_213
object not in US -94.8271645342 27.4308266143
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_214
object not in US -86.4126845751 27.5800317639
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_215
object not in US -92.6460175686 27.6302244798
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_216
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_217
object not in US -89.3596272032 27.8988423258
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_218
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_219
object not in US -93.7881042674 28.059499182
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_17_220
object not in US -91.5934114705 28.3756709223
object not in US -91.5951586711 28.4835038826
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_221
object not in US -93.9009707504 28.5955804009
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_222
object not in US -92.614340688 28.736365414
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_17_223
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_224
object not in US -78.7510296323 28.5093369853
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_225
object not in US -78.8058456396 28.8393952667
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_226
object not in US -79.8903171681 29.4175647319
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_227
object not in US -79.7921535758 29.4639579672
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_228
object not in US -86.2584388103 30.0577898845
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_19_229
object not in US -79.4996473811 30.4430128383
object not in US -79.4508100586 30.601664273
object not in US -79.424182603 30.8434376531
object not in US -79.2538414165 31.2360880606
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_230
object not in US -77.914181051 30.7930407591
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_231
object not in US -80.0508852104 31.1909091684
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_232
object not in US -79.3163189794 31.8104251671
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_233
object not in US -80.0006673071 31.9726580447
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_234
object not in US -78.1945686851 31.8499106108
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_18_235
object not in US -80.0908148352 32.3315496444
object not in US -79.8045356348 32.6076904857
object not in US -79.5864877713 32.8344994143
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_17_236
object not in US -78.4813919805 33.6917587188
object not in US -78.4747315711 33.7453702817
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_16_16_237
object not in US -77.7020638313 34.1646132458
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_238
object not in US -94.2493582814 25.9971296381
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_239
object not in US -93.2967972652 26.1605369239
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_240
object not in US -93.4539574348 26.3715880526
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_241
object not in US -92.8874558485 26.520554709
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_18_242
object not in US -82.5420763296 26.8436534451
object not in US -82.4517671664 26.8382421697
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_243
object not in US -93.8732087987 27.1134065113
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_244
object not in US -92.6317139697 27.091659111
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_245
object not in US -94.331354264 27.2062486375
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_246
object not in US -92.2743594389 27.3410711514
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_247
object not in US -88.5719062995 27.5420912423
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_21_248
object not in US -93.7979004581 27.519956878
object not in US -93.4705037107 27.7180807212
object not in US -93.4410158465 27.7458455249
object not in US -93.0858687401 28.0785379438
object not in US -93.056165122 28.1062214942
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_18_249
object not in US -91.155906163 27.6526526157
object not in US -90.6998334327 27.682947097
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_250
object not in US -88.0496270468 27.8315325088
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_251
object not in US -93.1688296615 27.8068773973
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_252
object not in US -91.6501691691 28.1053460962
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_18_253
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_254
object not in US -91.1316421055 28.1919017484
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_255
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_256
object not in US -91.8163288941 28.8311325374
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_21_257
object not in US -80.198385958 28.5209882317
object not in US -80.3897250373 28.4544206793
object not in US -80.2316313879 28.4964835575
object not in US -80.0373740143 28.5896721635
object not in US -80.2289558214 28.5233433543
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_258
object not in US -84.9178901454 28.8508526259
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_18_259
object not in US -80.3288405461 29.072357141
object not in US -80.3860680998 28.805981895
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_260
object not in US -91.638858946 29.2651201682
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_23_261
object not in US -80.7621695358 29.4021577443
object not in US -80.6361578549 29.4200819494
object not in US -80.0058725847 29.8058357933
object not in US -79.3246369991 30.3202666346
object not in US -78.9828375102 30.5627192911
object not in US -78.513371643 31.0644554683
object not in US -78.0704601089 31.5673414149
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_262
object not in US -86.2172001188 29.516689288
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_263
object not in US -90.1249741775 30.2737613833
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_264
object not in US -79.2761588408 29.9096586741
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_19_265
object not in US -80.3062591579 30.2350674341
object not in US -80.4538629706 30.3273013231
object not in US -80.2397778973 30.5821820584
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_266
object not in US -80.5833375528 30.6075856423
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_21_267
object not in US -78.8143307282 30.9279444142
object not in US -78.7356138046 31.3279580315
object not in US -78.6754643876 31.5668424112
object not in US -78.9398034745 31.2098372727
object not in US -78.9870960276 31.3494103412
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_268
object not in US -78.7794993837 31.4944484205
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_18_269
object not in US -79.210324584 32.1812097392
object not in US -79.1376117746 32.256546319
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_17_17_270
object not in US -77.9762837762 32.5626579998
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_271
object not in US -93.1104043256 25.9501011017
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_272
object not in US -92.6035656534 26.0155343513
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_273
object not in US -84.3716128859 26.0231444947
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_274
object not in US -92.0121877369 26.3762314119
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_275
object not in US -91.8655580099 26.566890475
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_19_276
object not in US -91.9298768144 26.7812658739
object not in US -92.2000144965 26.7229696451
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_277
object not in US -88.3641259255 27.2432336955
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_278
object not in US -92.9388438684 27.2464887457
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_279
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_280
object not in US -87.9665292749 27.4260134485
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_281
object not in US -95.503015773 27.5649448149
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_19_282
object not in US -87.5932913654 27.7967206673
object not in US -87.2657483349 27.5205461787
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_283
object not in US -94.1249795379 28.0759545084
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_284
object not in US -92.3971345233 28.6597147338
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_285
object not in US -86.0596886152 28.8102307551
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_286
object not in US -84.7641082167 28.8446379355
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_19_287
object not in US -79.6977120367 28.8875595014
object not in US -79.6285107366 28.6652791549
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_288
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_289
object not in US -90.0624173959 30.1658766082
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_290
object not in US -79.0385437975 30.3505381776
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_291
object not in US -80.0021240174 31.0517236861
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_292
object not in US -80.4091088719 31.4073053218
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_293
object not in US -79.7994150969 31.4695336043
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_294
object not in US -80.8720405708 31.8735578237
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_295
object not in US -79.4337662482 31.901230142
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_296
object not in US -78.4309144822 32.0065704384
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_19_297
object not in US -78.5178875477 33.3968445409
object not in US -78.5169291422 33.6677165008
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_18_298
object not in US -78.961352449 33.488393187
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_18_24_299
object not in US -77.6157945653 33.5873889437
object not in US -77.5262958186 33.7688982683
object not in US -77.6086676929 33.3968894544
object not in US -77.6797849137 33.1051178103
object not in US -77.7080141421 32.890710119
object not in US -77.6759444451 32.6435455582
object not in US -77.7497755452 32.3247852698
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_300
object not in US -93.2347946865 25.1672930289
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_301
object not in US -91.9998437696 25.7577871741
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_302
object not in US -92.8032191685 25.6615926186
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_303
object not in US -84.6861585947 25.7408906289
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_304
object not in US -84.3522938648 25.8338132612
object not in US -84.4432741685 25.8109993479
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_305
object not in US -84.1026561367 26.0106853947
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_306
object not in US -91.3218725266 26.4123527847
object not in US -90.4201621432 26.3110212646
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_307
object not in US -83.5055879973 26.4389867281
object not in US -83.4138268681 26.4611326021
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_308
object not in US -91.2668945697 26.8166415415
object not in US -90.6629171879 26.7136158593
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_309
object not in US -87.6706888377 27.0976280475
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_310
object not in US -89.8788811424 27.1999425281
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_311
object not in US -90.606409082 27.333207188
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_312
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_313
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_314
object not in US -91.0932898016 27.4915531168
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_315
object not in US -86.9563014156 27.7021259932
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_316
object not in US -92.8330454281 27.7878885334
object not in US -92.8338167456 27.8148272065
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_317
object not in US -86.7093612313 27.8037666321
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_318
object not in US -92.813315797 28.1657679578
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_319
object not in US -92.3541283066 28.148154975
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_320
object not in US -91.8982233432 28.2905974257
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_321
object not in US -79.9014817009 29.3101025605
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_23_322
object not in US -79.4778647851 29.4927272792
object not in US -79.333806531 29.6705245439
object not in US -79.8426706458 29.2783619984
object not in US -79.136346413 29.7623928499
object not in US -78.7587958839 30.0553153087
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_323
object not in US -88.8144443911 30.1334777597
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_324
object not in US -80.0091746182 31.8920449442
object not in US -79.633990555 32.4048362419
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_325
object not in US -79.3132914469 31.8372818113
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_19_326
object not in US -78.3130381042 32.7013063878
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_20_327
object not in US -77.6477940784 33.1021513686
object not in US -77.7823564494 32.8161904024
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_19_24_328
object not in US -77.662542297 34.2152001895
object not in US -77.5762531734 34.1259615362
object not in US -77.4937561668 34.0098871127
object not in US -77.5549139926 33.7986725835
object not in US -77.6086194579 33.8849801668
object not in US -77.6085951499 34.1289424078
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_329
object not in US -93.4878496589 24.7575182625
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_21_330
object not in US -92.8750254093 25.0418733331
object not in US -92.3379735607 24.8920909749
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_21_331
object not in US -91.6950796802 25.386045303
object not in US -91.6312767366 25.1182754276
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_332
object not in US -91.1924279444 25.6337582299
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_24_333
object not in US -90.4482498326 25.8806104382
object not in US -89.7611238924 25.8005350011
object not in US -88.986965363 25.5815997612
object not in US -88.2756449864 25.3587728811
object not in US -87.6589310369 25.0262941779
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_22_334
object not in US -83.6742738531 26.1512540032
object not in US -83.1548494116 26.2854718862
object not in US -82.6340444513 26.417546036
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_335
object not in US -91.9810980809 26.3229125397
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_336
object not in US -88.4348745938 26.5979245358
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_337
object not in US -90.3621793557 26.8763605431
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_338
object not in US -89.3352928429 26.9828166845
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_22_339
object not in US -86.8794634695 27.2421139486
object not in US -86.4028210144 27.0138456268
object not in US -86.079040238 26.788642134
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_22_340
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_21_341
object not in US -86.2304133478 27.5747186824
object not in US -86.137187161 27.6258158514
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_342
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_343
object not in US -92.3178651297 27.9061973438
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_21_344
object not in US -91.9246214253 28.0745207121
object not in US -91.9540979138 28.0201556113
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_345
object not in US -92.0807433657 28.2338149975
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_346
object not in US -91.962665767 28.4514021649
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_347
object not in US -80.4594519919 28.0538429353
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_22_348
object not in US -91.596471588 28.5643839319
object not in US -91.5942845921 28.4295863679
object not in US -91.5632010172 28.4030087025
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_349
object not in US -80.751398135 28.5353866642
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_350
object not in US -93.1216588567 29.2106114013
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_351
object not in US -80.2193423281 28.928647721
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_352
object not in US -78.9131607274 28.9842967232
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_353
object not in US -89.4111460383 29.4900463708
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_23_354
object not in US -78.0059042589 30.313043469
object not in US -77.9521627169 30.7422907853
object not in US -78.0536358609 30.1817825572
object not in US -78.0246558183 30.6675872793
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_23_355
object not in US -80.023515183 30.2406286837
object not in US -79.4956016933 30.7679208603
object not in US -79.2598901146 31.1823702098
object not in US -78.9306917081 31.5615590923
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_356
object not in US -79.5287901924 31.0416254709
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_20_357
object not in US -80.2386994472 32.4508658321
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_20_23_358
object not in US -78.7527519011 33.0645791866
object not in US -78.5598919398 33.3191543752
object not in US -78.7265152377 33.5500718181
object not in US -78.6621663856 33.5446346776
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_359
object not in US -93.2784682089 24.6827281464
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_360
object not in US -90.8021273735 25.2875896222
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_361
object not in US -90.0 25.451379199
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_23_362
object not in US -83.9975795649 25.763334383
object not in US -83.6978875959 25.7754028743
object not in US -83.6714581752 25.7202105217
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_24_363
object not in US -89.5199441385 26.2839031892
object not in US -88.8317786394 26.1179602812
object not in US -87.9654303682 25.9992373507
object not in US -87.4033776094 25.746745774
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_364
object not in US -83.5999454335 25.905033675
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_365
object not in US -91.2631491225 26.5205986479
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_366
object not in US -89.097003747 26.6044541837
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_22_367
object not in US -91.9309174146 26.8350964609
object not in US -91.9912460384 26.8341529116
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_368
object not in US -82.7044089225 26.6913627605
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_369
object not in US -86.8576885986 26.9721805947
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_23_370
object not in US -85.7851248751 27.3180154754
object not in US -85.6884061804 27.4495220709
object not in US -85.4736339084 27.4959127942
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_371
object not in US -85.4141891781 27.4668028246
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_372
object not in US -90.5792282091 27.8721871285
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_373
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_22_374
object not in US -80.0477019611 28.1844748473
object not in US -79.5844517849 28.4991917847
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_375
object not in US -91.2887810376 28.5139384024
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_22_376
object not in US -90.7079183817 28.8151164372
object not in US -90.82988908 28.6795449737
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_377
object not in US -89.4450581787 28.9776893059
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_378
object not in US -79.2991198415 28.8547042546
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_379
object not in US -88.5149105567 29.3209467662
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_380
object not in US -78.33088028 29.4476021218
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_381
object not in US -88.1980928297 29.7215984322
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_382
object not in US -78.9541405955 29.9908676136
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_383
object not in US -79.8339243944 30.8490355289
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_384
object not in US -78.6530241302 31.7547398089
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_22_385
object not in US -78.145546484 32.4965652803
object not in US -78.1306760902 32.3596037567
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_386
object not in US -78.9156152745 32.5091396208
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_21_21_387
object not in US -79.0377724358 33.1154510243
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_388
object not in US -91.4191698746 24.7987093006
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_389
object not in US -90.1184582627 24.967880978
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_390
object not in US -89.5845181377 25.1820546007
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_391
object not in US -83.3928404284 25.8672601314
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_392
object not in US -83.2328817158 26.0202738882
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_393
object not in US -88.5255560975 26.5721116074
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_394
object not in US -91.5990908552 26.8397671767
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_395
object not in US -90.9348550279 26.7926368244
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_396
object not in US -85.3459085579 26.9791073637
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_397
object not in US -85.8222090795 27.1575446702
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_398
object not in US -84.8985848294 27.446985698
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_24_399
object not in US -90.3649354795 27.6304703368
object not in US -90.0607072957 27.4423987483
object not in US -89.8487651606 27.0921910232
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_24_400
object not in US -79.8069877335 27.8405514341
object not in US -79.6107927822 27.9598799357
object not in US -79.4227744155 27.9984187226
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_401
object not in US -91.5986645918 28.6991936988
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_402
object not in US -78.216177426 28.5963474203
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_403
object not in US -89.0761286 28.8676750125
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_404
object not in US -91.0162536907 28.8669736247
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_405
object not in US -79.3255160791 28.6131124596
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_23_406
object not in US -79.7255596348 28.9168909621
object not in US -79.5655549954 29.2560557178
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_407
object not in US -79.0965856487 28.729141584
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_408
object not in US -80.2551516448 29.4999877769
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_22_409
object not in US -78.4549722208 31.5475751453
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_22_23_410
object not in US -78.252519411 33.6989857358
object not in US -78.1456124849 33.7708706331
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_411
object not in US -91.0042108271 24.6954379327
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_412
object not in US -90.0886325937 24.7263348571
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_413
object not in US -88.3026650253 25.5203726751
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_24_414
object not in US -86.2489339541 26.2822611142
object not in US -86.224009467 26.1469384489
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_415
object not in US -85.8591623954 26.26993122
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_416
object not in US -87.6875656865 26.3710326291
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_417
object not in US -85.698901539 26.5068315399
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_418
object not in US -82.6797359065 26.2045547428
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_419
object not in US -87.804124892 26.5346122036
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_420
object not in US -82.2186274058 26.3383845659
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_24_421
object not in US -85.4536525699 26.6058823324
object not in US -84.9233296845 26.3699912804
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_422
object not in US -87.5255025453 26.8524735207
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_423
object not in US -84.6245379491 26.8963653852
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_424
object not in US -85.5826521068 27.0954540684
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_24_425
object not in US -84.3210390476 27.4492469241
object not in US -84.0737125702 27.5187850517
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_426
object not in US -79.9638877194 27.5014376702
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_427
object not in US -88.8365031062 28.2994488269
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_428
object not in US -79.1048432716 28.3776585136
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_429
object not in US -78.808705451 29.3546875035
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_24_430
object not in US -79.6905398388 29.8351298402
object not in US -79.2965068088 30.2908330361
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_24_431
object not in US -77.86225486 32.1995115166
object not in US -78.2194789915 31.9064075096
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_23_23_432
object not in US -77.6086916218 33.15277009
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_433
object not in US -89.5275450299 24.6717920483
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_434
object not in US -87.0860883894 25.3633618548
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_435
object not in US -85.4731307925 26.1757537814
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_436
object not in US -87.3573330791 26.3644804316
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_437
object not in US -86.8754018997 26.4071802309
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_438
object not in US -82.009025 26.3251231165
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_439
object not in US -89.5143446361 27.4414780238
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_440
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_441
object not in US -89.0260657536 27.7080773814
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_442
object not in US -88.6255792469 28.0547219064
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_443
object not in US -78.733777872 27.5867483672
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_444
object not in US -78.5396618873 28.7343802115
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_445
object not in US -78.2886802359 29.2810057409
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_446
object not in US -79.3426649093 29.5899568176
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_447
object not in US -78.4314790541 30.4332452133
1km_on_3km_pbl1_WSPD10MAX_20080212-1200_24_24_448
object not in US -79.0118771068 31.134588136
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2008021212_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20080216-1200_01_01_000
object not in US -98.6868879401 24.6346553861
3km_pbl1_WSPD10MAX_20080216-1200_05_08_001
object not in US -100.12999206 24.8473750289
object not in US -100.100533069 24.8497981383
object not in US -100.103200249 24.8765308363
object not in US -100.103200249 24.8765308363
3km_pbl1_WSPD10MAX_20080216-1200_06_07_002
object not in US -100.329064498 25.3431887136
object not in US -100.329064498 25.3431887136
3km_pbl1_WSPD10MAX_20080216-1200_12_12_003
3km_pbl1_WSPD10MAX_20080216-1200_13_13_004
3km_pbl1_WSPD10MAX_20080216-1200_13_13_005
3km_pbl1_WSPD10MAX_20080216-1200_13_13_006
3km_pbl1_WSPD10MAX_20080216-1200_14_14_007
3km_pbl1_WSPD10MAX_20080216-1200_14_15_008
3km_pbl1_WSPD10MAX_20080216-1200_15_15_009
3km_pbl1_WSPD10MAX_20080216-1200_16_16_010
object not in US -96.7061891921 27.8035951324
3km_pbl1_WSPD10MAX_20080216-1200_16_16_011
3km_pbl1_WSPD10MAX_20080216-1200_16_16_012
3km_pbl1_WSPD10MAX_20080216-1200_17_18_013
object not in US -97.4302697654 24.4481573555
object not in US -97.3714705166 24.4517027768
3km_pbl1_WSPD10MAX_20080216-1200_18_19_014
object not in US -94.4630398207 29.4678677354
object not in US -94.1855273058 29.5042048766
3km_pbl1_WSPD10MAX_20080216-1200_18_18_015
object not in US -94.7429686481 29.4848369627
3km_pbl1_WSPD10MAX_20080216-1200_19_19_016
object not in US -93.6908708686 29.546353805
3km_pbl1_WSPD10MAX_20080216-1200_19_24_017
3km_pbl1_WSPD10MAX_20080216-1200_19_24_018
3km_pbl1_WSPD10MAX_20080216-1200_20_20_019
object not in US -93.5698610396 29.6307453137
3km_pbl1_WSPD10MAX_20080216-1200_20_24_020
3km_pbl1_WSPD10MAX_20080216-1200_21_24_021
3km_pbl1_WSPD10MAX_20080216-1200_21_21_022
3km_pbl1_WSPD10MAX_20080216-1200_22_22_023
3km_pbl1_WSPD10MAX_20080216-1200_22_23_024
3km_pbl1_WSPD10MAX_20080216-1200_23_23_025
3km_pbl1_WSPD10MAX_20080216-1200_23_24_026
3km_pbl1_WSPD10MAX_20080216-1200_23_23_027
3km_pbl1_WSPD10MAX_20080216-1200_24_24_028
3km_pbl1_WSPD10MAX_20080216-1200_24_24_029
3km_pbl1_WSPD10MAX_20080216-1200_24_24_030
3km_pbl1_WSPD10MAX_20080216-1200_24_24_031
3km_pbl1_WSPD10MAX_20080216-1200_24_24_032
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_01_01_000
object not in US -98.716315999 24.6325709857
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_04_04_001
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_06_06_002
object not in US -100.12999206 24.8473750289
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_08_08_003
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_11_11_004
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_11_11_005
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_12_12_006
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_12_12_007
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_12_12_008
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_12_12_009
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_13_13_010
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_13_13_011
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_13_13_012
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_14_14_013
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_15_15_014
object not in US -96.4335589245 28.303731359
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_15_15_015
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_15_15_016
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_15_15_017
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_16_16_018
object not in US -96.2381866901 28.1244904857
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_16_16_019
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_16_16_020
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_17_17_021
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_17_17_022
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_17_17_023
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_18_19_024
object not in US -94.7850203924 29.0782914061
object not in US -94.3272125441 29.2025619566
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_19_19_025
object not in US -93.7848966749 29.5706132899
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_19_19_026
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_19_24_027
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_19_24_028
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_20_20_029
object not in US -93.1053451351 29.6697806275
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_20_20_030
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_20_20_031
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_20_24_032
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_21_21_033
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_21_24_034
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_21_21_035
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_22_22_036
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_22_24_037
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_23_23_038
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_23_23_039
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_23_23_040
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_23_23_041
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_24_24_042
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_24_24_043
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_24_24_044
1km_on_3km_pbl1_WSPD10MAX_20080216-1200_24_24_045
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2008021612_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20080217-1200_01_01_000
3km_pbl1_WSPD10MAX_20080217-1200_01_01_001
3km_pbl1_WSPD10MAX_20080217-1200_01_09_002
3km_pbl1_WSPD10MAX_20080217-1200_01_01_003
3km_pbl1_WSPD10MAX_20080217-1200_02_06_004
3km_pbl1_WSPD10MAX_20080217-1200_02_05_005
3km_pbl1_WSPD10MAX_20080217-1200_02_03_006
3km_pbl1_WSPD10MAX_20080217-1200_02_03_007
3km_pbl1_WSPD10MAX_20080217-1200_02_04_008
3km_pbl1_WSPD10MAX_20080217-1200_02_02_009
3km_pbl1_WSPD10MAX_20080217-1200_02_06_010
3km_pbl1_WSPD10MAX_20080217-1200_02_10_011
3km_pbl1_WSPD10MAX_20080217-1200_02_03_012
3km_pbl1_WSPD10MAX_20080217-1200_03_07_013
3km_pbl1_WSPD10MAX_20080217-1200_03_05_014
3km_pbl1_WSPD10MAX_20080217-1200_03_03_015
3km_pbl1_WSPD10MAX_20080217-1200_03_06_016
3km_pbl1_WSPD10MAX_20080217-1200_03_03_017
3km_pbl1_WSPD10MAX_20080217-1200_03_04_018
3km_pbl1_WSPD10MAX_20080217-1200_04_04_019
3km_pbl1_WSPD10MAX_20080217-1200_04_06_020
3km_pbl1_WSPD10MAX_20080217-1200_04_05_021
3km_pbl1_WSPD10MAX_20080217-1200_04_04_022
3km_pbl1_WSPD10MAX_20080217-1200_04_04_023
3km_pbl1_WSPD10MAX_20080217-1200_05_05_024
3km_pbl1_WSPD10MAX_20080217-1200_05_05_025
3km_pbl1_WSPD10MAX_20080217-1200_05_05_026
3km_pbl1_WSPD10MAX_20080217-1200_05_07_027
3km_pbl1_WSPD10MAX_20080217-1200_06_07_028
3km_pbl1_WSPD10MAX_20080217-1200_06_06_029
3km_pbl1_WSPD10MAX_20080217-1200_07_07_030
3km_pbl1_WSPD10MAX_20080217-1200_07_08_031
3km_pbl1_WSPD10MAX_20080217-1200_09_10_032
object not in US -88.8482100189 29.9179200419
object not in US -88.5024894443 30.1302429399
3km_pbl1_WSPD10MAX_20080217-1200_09_09_033
3km_pbl1_WSPD10MAX_20080217-1200_09_10_034
3km_pbl1_WSPD10MAX_20080217-1200_09_11_035
3km_pbl1_WSPD10MAX_20080217-1200_09_10_036
3km_pbl1_WSPD10MAX_20080217-1200_09_10_037
3km_pbl1_WSPD10MAX_20080217-1200_10_10_038
object not in US -88.7254752211 29.7818570218
3km_pbl1_WSPD10MAX_20080217-1200_10_11_039
object not in US -87.848665022 30.067048043
object not in US -87.5661052212 30.1430017452
3km_pbl1_WSPD10MAX_20080217-1200_10_10_040
3km_pbl1_WSPD10MAX_20080217-1200_10_10_041
3km_pbl1_WSPD10MAX_20080217-1200_10_10_042
3km_pbl1_WSPD10MAX_20080217-1200_11_11_043
object not in US -87.9631370556 30.5546736068
3km_pbl1_WSPD10MAX_20080217-1200_11_12_044
3km_pbl1_WSPD10MAX_20080217-1200_11_12_045
3km_pbl1_WSPD10MAX_20080217-1200_12_12_046
3km_pbl1_WSPD10MAX_20080217-1200_12_12_047
3km_pbl1_WSPD10MAX_20080217-1200_13_13_048
3km_pbl1_WSPD10MAX_20080217-1200_13_17_049
object not in US -79.2000574852 32.8307166883
object not in US -79.219653027 32.9406753515
object not in US -78.9863565829 33.0028328034
object not in US -78.836005099 32.9089967907
object not in US -78.5508659266 33.1286713679
3km_pbl1_WSPD10MAX_20080217-1200_13_13_050
3km_pbl1_WSPD10MAX_20080217-1200_14_14_051
3km_pbl1_WSPD10MAX_20080217-1200_14_16_052
3km_pbl1_WSPD10MAX_20080217-1200_14_14_053
object not in US -78.6594405468 33.3005543204
3km_pbl1_WSPD10MAX_20080217-1200_15_16_054
3km_pbl1_WSPD10MAX_20080217-1200_15_16_055
object not in US -78.0581188229 33.4378412486
object not in US -78.0477876713 33.518243182
3km_pbl1_WSPD10MAX_20080217-1200_15_15_056
3km_pbl1_WSPD10MAX_20080217-1200_15_16_057
3km_pbl1_WSPD10MAX_20080217-1200_16_18_058
3km_pbl1_WSPD10MAX_20080217-1200_16_17_059
3km_pbl1_WSPD10MAX_20080217-1200_16_18_060
object not in US -79.3431063132 32.7068234156
object not in US -79.0152022052 33.0323123563
object not in US -78.9098235006 33.375777263
3km_pbl1_WSPD10MAX_20080217-1200_17_17_061
object not in US -78.4614224562 33.0667376665
3km_pbl1_WSPD10MAX_20080217-1200_17_17_062
object not in US -78.1983254822 33.6129215575
3km_pbl1_WSPD10MAX_20080217-1200_17_17_063
3km_pbl1_WSPD10MAX_20080217-1200_18_18_064
object not in US -87.6758892747 29.4703825695
3km_pbl1_WSPD10MAX_20080217-1200_18_23_065
object not in US -77.5872218025 33.5576219758
object not in US -77.59080125 33.5308349557
object not in US -77.6515141438 33.5635740079
object not in US -77.6550753542 33.5367854138
object not in US -77.6621916414 33.4832061259
object not in US -77.6799466615 33.3492459419
3km_pbl1_WSPD10MAX_20080217-1200_18_18_066
object not in US -78.1408113053 33.5536306516
3km_pbl1_WSPD10MAX_20080217-1200_19_19_067
object not in US -86.2377620198 29.7872300024
3km_pbl1_WSPD10MAX_20080217-1200_19_19_068
object not in US -78.6762289645 32.8954714285
3km_pbl1_WSPD10MAX_20080217-1200_19_23_069
object not in US -78.1026823111 33.0893648779
object not in US -78.0890057996 33.1965997063
object not in US -78.5099162561 32.9354014731
object not in US -78.6357327419 32.4311564905
object not in US -78.5141700257 32.6375569175
3km_pbl1_WSPD10MAX_20080217-1200_20_24_070
object not in US -78.3793931828 33.4661686863
object not in US -78.35589918 33.6538160006
object not in US -78.2187316326 33.4521012536
object not in US -78.0649963785 33.3842365791
object not in US -77.9227057246 33.4798904985
3km_pbl1_WSPD10MAX_20080217-1200_20_20_071
object not in US -78.5136109889 33.6945241038
3km_pbl1_WSPD10MAX_20080217-1200_20_20_072
object not in US -78.1236803955 33.6876277468
3km_pbl1_WSPD10MAX_20080217-1200_21_21_073
object not in US -80.695270812 32.050667997
3km_pbl1_WSPD10MAX_20080217-1200_21_24_074
object not in US -79.9058052989 32.2633685025
object not in US -79.9058052989 32.2633685025
object not in US -80.1413762183 31.847857907
object not in US -80.1757997069 31.8233525422
3km_pbl1_WSPD10MAX_20080217-1200_21_21_075
object not in US -78.1095088402 33.0357438696
3km_pbl1_WSPD10MAX_20080217-1200_21_21_076
3km_pbl1_WSPD10MAX_20080217-1200_21_21_077
3km_pbl1_WSPD10MAX_20080217-1200_22_23_078
object not in US -79.3466710273 30.9726384928
object not in US -79.2960402245 30.8600518385
3km_pbl1_WSPD10MAX_20080217-1200_22_24_079
object not in US -78.9711994863 31.2124962679
object not in US -78.5179608778 31.553117864
object not in US -78.0727918939 32.0559583719
3km_pbl1_WSPD10MAX_20080217-1200_22_22_080
object not in US -79.6162847056 31.4009274188
3km_pbl1_WSPD10MAX_20080217-1200_22_24_081
object not in US -79.3220507374 32.325800066
object not in US -79.2811161676 32.4037767446
object not in US -79.188801816 32.3691550103
3km_pbl1_WSPD10MAX_20080217-1200_22_22_082
object not in US -78.5574389622 33.0750293648
3km_pbl1_WSPD10MAX_20080217-1200_22_24_083
object not in US -78.9899265287 33.24696098
object not in US -78.9962563111 33.1933024152
object not in US -78.7232615506 33.5768873019
3km_pbl1_WSPD10MAX_20080217-1200_22_22_084
object not in US -78.5079570857 33.4772839257
3km_pbl1_WSPD10MAX_20080217-1200_23_23_085
object not in US -78.9054507149 31.5051923631
3km_pbl1_WSPD10MAX_20080217-1200_23_24_086
object not in US -79.1367828148 31.985435217
object not in US -79.0741195566 32.2513020614
3km_pbl1_WSPD10MAX_20080217-1200_23_23_087
object not in US -80.7770557016 31.8669284265
3km_pbl1_WSPD10MAX_20080217-1200_23_24_088
object not in US -78.4428787032 32.1703518781
object not in US -78.3345250904 32.2692911356
3km_pbl1_WSPD10MAX_20080217-1200_23_23_089
object not in US -80.0710121036 32.5196189426
3km_pbl1_WSPD10MAX_20080217-1200_23_24_090
object not in US -77.662542297 34.2152001895
object not in US -77.6589571388 34.2419715812
3km_pbl1_WSPD10MAX_20080217-1200_24_24_091
object not in US -85.9850812547 28.3762050558
3km_pbl1_WSPD10MAX_20080217-1200_24_24_092
object not in US -79.199146967 30.8791443459
3km_pbl1_WSPD10MAX_20080217-1200_24_24_093
object not in US -78.7704262208 31.0326402502
3km_pbl1_WSPD10MAX_20080217-1200_24_24_094
object not in US -80.4036929828 31.4610715561
3km_pbl1_WSPD10MAX_20080217-1200_24_24_095
object not in US -79.670497772 31.4865150359
3km_pbl1_WSPD10MAX_20080217-1200_24_24_096
object not in US -79.7000627898 32.680861371
3km_pbl1_WSPD10MAX_20080217-1200_24_24_097
object not in US -77.8316675698 32.6850822878
3km_pbl1_WSPD10MAX_20080217-1200_24_24_098
object not in US -78.2122266877 32.9906608741
3km_pbl1_WSPD10MAX_20080217-1200_24_24_099
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_01_01_002
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_01_01_003
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_02_004
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_09_005
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_03_006
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_09_007
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_02_008
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_03_009
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_02_10_010
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_03_03_011
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_03_03_012
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_03_05_013
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_03_03_014
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_03_03_015
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_04_06_016
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_04_04_017
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_04_07_018
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_04_04_019
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_04_04_020
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_05_05_021
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_05_05_022
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_05_05_023
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_05_06_024
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_05_05_025
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_06_06_026
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_07_07_027
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_07_07_028
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_07_07_029
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_08_08_030
object not in US -89.2520453757 30.0288181133
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_08_08_031
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_08_08_032
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_09_09_033
object not in US -88.6599587383 30.0240351492
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_09_09_034
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_09_09_035
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_09_09_036
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_09_10_037
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_10_038
object not in US -87.9950280754 30.5281817122
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_10_039
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_10_040
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_11_041
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_10_042
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_10_043
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_11_044
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_10_045
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_10_11_046
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_11_11_047
object not in US -87.9364304285 30.3383486278
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_11_11_048
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_11_12_049
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_11_11_050
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_11_12_051
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_11_12_052
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_12_12_053
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_12_14_054
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_12_12_055
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_12_13_056
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_12_12_057
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_12_12_058
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_13_13_059
object not in US -86.1316628482 30.108052979
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_13_13_060
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_13_13_061
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_14_14_062
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_14_15_063
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_14_14_064
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_15_15_065
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_15_15_066
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_16_17_067
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_16_16_068
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_16_16_069
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_17_17_070
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_17_17_071
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_17_17_072
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_18_21_073
object not in US -78.7146476384 32.8445338078
object not in US -78.5240067399 32.5570708706
object not in US -78.8615004803 32.4232730459
object not in US -78.820064892 32.7721471247
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_18_18_074
object not in US -78.2610293674 32.8594088678
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_18_18_075
object not in US -79.0093621541 33.3569179676
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_19_19_076
object not in US -86.1402680452 29.8923316958
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_19_21_077
object not in US -79.7668046859 32.6589473675
object not in US -79.5894694097 32.8076490977
object not in US -79.6332898519 32.7027415746
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_19_19_078
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_19_19_079
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_080
object not in US -81.1489596167 31.2970418435
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_24_081
object not in US -79.5592259861 31.3421814681
object not in US -79.670497772 31.4865150359
object not in US -79.7821065706 31.63074959
object not in US -79.7592389356 31.5476805058
object not in US -79.5848092933 31.3984233318
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_082
object not in US -78.7759241948 32.0635802088
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_083
object not in US -78.475727417 32.6884430186
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_084
object not in US -79.0560293732 32.6834318986
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_085
object not in US -77.7613407854 32.9770193271
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_086
object not in US -77.5694206132 33.4474853021
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_24_087
object not in US -78.5367980138 33.5068559792
object not in US -78.5533031425 33.3727866993
object not in US -78.5887005026 33.3487190413
object not in US -78.5169291422 33.6677165008
object not in US -78.4303308754 33.5789788548
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_088
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_20_20_089
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_21_21_090
object not in US -87.0612093726 28.2707881352
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_21_21_091
object not in US -86.4893946825 28.8497517634
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_21_21_092
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_21_21_093
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_23_094
object not in US -86.6328779595 28.260155129
object not in US -86.4493368336 28.2551561252
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_22_095
object not in US -79.1578524484 30.6859287949
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_23_096
object not in US -80.4513862744 31.302074172
object not in US -80.7635033151 31.3515846021
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_24_097
object not in US -78.685514715 31.2151395473
object not in US -78.4745043301 31.3865423706
object not in US -78.4234806431 31.5447924529
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_24_098
object not in US -79.4311038045 32.4971380214
object not in US -79.0635267226 33.1717493314
object not in US -79.0603827432 33.1985809348
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_23_099
object not in US -78.5688929381 32.4525040799
object not in US -78.7407493525 32.3588158984
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_24_100
object not in US -77.7679637487 32.6792129673
object not in US -77.9229947463 32.4764137393
object not in US -77.8801623035 32.3096970252
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_23_101
object not in US -78.2273163306 33.1275614916
object not in US -78.1783265418 33.2587765968
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_22_102
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_22_103
object not in US -78.7746761219 33.6895556322
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_22_104
object not in US -78.6359375432 33.7591271974
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_22_105
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_22_106
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_22_23_107
object not in US -77.5149275539 34.3371156128
object not in US -77.5509627464 34.3133448903
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_23_108
object not in US -86.7649809591 27.9669652076
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_23_109
object not in US -86.0780235546 28.3521301079
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_23_110
object not in US -85.9238385908 28.3742560451
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_24_111
object not in US -80.2146251254 31.4470682815
object not in US -79.9945509089 31.7284052448
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_24_112
object not in US -80.1422753583 32.1458380309
object not in US -80.4261788558 31.8689154738
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_23_113
object not in US -77.9846728914 31.9936693387
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_23_114
object not in US -79.2113663875 32.4522972047
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_23_23_115
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_116
object not in US -88.3468149506 26.4622272475
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_117
object not in US -85.9055484973 28.0769442366
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_118
object not in US -85.8002109 28.3972106685
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_119
object not in US -85.3306583447 28.5967157993
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_120
object not in US -78.9525403709 31.3736064374
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_121
object not in US -78.7854793505 31.9830535669
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_122
object not in US -79.1120624187 32.2002324056
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_123
object not in US -79.4083351568 32.4140352498
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_124
object not in US -79.7349051022 32.6564805413
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_125
object not in US -78.2560083544 32.6420259309
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_126
object not in US -78.9031086737 32.8875201833
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_127
object not in US -77.5586672784 33.5278481755
1km_on_3km_pbl1_WSPD10MAX_20080217-1200_24_24_128
object not in US -78.0833702363 33.4943121449
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2008021712_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20080225-1200_17_18_000
object not in US -101.285310399 28.2893261874
object not in US -101.282228832 28.2625052097
3km_pbl1_WSPD10MAX_20080225-1200_18_21_001
object not in US -101.490350152 27.6748188687
object not in US -101.490350152 27.6748188687
object not in US -101.520613885 27.6720532816
object not in US -101.526870984 27.7256573204
3km_pbl1_WSPD10MAX_20080225-1200_18_20_002
object not in US -100.747818846 27.8757203778
object not in US -100.633629016 27.6688425633
object not in US -100.736136372 27.7684254538
3km_pbl1_WSPD10MAX_20080225-1200_19_24_003
object not in US -101.06741383 26.6302015323
object not in US -101.127330941 26.6248719922
object not in US -101.127330941 26.6248719922
object not in US -101.160284713 26.6489764018
object not in US -101.163283932 26.6757571405
object not in US -101.163283932 26.6757571405
3km_pbl1_WSPD10MAX_20080225-1200_19_19_004
object not in US -100.709458062 26.9589070004
3km_pbl1_WSPD10MAX_20080225-1200_19_20_005
object not in US -96.3540139768 28.4967652184
object not in US -96.297930157 28.5805721197
3km_pbl1_WSPD10MAX_20080225-1200_20_21_006
object not in US -100.238374189 26.2145791452
object not in US -100.235635371 26.1877932845
3km_pbl1_WSPD10MAX_20080225-1200_20_22_007
object not in US -100.656409514 26.7470882821
object not in US -100.623545284 26.7228485644
object not in US -100.65354401 26.7202933354
3km_pbl1_WSPD10MAX_20080225-1200_20_20_008
object not in US -97.5506803324 27.2699077238
3km_pbl1_WSPD10MAX_20080225-1200_20_20_009
object not in US -97.0802451201 27.4862157945
3km_pbl1_WSPD10MAX_20080225-1200_20_21_010
object not in US -97.2818096403 27.744720442
object not in US -97.3141796684 27.7698531721
3km_pbl1_WSPD10MAX_20080225-1200_21_21_011
object not in US -97.4158294225 26.6842905371
3km_pbl1_WSPD10MAX_20080225-1200_21_21_012
object not in US -99.9498054884 26.6431988792
3km_pbl1_WSPD10MAX_20080225-1200_21_24_013
object not in US -97.0213741303 27.0847083398
object not in US -97.1408555835 27.4827943485
object not in US -97.1459666541 27.1316432661
object not in US -97.0194780675 27.0578338401
3km_pbl1_WSPD10MAX_20080225-1200_21_21_014
object not in US -96.8942564852 27.8744703586
3km_pbl1_WSPD10MAX_20080225-1200_21_24_015
object not in US -96.3349185318 28.2006887159
object not in US -96.3837847369 28.0092511361
object not in US -96.4593642401 27.7624693915
object not in US -96.4628799332 27.8162736111
3km_pbl1_WSPD10MAX_20080225-1200_21_24_016
object not in US -95.5849211888 28.4788600305
object not in US -95.3675109341 28.4342343702
object not in US -95.5925701303 28.0736502095
object not in US -95.604726159 27.7493082635
3km_pbl1_WSPD10MAX_20080225-1200_21_24_017
object not in US -94.6629664753 29.1097927834
object not in US -94.6539810062 28.9211603207
object not in US -94.7194481015 28.999740963
object not in US -94.6565447495 28.9750534034
3km_pbl1_WSPD10MAX_20080225-1200_21_23_018
object not in US -94.8358533891 29.4813740246
object not in US -94.8062232201 29.5094878466
object not in US -94.8062232201 29.5094878466
3km_pbl1_WSPD10MAX_20080225-1200_22_24_019
object not in US -99.7318148304 25.9582684581
object not in US -99.4535232852 25.8718331839
object not in US -99.880763827 25.9465011833
3km_pbl1_WSPD10MAX_20080225-1200_22_22_020
object not in US -97.3699102268 26.4712435969
3km_pbl1_WSPD10MAX_20080225-1200_22_22_021
object not in US -96.4181920253 26.6585695232
3km_pbl1_WSPD10MAX_20080225-1200_22_22_022
3km_pbl1_WSPD10MAX_20080225-1200_22_22_023
object not in US -96.3251170179 28.5252112392
3km_pbl1_WSPD10MAX_20080225-1200_22_24_024
object not in US -93.650773171 29.304584017
object not in US -93.4913569969 29.1740865525
object not in US -93.5251527703 29.2541220329
3km_pbl1_WSPD10MAX_20080225-1200_23_24_025
object not in US -99.7302887047 25.0143821437
object not in US -99.7546451726 24.9585553796
3km_pbl1_WSPD10MAX_20080225-1200_23_23_026
object not in US -99.9727777846 25.9661376008
3km_pbl1_WSPD10MAX_20080225-1200_23_23_027
object not in US -100.382087031 26.1486377637
3km_pbl1_WSPD10MAX_20080225-1200_23_23_028
object not in US -94.7672201952 28.0804022974
3km_pbl1_WSPD10MAX_20080225-1200_23_23_029
object not in US -96.3383818985 28.2545161486
3km_pbl1_WSPD10MAX_20080225-1200_23_23_030
object not in US -95.9781963843 28.3799834077
3km_pbl1_WSPD10MAX_20080225-1200_23_24_031
object not in US -92.8784868839 29.3512202599
object not in US -92.7177793523 29.1388680603
3km_pbl1_WSPD10MAX_20080225-1200_24_24_032
object not in US -99.0598106846 24.5000541739
3km_pbl1_WSPD10MAX_20080225-1200_24_24_033
object not in US -97.6193449339 25.0014085817
3km_pbl1_WSPD10MAX_20080225-1200_24_24_034
object not in US -99.0695202162 25.6038285178
3km_pbl1_WSPD10MAX_20080225-1200_24_24_035
object not in US -95.2036709394 27.6585650417
3km_pbl1_WSPD10MAX_20080225-1200_24_24_036
object not in US -95.4504240533 28.2687585841
3km_pbl1_WSPD10MAX_20080225-1200_24_24_037
object not in US -95.3763462765 28.5958234985
3km_pbl1_WSPD10MAX_20080225-1200_24_24_038
object not in US -92.0705323176 29.2049206837
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_18_20_000
object not in US -100.744895852 27.8488957856
object not in US -100.672605736 27.746750082
object not in US -100.705822039 27.771003297
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_18_21_001
object not in US -101.526870984 27.7256573204
object not in US -101.557149227 27.7228828528
object not in US -101.557149227 27.7228828528
object not in US -101.590573075 27.7469023998
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_18_18_002
object not in US -101.315768632 28.2866082787
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_19_24_003
object not in US -101.06741383 26.6302015323
object not in US -101.100354913 26.654321873
object not in US -101.187241652 26.6195138093
object not in US -101.163283932 26.6757571405
object not in US -101.097373184 26.6275403429
object not in US -101.160284713 26.6489764018
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_19_24_004
object not in US -100.533539931 26.7304711934
object not in US -100.656409514 26.7470882821
object not in US -100.656409514 26.7470882821
object not in US -100.719301282 26.7687489634
object not in US -100.719301282 26.7687489634
object not in US -100.752203839 26.7929648928
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_19_19_005
object not in US -101.049045542 27.0105497076
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_19_19_006
object not in US -97.2857716649 27.7984994751
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_21_007
object not in US -100.585229905 26.0774705845
object not in US -100.612201724 26.0481544788
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_22_008
object not in US -100.148795846 26.2219203414
object not in US -100.265484003 26.1853326871
object not in US -100.232898014 26.1610083508
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_20_009
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_20_010
object not in US -101.320109569 27.2570011335
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_20_011
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_20_012
object not in US -96.3574982375 28.5506037621
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_20_21_013
object not in US -94.8102196737 29.5903455995
object not in US -94.8062232201 29.5094878466
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_21_014
object not in US -96.9214654718 26.9553693024
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_24_015
object not in US -96.5971085819 27.998313967
object not in US -96.8185445807 27.6626031379
object not in US -97.0970778482 27.2963319579
object not in US -97.1401780619 27.0510235723
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_21_016
object not in US -97.2818096403 27.744720442
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_23_017
object not in US -96.0360885489 28.3232489394
object not in US -96.1416041819 28.0482232962
object not in US -96.3022041441 27.6894429198
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_23_018
object not in US -95.6201761013 28.5582972101
object not in US -95.5742293537 28.2903739331
object not in US -95.7052612572 27.9067056031
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_24_019
object not in US -94.723351989 29.0805826376
object not in US -94.6231951205 28.9222780011
object not in US -94.5898814156 28.869495487
object not in US -94.627016407 29.0031191824
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_21_21_020
object not in US -94.3355915666 29.3912429512
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_23_021
object not in US -99.8849344535 25.3795373302
object not in US -99.9737858986 25.372394885
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_24_022
object not in US -99.7292177996 25.931481426
object not in US -99.5428394139 25.8649949475
object not in US -99.1610617758 25.6240540495
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_22_023
object not in US -97.339915351 26.4730109805
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_22_024
object not in US -96.3967287816 26.7944726258
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_22_025
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_22_026
object not in US -94.2892290287 29.0418858814
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_22_24_027
object not in US -93.6867847025 29.4385048971
object not in US -93.4343421466 29.3105610295
object not in US -93.3715679322 29.2852392775
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_24_028
object not in US -99.6738119864 25.0457812998
object not in US -99.7302887047 25.0143821437
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_029
object not in US -99.9283615681 25.2142477024
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_24_030
object not in US -100.064827608 25.9857065191
object not in US -99.8185677746 25.9244445765
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_031
object not in US -99.030861362 26.1731121421
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_032
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_033
object not in US -94.8521620434 27.942291207
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_034
object not in US -95.2932118275 28.194448851
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_24_035
object not in US -95.8557928227 28.3856832593
object not in US -95.8220022277 28.3332435772
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_036
object not in US -96.3557556301 28.5236842537
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_24_037
object not in US -92.9428030591 29.4307169451
object not in US -92.7825933078 29.2454029701
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_23_23_038
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_039
object not in US -99.6127812523 24.4041251656
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_040
object not in US -99.0304280782 24.502220155
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_041
object not in US -99.5506411459 25.0014947602
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_042
object not in US -96.872776162 26.6883416002
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_043
object not in US -96.7019514928 27.2910251537
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_044
object not in US -96.8285007413 27.3651723901
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_045
object not in US -94.9288180037 27.642624443
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_046
object not in US -95.7201347832 27.6362159962
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_047
object not in US -96.5881278234 27.8637958462
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_048
object not in US -94.5205528087 28.0354884103
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_049
object not in US -94.4105368037 28.3091330496
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_050
object not in US -95.0779194837 28.7700328101
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_051
object not in US -94.0801690085 29.2106667127
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_052
object not in US -91.9805763884 29.3412351195
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_053
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_054
1km_on_3km_pbl1_WSPD10MAX_20080225-1200_24_24_055
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2008022512_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20081209-1200_01_01_000
object not in US -100.00463192 24.4804734348
3km_pbl1_WSPD10MAX_20081209-1200_01_01_001
object not in US -101.051514237 24.5792157292
3km_pbl1_WSPD10MAX_20081209-1200_01_02_002
object not in US -100.223757891 24.8935240914
object not in US -100.191596074 24.8692381642
3km_pbl1_WSPD10MAX_20081209-1200_01_02_003
object not in US -100.541805867 25.3791721597
object not in US -100.283098689 25.1851801811
3km_pbl1_WSPD10MAX_20081209-1200_01_01_004
3km_pbl1_WSPD10MAX_20081209-1200_01_01_005
3km_pbl1_WSPD10MAX_20081209-1200_01_01_006
3km_pbl1_WSPD10MAX_20081209-1200_01_09_007
3km_pbl1_WSPD10MAX_20081209-1200_01_02_008
3km_pbl1_WSPD10MAX_20081209-1200_01_01_009
3km_pbl1_WSPD10MAX_20081209-1200_01_01_010
3km_pbl1_WSPD10MAX_20081209-1200_01_01_011
3km_pbl1_WSPD10MAX_20081209-1200_01_01_012
3km_pbl1_WSPD10MAX_20081209-1200_02_04_013
object not in US -100.264069138 24.9980036926
object not in US -100.264069138 24.9980036926
object not in US -100.266783344 25.0247397198
3km_pbl1_WSPD10MAX_20081209-1200_03_03_014
3km_pbl1_WSPD10MAX_20081209-1200_04_04_015
3km_pbl1_WSPD10MAX_20081209-1200_05_05_016
3km_pbl1_WSPD10MAX_20081209-1200_05_05_017
3km_pbl1_WSPD10MAX_20081209-1200_05_05_018
3km_pbl1_WSPD10MAX_20081209-1200_05_05_019
3km_pbl1_WSPD10MAX_20081209-1200_05_11_020
3km_pbl1_WSPD10MAX_20081209-1200_08_08_021
3km_pbl1_WSPD10MAX_20081209-1200_08_22_022
3km_pbl1_WSPD10MAX_20081209-1200_09_09_023
3km_pbl1_WSPD10MAX_20081209-1200_09_09_024
3km_pbl1_WSPD10MAX_20081209-1200_10_10_025
3km_pbl1_WSPD10MAX_20081209-1200_10_10_026
3km_pbl1_WSPD10MAX_20081209-1200_10_10_027
3km_pbl1_WSPD10MAX_20081209-1200_11_12_028
object not in US -87.2557157512 30.0828096421
object not in US -87.187886658 30.2702876706
3km_pbl1_WSPD10MAX_20081209-1200_11_11_029
3km_pbl1_WSPD10MAX_20081209-1200_12_13_030
3km_pbl1_WSPD10MAX_20081209-1200_12_12_031
3km_pbl1_WSPD10MAX_20081209-1200_13_13_032
object not in US -101.261602183 28.8876580469
3km_pbl1_WSPD10MAX_20081209-1200_13_15_033
object not in US -94.8331771514 29.4274714215
object not in US -94.8358533891 29.4813740246
object not in US -94.8358533891 29.4813740246
3km_pbl1_WSPD10MAX_20081209-1200_13_13_034
3km_pbl1_WSPD10MAX_20081209-1200_13_13_035
3km_pbl1_WSPD10MAX_20081209-1200_13_13_036
3km_pbl1_WSPD10MAX_20081209-1200_13_13_037
3km_pbl1_WSPD10MAX_20081209-1200_14_23_038
object not in US -101.163283932 26.6757571405
object not in US -101.130320614 26.6516527188
object not in US -101.127330941 26.6248719922
object not in US -101.127330941 26.6248719922
object not in US -101.127330941 26.6248719922
object not in US -101.094393051 26.6007596361
object not in US -101.097373184 26.6275403429
object not in US -101.100354913 26.654321873
object not in US -101.097373184 26.6275403429
object not in US -101.06741383 26.6302015323
3km_pbl1_WSPD10MAX_20081209-1200_14_14_039
object not in US -101.320109569 27.2570011335
3km_pbl1_WSPD10MAX_20081209-1200_14_14_040
object not in US -97.153229236 28.076132026
3km_pbl1_WSPD10MAX_20081209-1200_14_17_041
object not in US -96.3671956991 28.2260727472
object not in US -96.4003011221 27.7924667875
object not in US -96.491913575 27.329021933
object not in US -96.6843639136 27.4808539432
3km_pbl1_WSPD10MAX_20081209-1200_14_14_042
object not in US -100.823228329 28.0046604744
3km_pbl1_WSPD10MAX_20081209-1200_14_20_043
object not in US -95.6768237248 28.4747914067
object not in US -95.8188182097 28.2793994087
object not in US -95.6737145694 28.4209380876
object not in US -95.7271037847 28.2835700158
object not in US -95.851158105 27.7921005562
object not in US -95.8017939864 27.470624596
object not in US -95.7465342289 27.0416619401
3km_pbl1_WSPD10MAX_20081209-1200_14_20_044
object not in US -94.5370785762 29.0603285825
object not in US -94.8201064727 28.5371222281
object not in US -94.7672201952 28.0804022974
object not in US -94.8640804142 27.5642319322
object not in US -94.4293181393 27.3645649445
object not in US -94.4475719527 27.0943876636
object not in US -94.2754622194 27.315972254
3km_pbl1_WSPD10MAX_20081209-1200_14_18_045
object not in US -93.9642948693 29.4032457639
object not in US -94.1476597857 29.3434645548
object not in US -94.0858098424 29.3454489749
object not in US -94.0734205243 29.0489392529
object not in US -94.0895968655 28.6975960403
3km_pbl1_WSPD10MAX_20081209-1200_14_14_046
object not in US -93.4758309887 29.6063281581
3km_pbl1_WSPD10MAX_20081209-1200_14_14_047
3km_pbl1_WSPD10MAX_20081209-1200_14_14_048
3km_pbl1_WSPD10MAX_20081209-1200_14_16_049
3km_pbl1_WSPD10MAX_20081209-1200_15_15_050
object not in US -100.63492679 26.2623584905
3km_pbl1_WSPD10MAX_20081209-1200_15_15_051
object not in US -99.9771158074 26.6139988441
3km_pbl1_WSPD10MAX_20081209-1200_15_16_052
object not in US -96.9969125095 27.5988463033
object not in US -97.1517646269 27.2122698323
3km_pbl1_WSPD10MAX_20081209-1200_15_15_053
object not in US -97.2857716649 27.7984994751
3km_pbl1_WSPD10MAX_20081209-1200_15_15_054
object not in US -95.6535877094 28.0709423773
3km_pbl1_WSPD10MAX_20081209-1200_15_16_055
object not in US -96.3268512607 28.5521311938
object not in US -96.3268512607 28.5521311938
3km_pbl1_WSPD10MAX_20081209-1200_15_15_056
object not in US -93.9468235199 28.9719442596
3km_pbl1_WSPD10MAX_20081209-1200_15_23_057
object not in US -94.5099775503 29.1422688254
object not in US -94.5283399702 28.8716925042
object not in US -94.579800676 28.6539412469
object not in US -94.6757561901 28.7314245983
object not in US -94.7828852482 28.4035941339
object not in US -94.4729496036 29.0086011528
object not in US -94.4433585108 29.0366250169
object not in US -94.2727409211 28.6646050539
object not in US -94.4520954379 28.550524067
3km_pbl1_WSPD10MAX_20081209-1200_15_15_058
object not in US -93.1233838618 29.2645382057
3km_pbl1_WSPD10MAX_20081209-1200_15_18_059
object not in US -92.9754124273 29.4839377848
object not in US -92.5683771317 29.3308178532
object not in US -92.3755441646 29.0377600772
object not in US -92.0631258593 28.8543569719
3km_pbl1_WSPD10MAX_20081209-1200_15_15_060
3km_pbl1_WSPD10MAX_20081209-1200_15_15_061
3km_pbl1_WSPD10MAX_20081209-1200_15_15_062
3km_pbl1_WSPD10MAX_20081209-1200_16_18_063
object not in US -99.910549431 25.9441263611
object not in US -99.5402950481 25.8382076591
object not in US -99.41119733 25.7401581463
3km_pbl1_WSPD10MAX_20081209-1200_16_17_064
object not in US -101.032176729 26.0385649199
object not in US -100.999453611 26.0144464722
3km_pbl1_WSPD10MAX_20081209-1200_16_16_065
object not in US -100.382087031 26.1486377637
3km_pbl1_WSPD10MAX_20081209-1200_16_17_066
object not in US -100.862143509 26.1346229222
object not in US -100.80250487 26.1398222123
3km_pbl1_WSPD10MAX_20081209-1200_16_18_067
object not in US -99.2171939309 26.5643802265
object not in US -99.1896760509 26.5934119582
3km_pbl1_WSPD10MAX_20081209-1200_16_17_068
object not in US -100.590696994 26.6986009457
object not in US -100.593545026 26.7253966174
3km_pbl1_WSPD10MAX_20081209-1200_16_17_069
object not in US -95.9804636259 27.4083177377
object not in US -96.0988938472 26.8632518323
3km_pbl1_WSPD10MAX_20081209-1200_16_16_070
object not in US -99.4754025653 27.058343531
3km_pbl1_WSPD10MAX_20081209-1200_16_17_071
object not in US -96.0789561663 28.0242528147
object not in US -96.1536326037 27.7507448323
3km_pbl1_WSPD10MAX_20081209-1200_16_18_072
object not in US -95.3440912652 28.0034213727
object not in US -95.2192731478 27.9546651244
object not in US -95.3107030834 27.950862221
3km_pbl1_WSPD10MAX_20081209-1200_16_18_073
object not in US -93.9504289362 28.2972974862
object not in US -93.9680008393 27.9730872029
object not in US -93.8365907277 27.7344561202
3km_pbl1_WSPD10MAX_20081209-1200_16_17_074
object not in US -96.7373531485 28.2609634303
object not in US -96.7373531485 28.2609634303
3km_pbl1_WSPD10MAX_20081209-1200_16_17_075
object not in US -100.911400573 27.9699955372
object not in US -100.850655829 27.9752288838
3km_pbl1_WSPD10MAX_20081209-1200_16_17_076
object not in US -93.6564243727 28.6298126389
object not in US -93.2545419931 28.5597820535
3km_pbl1_WSPD10MAX_20081209-1200_16_16_077
object not in US -95.1016414485 28.6341165044
3km_pbl1_WSPD10MAX_20081209-1200_16_16_078
object not in US -93.2599073861 28.7215026399
3km_pbl1_WSPD10MAX_20081209-1200_16_16_079
object not in US -93.0573421033 29.1312124132
3km_pbl1_WSPD10MAX_20081209-1200_16_16_080
object not in US -93.5000521099 29.4167395687
3km_pbl1_WSPD10MAX_20081209-1200_16_20_081
object not in US -94.7818746935 29.6454083415
object not in US -94.7765759398 29.537595145
object not in US -94.8075546337 29.5364401688
object not in US -94.8062232201 29.5094878466
object not in US -94.8358533891 29.4813740246
3km_pbl1_WSPD10MAX_20081209-1200_16_16_082
3km_pbl1_WSPD10MAX_20081209-1200_16_17_083
3km_pbl1_WSPD10MAX_20081209-1200_16_16_084
object not in US -78.9768699816 33.0833300851
3km_pbl1_WSPD10MAX_20081209-1200_16_16_085
3km_pbl1_WSPD10MAX_20081209-1200_17_19_086
object not in US -98.9913651531 26.068042978
object not in US -99.0101107481 25.6081661158
object not in US -98.8568514207 25.5653052951
3km_pbl1_WSPD10MAX_20081209-1200_17_17_087
object not in US -100.330153844 25.936904744
3km_pbl1_WSPD10MAX_20081209-1200_17_20_088
object not in US -97.0980128645 26.460037074
object not in US -97.1995899328 26.6160154315
object not in US -96.9347758955 26.7118869823
object not in US -97.0212147957 26.6531290891
3km_pbl1_WSPD10MAX_20081209-1200_17_17_089
3km_pbl1_WSPD10MAX_20081209-1200_17_17_090
object not in US -100.63492679 26.2623584905
3km_pbl1_WSPD10MAX_20081209-1200_17_17_091
object not in US -96.6128015796 26.8641479501
3km_pbl1_WSPD10MAX_20081209-1200_17_17_092
object not in US -95.5593626919 26.942257007
3km_pbl1_WSPD10MAX_20081209-1200_17_17_093
object not in US -94.8284737735 27.457739686
3km_pbl1_WSPD10MAX_20081209-1200_17_17_094
object not in US -97.2514272272 27.7464690972
3km_pbl1_WSPD10MAX_20081209-1200_17_21_095
object not in US -95.2043995359 28.2520952887
object not in US -95.2392662377 28.331624403
object not in US -95.242134895 28.3854844614
object not in US -95.1569102936 27.9302416754
object not in US -95.0031819356 27.9094348234
3km_pbl1_WSPD10MAX_20081209-1200_17_19_096
object not in US -93.457949297 28.2307443716
object not in US -93.2062652646 28.0216222007
object not in US -93.0461837509 27.7829336714
3km_pbl1_WSPD10MAX_20081209-1200_17_18_097
object not in US -93.7424866821 29.2749512526
object not in US -93.7198024598 29.4915358895
3km_pbl1_WSPD10MAX_20081209-1200_17_18_098
object not in US -92.1662110239 29.3382362601
object not in US -91.9464066771 29.179888215
3km_pbl1_WSPD10MAX_20081209-1200_17_17_099
object not in US -91.7388171606 29.6685010687
3km_pbl1_WSPD10MAX_20081209-1200_17_17_100
object not in US -78.8648753524 33.4803943503
3km_pbl1_WSPD10MAX_20081209-1200_17_19_101
3km_pbl1_WSPD10MAX_20081209-1200_18_24_102
object not in US -99.1725014769 24.4378552749
object not in US -98.9645812312 24.4263214696
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.7906947895 24.465813169
3km_pbl1_WSPD10MAX_20081209-1200_18_19_103
object not in US -96.8530610624 25.961685944
object not in US -96.9613025869 25.7940428598
3km_pbl1_WSPD10MAX_20081209-1200_18_19_104
object not in US -97.8653124676 25.8747754106
object not in US -97.8375955156 25.903480703
3km_pbl1_WSPD10MAX_20081209-1200_18_20_105
object not in US -99.8781274585 25.9197177395
object not in US -99.7563989982 25.902357599
object not in US -99.7240278837 25.8779103274
3km_pbl1_WSPD10MAX_20081209-1200_18_18_106
object not in US -96.0613143831 26.2452178279
3km_pbl1_WSPD10MAX_20081209-1200_18_19_107
object not in US -98.9711132964 26.1774347468
object not in US -99.0009879721 26.1752770201
3km_pbl1_WSPD10MAX_20081209-1200_18_20_108
object not in US -101.294527391 26.231231595
object not in US -101.294527391 26.231231595
object not in US -101.294527391 26.231231595
3km_pbl1_WSPD10MAX_20081209-1200_18_18_109
object not in US -95.5473894182 26.7271611042
3km_pbl1_WSPD10MAX_20081209-1200_18_18_110
object not in US -95.1685557006 26.9859225248
3km_pbl1_WSPD10MAX_20081209-1200_18_18_111
object not in US -95.2530232436 27.4407560598
3km_pbl1_WSPD10MAX_20081209-1200_18_18_112
object not in US -97.5506803324 27.2699077238
3km_pbl1_WSPD10MAX_20081209-1200_18_19_113
object not in US -92.8163938502 28.2735608833
object not in US -92.5083146117 28.1991256768
3km_pbl1_WSPD10MAX_20081209-1200_18_18_114
object not in US -94.6196445808 28.1937789126
3km_pbl1_WSPD10MAX_20081209-1200_18_18_115
object not in US -94.0966878721 28.1308167046
3km_pbl1_WSPD10MAX_20081209-1200_18_18_116
object not in US -94.1099168675 29.1827244794
3km_pbl1_WSPD10MAX_20081209-1200_18_18_117
3km_pbl1_WSPD10MAX_20081209-1200_19_19_118
object not in US -99.5490735189 24.3552720843
3km_pbl1_WSPD10MAX_20081209-1200_19_23_119
object not in US -98.5013315911 24.5400082083
object not in US -98.505810659 24.5935086499
object not in US -98.5352304946 24.5914676954
object not in US -98.5374794876 24.6182191959
object not in US -98.566905832 24.6161705767
3km_pbl1_WSPD10MAX_20081209-1200_19_19_120
object not in US -97.7870744968 24.4798089716
3km_pbl1_WSPD10MAX_20081209-1200_19_24_121
object not in US -97.4045925296 24.9068717927
object not in US -97.2396961441 24.6746166589
object not in US -97.1637559522 24.4371235272
object not in US -97.2225539425 24.4336775681
object not in US -97.0755515486 24.4422397618
object not in US -96.9303484073 24.4773973498
3km_pbl1_WSPD10MAX_20081209-1200_19_19_122
object not in US -97.8179371695 24.8813287304
3km_pbl1_WSPD10MAX_20081209-1200_19_22_123
object not in US -96.8892480232 25.178881201
object not in US -96.7600089699 25.0246094417
object not in US -96.9707140824 25.0666848536
object not in US -96.9060549574 24.9896181563
3km_pbl1_WSPD10MAX_20081209-1200_19_19_124
object not in US -96.5072534835 25.7109654332
3km_pbl1_WSPD10MAX_20081209-1200_19_19_125
object not in US -95.9052357069 26.1449670919
3km_pbl1_WSPD10MAX_20081209-1200_19_20_126
object not in US -97.0097937363 26.0607208879
object not in US -97.0733300217 26.1110198933
3km_pbl1_WSPD10MAX_20081209-1200_19_19_127
object not in US -95.4636536135 26.2997781792
3km_pbl1_WSPD10MAX_20081209-1200_19_19_128
object not in US -94.761978954 26.7056125387
3km_pbl1_WSPD10MAX_20081209-1200_19_19_129
object not in US -96.4226788295 27.197687359
3km_pbl1_WSPD10MAX_20081209-1200_19_19_130
object not in US -93.7906982106 27.3315018991
3km_pbl1_WSPD10MAX_20081209-1200_19_19_131
object not in US -94.4461858306 27.7414422696
3km_pbl1_WSPD10MAX_20081209-1200_19_19_132
object not in US -94.1385346205 28.3992192426
3km_pbl1_WSPD10MAX_20081209-1200_19_19_133
object not in US -91.6361463084 29.1032982682
3km_pbl1_WSPD10MAX_20081209-1200_19_19_134
3km_pbl1_WSPD10MAX_20081209-1200_19_20_135
3km_pbl1_WSPD10MAX_20081209-1200_20_20_136
object not in US -95.9472431521 25.3354200916
3km_pbl1_WSPD10MAX_20081209-1200_20_20_137
object not in US -95.2939121744 25.9301433535
3km_pbl1_WSPD10MAX_20081209-1200_20_20_138
object not in US -96.2110426447 26.2378458566
3km_pbl1_WSPD10MAX_20081209-1200_20_20_139
object not in US -94.6278584278 26.4143665874
3km_pbl1_WSPD10MAX_20081209-1200_20_20_140
object not in US -100.637774247 26.2891381274
3km_pbl1_WSPD10MAX_20081209-1200_20_22_141
object not in US -96.6268509087 26.6207259059
object not in US -96.5454919638 26.7598200654
object not in US -96.588003168 26.9463617607
3km_pbl1_WSPD10MAX_20081209-1200_20_20_142
object not in US -95.3094273841 26.7913759682
3km_pbl1_WSPD10MAX_20081209-1200_20_20_143
object not in US -94.1966875125 26.8874660042
3km_pbl1_WSPD10MAX_20081209-1200_20_20_144
object not in US -93.7180050336 27.0103257418
3km_pbl1_WSPD10MAX_20081209-1200_20_20_145
object not in US -95.1783401394 27.1742152283
3km_pbl1_WSPD10MAX_20081209-1200_20_21_146
object not in US -92.9452220432 27.4618994835
object not in US -92.7942293317 27.4922837052
3km_pbl1_WSPD10MAX_20081209-1200_20_20_147
object not in US -94.7994450838 27.4858122383
3km_pbl1_WSPD10MAX_20081209-1200_20_20_148
object not in US -95.7185811727 27.6093083315
3km_pbl1_WSPD10MAX_20081209-1200_20_20_149
object not in US -92.5299041351 27.8482256484
3km_pbl1_WSPD10MAX_20081209-1200_20_20_150
object not in US -95.1908593368 28.5765260093
3km_pbl1_WSPD10MAX_20081209-1200_21_22_151
object not in US -95.6309607943 25.0006466048
object not in US -95.8457816193 25.1250917716
3km_pbl1_WSPD10MAX_20081209-1200_21_21_152
object not in US -97.5958171091 25.0835976652
3km_pbl1_WSPD10MAX_20081209-1200_21_21_153
object not in US -95.3605948751 25.4967232337
3km_pbl1_WSPD10MAX_20081209-1200_21_21_154
object not in US -96.5476258009 25.4127302808
3km_pbl1_WSPD10MAX_20081209-1200_21_23_155
object not in US -94.8666361782 25.7592267771
object not in US -94.4813223272 25.8275387871
object not in US -94.8018747937 25.6541323137
3km_pbl1_WSPD10MAX_20081209-1200_21_21_156
object not in US -94.4058979478 26.1531714817
3km_pbl1_WSPD10MAX_20081209-1200_21_21_157
object not in US -95.7633374966 26.286288082
3km_pbl1_WSPD10MAX_20081209-1200_21_21_158
object not in US -96.8170291681 26.3139650162
3km_pbl1_WSPD10MAX_20081209-1200_21_21_159
object not in US -96.3375994314 26.3392523171
3km_pbl1_WSPD10MAX_20081209-1200_21_22_160
object not in US -95.0670623467 26.7744677493
object not in US -95.0149263317 26.9382536261
3km_pbl1_WSPD10MAX_20081209-1200_21_21_161
object not in US -93.4113177683 26.8843510494
3km_pbl1_WSPD10MAX_20081209-1200_21_21_162
object not in US -99.1921456363 26.6202338954
3km_pbl1_WSPD10MAX_20081209-1200_21_21_163
object not in US -94.0396648183 27.4854874541
3km_pbl1_WSPD10MAX_20081209-1200_21_21_164
object not in US -95.075220311 27.5289447009
3km_pbl1_WSPD10MAX_20081209-1200_21_21_165
object not in US -95.5880072565 27.4533138779
3km_pbl1_WSPD10MAX_20081209-1200_21_21_166
object not in US -92.4034373672 27.6620240927
3km_pbl1_WSPD10MAX_20081209-1200_21_21_167
object not in US -94.5033522684 27.658517981
3km_pbl1_WSPD10MAX_20081209-1200_21_22_168
object not in US -94.4338554438 28.1464527186
object not in US -94.4350667948 28.1733870535
3km_pbl1_WSPD10MAX_20081209-1200_21_21_169
object not in US -94.3305910263 28.5816984602
3km_pbl1_WSPD10MAX_20081209-1200_21_21_170
object not in US -88.8216720017 29.5399516814
3km_pbl1_WSPD10MAX_20081209-1200_22_22_171
object not in US -95.31535959 24.6384599994
3km_pbl1_WSPD10MAX_20081209-1200_22_23_172
object not in US -94.9476486452 24.9761889082
object not in US -94.8640296757 25.0870155318
3km_pbl1_WSPD10MAX_20081209-1200_22_24_173
object not in US -94.4931807271 25.4236489631
object not in US -94.309097422 25.295768362
object not in US -94.0564930991 24.9281104997
3km_pbl1_WSPD10MAX_20081209-1200_22_22_174
object not in US -95.1483197968 25.4250341385
3km_pbl1_WSPD10MAX_20081209-1200_22_22_175
object not in US -96.1664427888 25.5130407973
3km_pbl1_WSPD10MAX_20081209-1200_22_22_176
object not in US -96.5034648027 26.1151564101
3km_pbl1_WSPD10MAX_20081209-1200_22_23_177
object not in US -93.6901036008 26.2571637147
object not in US -93.5373572245 26.1808515697
3km_pbl1_WSPD10MAX_20081209-1200_22_22_178
object not in US -97.0172984513 26.1680900888
3km_pbl1_WSPD10MAX_20081209-1200_22_22_179
object not in US -93.8233363094 26.6031391639
3km_pbl1_WSPD10MAX_20081209-1200_22_22_180
object not in US -95.5595282909 26.4032889572
3km_pbl1_WSPD10MAX_20081209-1200_22_24_181
object not in US -93.1330080391 26.6761793767
object not in US -92.8596968868 26.6019524814
object not in US -93.033695943 26.3825059175
3km_pbl1_WSPD10MAX_20081209-1200_22_22_182
object not in US -94.3971462045 26.6381502941
3km_pbl1_WSPD10MAX_20081209-1200_22_22_183
object not in US -96.5031391933 26.5733060258
3km_pbl1_WSPD10MAX_20081209-1200_22_24_184
object not in US -93.024779486 27.0828119852
object not in US -93.0223290989 27.002061648
object not in US -92.9872802182 26.8413054439
3km_pbl1_WSPD10MAX_20081209-1200_22_22_185
object not in US -96.0868091959 27.160460434
3km_pbl1_WSPD10MAX_20081209-1200_22_22_186
object not in US -94.3894957503 27.1503298669
3km_pbl1_WSPD10MAX_20081209-1200_22_23_187
object not in US -94.3127635179 27.476440716
object not in US -94.2859099345 27.5582362102
3km_pbl1_WSPD10MAX_20081209-1200_22_24_188
object not in US -92.9267828285 27.8666251007
object not in US -93.0272716887 28.160844075
object not in US -92.9588679923 27.919796797
3km_pbl1_WSPD10MAX_20081209-1200_22_22_189
object not in US -94.9659498676 27.7760270198
3km_pbl1_WSPD10MAX_20081209-1200_22_22_190
object not in US -95.5194991813 27.8609815556
3km_pbl1_WSPD10MAX_20081209-1200_22_24_191
object not in US -89.5699176541 28.62758916
object not in US -89.384924354 28.7346946701
object not in US -89.631559811 28.5738536134
3km_pbl1_WSPD10MAX_20081209-1200_22_22_192
object not in US -93.392169234 28.987861684
3km_pbl1_WSPD10MAX_20081209-1200_22_22_193
object not in US -88.5984182703 29.9694156579
3km_pbl1_WSPD10MAX_20081209-1200_23_24_194
object not in US -96.202839744 24.6506413133
object not in US -96.1406456043 24.600020051
3km_pbl1_WSPD10MAX_20081209-1200_23_23_195
object not in US -94.5237723518 24.7775395316
3km_pbl1_WSPD10MAX_20081209-1200_23_24_196
object not in US -93.8760526507 25.6327189552
object not in US -93.7836508996 25.554901621
3km_pbl1_WSPD10MAX_20081209-1200_23_23_197
object not in US -94.2965166124 25.6995594928
3km_pbl1_WSPD10MAX_20081209-1200_23_23_198
object not in US -96.591328217 25.6257540343
3km_pbl1_WSPD10MAX_20081209-1200_23_23_199
object not in US -94.8275942248 26.1913881307
3km_pbl1_WSPD10MAX_20081209-1200_23_23_200
object not in US -94.2098206225 26.4830114638
3km_pbl1_WSPD10MAX_20081209-1200_23_23_201
object not in US -93.4914672838 26.5859156143
3km_pbl1_WSPD10MAX_20081209-1200_23_23_202
object not in US -95.8483433264 26.7134609214
3km_pbl1_WSPD10MAX_20081209-1200_23_23_203
object not in US -96.3864073189 26.633238661
3km_pbl1_WSPD10MAX_20081209-1200_23_24_204
object not in US -97.2170519756 26.8577656778
object not in US -97.0908575792 26.7840511594
3km_pbl1_WSPD10MAX_20081209-1200_23_24_205
object not in US -92.2397943749 27.1531243081
object not in US -92.0285194074 27.1836449927
3km_pbl1_WSPD10MAX_20081209-1200_23_23_206
object not in US -95.9006692251 27.0884396841
3km_pbl1_WSPD10MAX_20081209-1200_23_24_207
object not in US -96.7037661392 27.3179111183
object not in US -96.6952587876 27.642212672
3km_pbl1_WSPD10MAX_20081209-1200_23_23_208
object not in US -95.5441561325 27.2125375156
3km_pbl1_WSPD10MAX_20081209-1200_23_24_209
object not in US -95.3136611003 27.4382131756
object not in US -95.1718780577 27.6328992655
3km_pbl1_WSPD10MAX_20081209-1200_23_23_210
object not in US -95.8656168561 27.5216227557
3km_pbl1_WSPD10MAX_20081209-1200_23_23_211
object not in US -92.1337590564 27.8555257434
3km_pbl1_WSPD10MAX_20081209-1200_23_23_212
object not in US -95.3918392884 27.7585729553
3km_pbl1_WSPD10MAX_20081209-1200_23_24_213
object not in US -92.5645651329 28.0092722836
object not in US -92.4511758229 28.362028795
3km_pbl1_WSPD10MAX_20081209-1200_23_24_214
object not in US -94.1929001543 28.2355719474
object not in US -94.2020904461 28.4510944216
3km_pbl1_WSPD10MAX_20081209-1200_23_23_215
object not in US -94.8375050679 28.2666059398
3km_pbl1_WSPD10MAX_20081209-1200_23_24_216
object not in US -89.9081165491 28.3317004136
object not in US -89.8467351235 28.41252088
3km_pbl1_WSPD10MAX_20081209-1200_23_24_217
object not in US -93.1853051073 28.3187836235
object not in US -93.1607479509 28.5081967714
3km_pbl1_WSPD10MAX_20081209-1200_23_23_218
object not in US -94.8800936242 28.5078481752
3km_pbl1_WSPD10MAX_20081209-1200_23_23_219
object not in US -93.3828491792 28.7183013977
3km_pbl1_WSPD10MAX_20081209-1200_23_24_220
object not in US -92.993955205 29.0787463032
object not in US -92.9972614735 29.1865977244
3km_pbl1_WSPD10MAX_20081209-1200_23_23_221
object not in US -93.9203336938 29.0807096627
3km_pbl1_WSPD10MAX_20081209-1200_23_23_222
object not in US -88.9188860654 29.1631343282
3km_pbl1_WSPD10MAX_20081209-1200_23_23_223
object not in US -88.4793501804 29.617300384
3km_pbl1_WSPD10MAX_20081209-1200_23_23_224
object not in US -93.4081317054 29.4462007039
3km_pbl1_WSPD10MAX_20081209-1200_23_24_225
object not in US -87.848065482 30.0940248162
object not in US -88.2271862774 29.8299339355
3km_pbl1_WSPD10MAX_20081209-1200_24_24_226
object not in US -94.6788524089 24.9329359374
3km_pbl1_WSPD10MAX_20081209-1200_24_24_227
object not in US -96.5877606087 25.1146244748
3km_pbl1_WSPD10MAX_20081209-1200_24_24_228
object not in US -94.7556170312 25.3062921542
3km_pbl1_WSPD10MAX_20081209-1200_24_24_229
object not in US -92.9641055387 26.0612745519
3km_pbl1_WSPD10MAX_20081209-1200_24_24_230
object not in US -93.6204407819 25.9901096371
3km_pbl1_WSPD10MAX_20081209-1200_24_24_231
object not in US -94.4405939818 26.2596185616
3km_pbl1_WSPD10MAX_20081209-1200_24_24_232
object not in US -92.5273345625 26.5552697629
3km_pbl1_WSPD10MAX_20081209-1200_24_24_233
object not in US -92.0834218267 26.9134332824
3km_pbl1_WSPD10MAX_20081209-1200_24_24_234
object not in US -95.4114517333 27.0026381076
3km_pbl1_WSPD10MAX_20081209-1200_24_24_235
object not in US -93.7845465536 27.169998034
3km_pbl1_WSPD10MAX_20081209-1200_24_24_236
object not in US -96.6270915482 27.0791665684
3km_pbl1_WSPD10MAX_20081209-1200_24_24_237
object not in US -92.8829587471 27.4094448526
3km_pbl1_WSPD10MAX_20081209-1200_24_24_238
object not in US -94.700772644 27.3277646497
3km_pbl1_WSPD10MAX_20081209-1200_24_24_239
object not in US -97.0442069338 27.4072611284
3km_pbl1_WSPD10MAX_20081209-1200_24_24_240
object not in US -92.3717337872 27.6087248653
3km_pbl1_WSPD10MAX_20081209-1200_24_24_241
object not in US -94.7135403321 27.5969123778
3km_pbl1_WSPD10MAX_20081209-1200_24_24_242
object not in US -93.0428710963 27.6751914311
3km_pbl1_WSPD10MAX_20081209-1200_24_24_243
object not in US -91.9204273754 27.8589429323
3km_pbl1_WSPD10MAX_20081209-1200_24_24_244
object not in US -93.5351955475 27.8241273832
3km_pbl1_WSPD10MAX_20081209-1200_24_24_245
object not in US -94.0257017316 27.8903626716
3km_pbl1_WSPD10MAX_20081209-1200_24_24_246
object not in US -96.0517693233 28.0795402043
3km_pbl1_WSPD10MAX_20081209-1200_24_24_247
object not in US -95.2640988063 28.222646581
3km_pbl1_WSPD10MAX_20081209-1200_24_24_248
object not in US -95.7302377941 28.337416633
3km_pbl1_WSPD10MAX_20081209-1200_24_24_249
object not in US -89.2918868421 28.8420839171
3km_pbl1_WSPD10MAX_20081209-1200_24_24_250
object not in US -95.4070205895 28.5945247495
3km_pbl1_WSPD10MAX_20081209-1200_24_24_251
object not in US -94.3105512376 28.8252518959
3km_pbl1_WSPD10MAX_20081209-1200_24_24_252
object not in US -93.3594988017 28.9347596202
3km_pbl1_WSPD10MAX_20081209-1200_24_24_253
object not in US -91.8815111545 29.0190021785
3km_pbl1_WSPD10MAX_20081209-1200_24_24_254
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_000
object not in US -99.9752760724 24.4828650099
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_001
object not in US -101.051514237 24.5792157292
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_002
object not in US -100.253226609 24.8910713556
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_003
object not in US -100.541805867 25.3791721597
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_004
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_005
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_006
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_01_01_007
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_03_03_008
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_04_04_009
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_05_05_010
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_05_05_011
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_05_11_012
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_05_05_013
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_06_06_014
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_06_06_015
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_06_06_016
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_06_06_017
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_06_11_018
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_07_07_019
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_07_07_020
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_07_07_021
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_08_08_022
object not in US -79.6829078154 32.5441006233
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_08_08_023
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_09_09_024
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_09_09_025
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_09_09_026
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_10_10_027
object not in US -94.1271196338 28.8583002306
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_10_10_028
object not in US -87.3299655538 29.6525571529
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_10_10_029
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_10_10_030
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_10_11_031
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_11_11_032
object not in US -93.2312842518 29.7206615906
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_11_12_033
object not in US -87.1278279468 30.1879955912
object not in US -87.062960019 30.2675152718
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_11_11_034
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_12_12_035
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_036
object not in US -101.319779847 28.8553933019
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_037
object not in US -94.5546573046 29.4376530188
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_038
object not in US -94.4630398207 29.4678677354
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_039
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_040
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_041
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_042
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_043
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_044
object not in US -79.1499643684 32.1491507532
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_13_13_045
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_20_046
object not in US -101.22623992 26.6971613365
object not in US -101.130320614 26.6516527188
object not in US -101.160284713 26.6489764018
object not in US -101.130320614 26.6516527188
object not in US -101.130320614 26.6516527188
object not in US -101.064441637 26.603420024
object not in US -101.097373184 26.6275403429
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_16_047
object not in US -100.980009405 26.9354593199
object not in US -100.65354401 26.7202933354
object not in US -100.623545284 26.7228485644
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_048
object not in US -101.320109569 27.2570011335
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_049
object not in US -96.6921672713 28.0473252789
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_17_050
object not in US -96.3061028402 28.2291242351
object not in US -96.5290432686 27.8938560705
object not in US -96.6131560281 27.7815042863
object not in US -96.664897885 27.6438202023
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_051
object not in US -97.1227425662 28.0778502633
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_052
object not in US -100.938792194 27.9405457429
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_053
object not in US -95.797760049 28.4423381032
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_054
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_055
object not in US -95.0219731167 28.8802281489
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_19_056
object not in US -94.3580900681 29.2015153919
object not in US -94.0666943171 28.8872252682
object not in US -94.3841254483 29.0926534493
object not in US -94.4052488933 28.8759976213
object not in US -94.6092375434 28.625892246
object not in US -94.7496614381 28.3508711421
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_15_057
object not in US -94.697697977 29.1895123954
object not in US -94.5420872164 29.1681288817
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_16_058
object not in US -93.997451609 29.4562045158
object not in US -94.1201527459 29.4253327561
object not in US -94.0515231488 29.2655588281
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_20_059
object not in US -93.7518166543 29.5175973779
object not in US -93.3415780293 29.3130108575
object not in US -93.0223053678 28.9971369592
object not in US -92.9201728529 28.6757817134
object not in US -92.6655758376 28.3577143773
object not in US -92.5652649335 28.0362176915
object not in US -92.4378273368 27.8230785745
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_15_060
object not in US -94.8371926189 29.508325743
object not in US -94.8075546337 29.5364401688
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_16_061
object not in US -93.2924748508 29.6921213657
object not in US -92.9452485399 29.5116189084
object not in US -92.5683771317 29.3308178532
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_062
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_063
object not in US -78.9955619878 30.7264896982
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_064
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_065
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_14_14_066
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_16_067
object not in US -100.355021094 26.1779080793
object not in US -100.292578029 26.156081516
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_16_068
object not in US -100.772683239 26.1424111699
object not in US -100.734250535 26.0646800012
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_16_069
object not in US -99.9498054884 26.6431988792
object not in US -99.9498054884 26.6431988792
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_070
object not in US -101.076133114 26.9810983842
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_19_071
object not in US -97.1369845984 27.4290270509
object not in US -97.198578188 27.0207043368
object not in US -97.1878175114 27.2911778027
object not in US -97.1606831438 26.9149550116
object not in US -97.1209502117 26.7823428684
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_17_072
object not in US -95.8911946959 27.9521586794
object not in US -95.8640256069 27.4947198945
object not in US -95.8942992117 26.980883757
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_073
object not in US -97.2837901146 27.7716096454
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_16_074
object not in US -101.523741588 27.6988550054
object not in US -101.523741588 27.6988550054
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_075
object not in US -95.3281297899 28.2739500659
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_076
object not in US -95.0264632117 28.3672091277
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_18_077
object not in US -94.9134404574 28.5605428804
object not in US -95.1072484573 28.7418670205
object not in US -95.1154833539 28.3096821055
object not in US -95.3266732006 28.2470230014
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_16_078
object not in US -96.3881442595 28.549068959
object not in US -96.3574982375 28.5506037621
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_079
object not in US -93.7342322291 29.0592878926
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_080
object not in US -93.6148603537 29.1706611672
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_081
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_082
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_083
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_084
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_085
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_086
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_087
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_16_088
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_15_089
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_15_22_090
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_19_091
object not in US -99.6670643177 25.9093495827
object not in US -99.2674381184 25.8049399208
object not in US -99.1016443401 25.62843561
object not in US -99.0278070567 25.4720775079
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_18_092
object not in US -100.850541347 26.0275534069
object not in US -100.82075425 26.0301534508
object not in US -100.695877227 25.9869455229
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_093
object not in US -100.08097607 26.1464128642
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_21_094
object not in US -99.2596132134 26.6962696197
object not in US -99.2246266506 26.6448440307
object not in US -99.1921456363 26.6202338954
object not in US -99.1921456363 26.6202338954
object not in US -99.1921456363 26.6202338954
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_17_095
object not in US -96.6324662032 27.1598115654
object not in US -96.4289627068 27.7640203873
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_096
object not in US -100.853929964 26.8923600441
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_097
object not in US -97.5506803324 27.2699077238
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_098
object not in US -95.3874427041 27.6778309121
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_099
object not in US -97.0310721299 27.650938534
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_100
object not in US -95.9618775106 28.1107942389
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_101
object not in US -94.7698239119 28.1342620779
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_102
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_103
object not in US -101.405741112 27.7366827275
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_104
object not in US -97.1227425662 28.0778502633
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_17_105
object not in US -96.7391953339 28.2878724639
object not in US -96.7391953339 28.2878724639
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_106
object not in US -93.8670956541 28.5156748402
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_18_107
object not in US -93.5374867752 28.741086168
object not in US -93.1905435211 28.4804803285
object not in US -93.2679887184 28.9641134361
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_108
object not in US -93.3567258748 28.8538888885
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_18_109
object not in US -93.5958958635 29.4950627168
object not in US -93.5521292811 29.1454294527
object not in US -93.5711709391 28.8210906429
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_110
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_111
object not in US -91.9882739654 29.7188570354
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_112
object not in US -78.8994779266 32.1011698151
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_17_113
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_16_114
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_16_18_115
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_116
object not in US -98.9650079544 25.7732302459
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_20_117
object not in US -97.8417815159 25.9571249043
object not in US -97.8632143548 25.8479564246
object not in US -97.8313248743 25.8230220218
object not in US -97.8313248743 25.8230220218
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_20_118
object not in US -99.9079051983 25.9173436415
object not in US -99.8457212115 25.8953015393
object not in US -99.6942575181 25.8802402775
object not in US -99.6942575181 25.8802402775
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_19_119
object not in US -99.0009879721 26.1752770201
object not in US -98.9985803411 26.1484670782
object not in US -98.9711132964 26.1774347468
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_18_120
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_121
object not in US -97.0061403961 26.4382672145
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_18_122
object not in US -96.3915638879 26.713851781
object not in US -96.3342025236 26.285533742
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_123
object not in US -95.2128083878 27.2536731667
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_124
object not in US -96.8470484079 27.634065605
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_18_125
object not in US -94.6869851309 27.6788022181
object not in US -94.6111429644 27.3580380219
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_126
object not in US -93.9984980448 27.972128001
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_18_127
object not in US -97.2533994846 27.7733588185
object not in US -97.2514272272 27.7464690972
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_128
object not in US -93.5822310982 28.2812411312
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_129
object not in US -95.7161616731 28.0951238416
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_130
object not in US -100.963184243 27.8842704423
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_19_131
object not in US -92.2527945597 29.0669567815
object not in US -91.9723948446 28.9367099158
object not in US -91.663799579 28.9141257454
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_132
object not in US -92.0430208212 29.3672361637
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_133
object not in US -94.8075546337 29.5364401688
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_134
object not in US -78.8487721544 31.7172984815
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_135
object not in US -78.6181919206 33.1073415403
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_136
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_17_17_137
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_24_138
object not in US -99.1113793599 24.4155017217
object not in US -98.9645812312 24.4263214696
object not in US -98.8764874755 24.432729242
object not in US -98.9058532914 24.4306003255
object not in US -98.8764874755 24.432729242
object not in US -98.8200719321 24.4637046195
object not in US -98.7906947895 24.465813169
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_19_139
object not in US -99.4879186463 24.3331094098
object not in US -99.458593437 24.335376959
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_19_140
object not in US -98.6418698811 25.1493789201
object not in US -98.4074252656 25.192509378
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_141
object not in US -98.3208355605 25.2253094633
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_142
object not in US -97.6691878557 25.2674943317
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_143
object not in US -99.6090809429 25.6170628
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_19_144
object not in US -96.9090708098 25.9047063433
object not in US -97.0340294617 25.9785186955
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_145
object not in US -96.1212083251 26.242290595
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_146
object not in US -95.9875084388 26.5182200801
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_147
object not in US -101.294527391 26.231231595
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_148
object not in US -95.0725276954 26.8820370041
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_149
object not in US -94.9048281156 27.1582288487
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_150
object not in US -94.1036979037 27.564294679
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_151
object not in US -96.1265625917 27.8060351267
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_20_152
object not in US -93.4438265655 27.8266480996
object not in US -93.2235924267 27.6167995488
object not in US -93.0952826529 27.4044083979
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_153
object not in US -95.109891918 28.201964597
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_154
object not in US -93.0569998556 28.1331660705
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_155
object not in US -94.2032420648 28.4780370557
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_156
object not in US -94.1624715202 28.9651047664
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_157
object not in US -91.5792054451 29.4007573707
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_158
object not in US -78.7695450704 32.117262866
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_159
object not in US -78.7057616825 32.382938959
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_18_160
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_19_161
object not in US -78.490122372 33.096329065
object not in US -78.5033258369 32.9890462881
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_19_162
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_18_19_163
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_20_164
object not in US -98.3476971086 24.4698508169
object not in US -98.2551838173 24.4223192415
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_24_165
object not in US -97.2331183017 24.9977663036
object not in US -97.0942177878 24.7099831008
object not in US -97.0185905265 24.4723849775
object not in US -97.4008706527 24.4499335791
object not in US -97.2263563112 24.4872104742
object not in US -96.6967571917 24.5172307162
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_166
object not in US -96.8057954031 25.2642335066
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_167
object not in US -98.8465516544 25.1079317069
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_168
object not in US -98.4958823289 25.5367005555
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_169
object not in US -96.1167434862 25.6769938311
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_170
object not in US -95.7479316681 26.0176788136
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_171
object not in US -96.0743329138 26.4601321195
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_172
object not in US -94.6817502022 26.9241837153
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_20_173
object not in US -93.8168642469 27.2229147513
object not in US -93.5396305267 27.0963026531
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_174
object not in US -96.6237394725 27.4840559931
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_175
object not in US -95.4290394306 27.3254214439
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_20_176
object not in US -95.1166783166 27.7430400108
object not in US -95.1789133474 27.7674792427
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_20_177
object not in US -92.7751663899 27.8969983837
object not in US -92.6771475505 27.6565194196
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_20_178
object not in US -92.2655291508 28.2845789608
object not in US -92.0184547024 28.1808984946
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_179
object not in US -94.0333936072 28.078901649
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_180
object not in US -95.6094081503 28.3698033723
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_181
object not in US -91.9642806099 28.5322761947
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_182
object not in US -94.7515662896 29.0255465724
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_20_183
object not in US -94.8035626027 29.4555840179
object not in US -94.8358533891 29.4813740246
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_19_19_184
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_21_185
object not in US -98.4786232531 24.6222953508
object not in US -98.4197623178 24.6263433909
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_186
object not in US -96.9118485947 24.6397112461
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_187
object not in US -96.4397187791 25.1224361678
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_22_188
object not in US -97.6314580136 25.1621475465
object not in US -97.6274160499 25.1085631554
object not in US -97.5978287032 25.1103886584
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_24_189
object not in US -95.6088947099 25.674082426
object not in US -95.2188480122 25.6372896218
object not in US -95.0201058837 25.2420651286
object not in US -94.8433887853 25.2759999118
object not in US -94.7342516565 24.850219634
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_190
object not in US -95.0318224602 26.0756173822
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_24_191
object not in US -94.6616284629 26.4939027548
object not in US -94.4693684092 26.2316691995
object not in US -94.1308725582 26.0280290182
object not in US -93.8493363063 25.7142319251
object not in US -93.6347951764 25.5593548271
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_21_192
object not in US -100.668946223 26.0162771919
object not in US -100.668946223 26.0162771919
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_193
object not in US -94.250136424 26.7240341629
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_194
object not in US -101.297549933 26.2579945853
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_195
object not in US -96.0345194557 27.2978395978
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_196
object not in US -91.4146128663 28.7283358487
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_197
object not in US -91.111387324 29.1089275326
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_198
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_22_199
object not in US -78.232296718 33.3448741343
object not in US -78.0661676243 33.6283087591
object not in US -78.1900084605 33.4224596256
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_200
object not in US -78.2915007083 33.648201752
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_201
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_20_20_202
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_24_203
object not in US -95.8521436746 24.7215673873
object not in US -95.4772195457 24.9000543682
object not in US -95.4109464475 24.7686207035
object not in US -95.3700806541 24.5555032419
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_204
object not in US -96.3224073298 24.6714277279
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_205
object not in US -96.2372503591 24.7295272395
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_206
object not in US -95.7706790141 25.3706834407
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_207
object not in US -97.8417815159 25.9571249043
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_208
object not in US -97.0809064635 26.2183927542
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_23_209
object not in US -93.9394205346 26.4918282159
object not in US -93.6650357257 26.3924893229
object not in US -93.8762013149 26.4130343396
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_210
object not in US -94.4465523611 26.394027094
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_211
object not in US -96.0126930227 26.4361692304
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_212
object not in US -94.9612780416 27.0751472412
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_213
object not in US -93.0566644595 27.1359176595
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_214
object not in US -92.5796032359 27.4160193282
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_215
object not in US -94.5907919425 27.5744729768
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_216
object not in US -95.0890705502 28.3917052207
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_217
object not in US -94.3552992889 28.4459409392
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_218
object not in US -94.4754158793 29.0625003683
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_21_21_219
object not in US -78.4713493666 32.986276935
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_220
object not in US -95.0807933147 24.6752313099
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_23_221
object not in US -96.8547284585 24.6697915277
object not in US -96.672597422 24.5991705247
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_222
object not in US -95.0928851986 24.9165308657
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_23_223
object not in US -94.4741587587 25.6663832584
object not in US -94.2610304478 25.5663046064
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_224
object not in US -95.0712957555 25.6703151322
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_225
object not in US -94.2712622137 25.8080338004
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_226
object not in US -94.335567779 25.9134281533
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_227
object not in US -96.9028436647 26.6866858652
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_228
object not in US -92.9579172541 26.8689318283
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_229
object not in US -96.4424535446 27.0348341682
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_230
object not in US -94.5480725972 27.3064171606
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_23_231
object not in US -90.3652332685 27.711302136
object not in US -90.2438873539 27.8732774378
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_24_232
object not in US -89.6936386709 28.3583238841
object not in US -89.6630027148 28.3582463809
object not in US -89.9388781984 28.1160641978
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_233
object not in US -93.3865710505 28.8261204486
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_24_234
object not in US -89.3237899161 28.6804523415
object not in US -89.0758742714 28.8946429447
object not in US -89.293635979 28.5993927533
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_24_235
object not in US -88.8265496029 29.135347763
object not in US -88.5149105567 29.3209467662
object not in US -88.5783547273 29.2137594467
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_236
object not in US -93.2842721493 29.4494270817
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_22_22_237
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_238
object not in US -95.6042652438 24.5181895192
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_239
object not in US -97.8179371695 24.8813287304
object not in US -97.8179371695 24.8813287304
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_240
object not in US -93.498965536 25.9397791123
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_241
object not in US -93.3285330966 26.2135128142
object not in US -93.1419755608 26.0031086856
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_242
object not in US -94.2516312602 26.0508742148
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_243
object not in US -93.1554734878 26.433320938
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_244
object not in US -94.4236622704 26.5564154832
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_245
object not in US -92.8318927205 26.6833523965
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_246
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_247
object not in US -92.326167262 26.9630259904
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_248
object not in US -96.696513436 27.2103716858
object not in US -96.6825515435 27.4539632161
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_249
object not in US -95.9691383389 27.2200446971
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_250
object not in US -92.2458685357 27.4224079858
object not in US -92.1845925776 27.3965425601
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_251
object not in US -95.9934594975 27.6235296988
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_252
object not in US -95.2283741793 27.5496571817
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_253
object not in US -94.2119615907 27.9652080815
object not in US -94.1917541922 28.2086340501
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_254
object not in US -94.8734141381 28.3731702632
object not in US -94.8108723761 28.3485684055
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_24_255
object not in US -94.2703958144 28.6107147243
object not in US -94.2171108632 28.8013857835
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_256
object not in US -92.8571531347 28.6232617213
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_257
object not in US -94.3484856804 28.9859028822
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_258
object not in US -93.3415780293 29.3130108575
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_259
object not in US -88.1655031058 29.8020877825
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_23_23_260
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_261
object not in US -94.1167478119 24.9529777958
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_262
object not in US -94.7802276434 25.1978062732
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_263
object not in US -92.7371291529 26.5239359715
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_264
object not in US -95.3252032181 26.5212582499
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_265
object not in US -97.1414263743 26.6463206416
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_266
object not in US -94.2871758222 26.8844049692
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_267
object not in US -92.5979643529 26.9576947005
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_268
object not in US -92.0851095907 26.9941909518
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_269
object not in US -91.0577552142 27.0070470672
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_270
object not in US -97.2287404069 27.018969698
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_271
object not in US -90.6675913007 27.413707799
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_272
object not in US -91.5487775949 27.4867825854
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_273
object not in US -95.3136611003 27.4382131756
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_274
object not in US -92.8315040516 27.7340131478
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_275
object not in US -96.0567276636 28.1602857758
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_276
object not in US -89.571212565 28.3310104688
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_277
object not in US -94.8881332008 28.6694776743
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_278
object not in US -87.8468653991 30.1479788162
1km_on_3km_pbl1_WSPD10MAX_20081209-1200_24_24_279
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2008120912_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20090218-1200_01_01_000
3km_pbl1_WSPD10MAX_20090218-1200_01_01_001
3km_pbl1_WSPD10MAX_20090218-1200_01_01_002
3km_pbl1_WSPD10MAX_20090218-1200_03_04_003
object not in US -78.7684148632 33.4723260915
object not in US -78.5689548006 33.5096085388
3km_pbl1_WSPD10MAX_20090218-1200_03_03_004
object not in US -78.600396231 33.7831988593
3km_pbl1_WSPD10MAX_20090218-1200_05_05_005
object not in US -78.6993211129 32.4366105836
3km_pbl1_WSPD10MAX_20090218-1200_05_05_006
object not in US -78.6475318181 32.8659160757
3km_pbl1_WSPD10MAX_20090218-1200_05_05_007
object not in US -78.0341682515 32.8662669474
3km_pbl1_WSPD10MAX_20090218-1200_06_07_008
object not in US -78.157076887 32.6603342526
object not in US -77.8212255074 32.7655095989
3km_pbl1_WSPD10MAX_20090218-1200_06_06_009
object not in US -79.4418500316 32.6876338199
3km_pbl1_WSPD10MAX_20090218-1200_06_06_010
object not in US -78.2475672642 32.9666767511
3km_pbl1_WSPD10MAX_20090218-1200_06_07_011
object not in US -78.7910353909 33.2845798236
object not in US -79.0314716996 33.1691146213
3km_pbl1_WSPD10MAX_20090218-1200_06_06_012
object not in US -77.7972576964 33.1973094012
3km_pbl1_WSPD10MAX_20090218-1200_07_16_013
object not in US -78.5912425326 33.5927911714
object not in US -78.4880447236 33.638144253
object not in US -78.3270702156 33.6242088252
object not in US -78.1627271571 33.6368806288
object not in US -78.3184895825 33.4337568005
object not in US -78.5985478831 33.2682654773
object not in US -78.1073710545 33.3066882246
object not in US -78.0328979357 33.3813630019
object not in US -78.298259569 33.5945947025
object not in US -78.4458364639 33.7157910242
3km_pbl1_WSPD10MAX_20090218-1200_08_08_014
object not in US -78.7720891272 32.9036096462
3km_pbl1_WSPD10MAX_20090218-1200_08_14_015
object not in US -77.5694206132 33.4474853021
object not in US -77.5944398797 33.2599483092
object not in US -77.5908718414 33.2867412781
object not in US -77.5944398797 33.2599483092
object not in US -77.5980058752 33.2331546999
object not in US -77.5908718414 33.2867412781
object not in US -77.5837296291 33.3403252704
3km_pbl1_WSPD10MAX_20090218-1200_08_09_016
object not in US -77.6409392055 34.1319155317
object not in US -77.6840097552 34.0545540932
3km_pbl1_WSPD10MAX_20090218-1200_10_10_017
3km_pbl1_WSPD10MAX_20090218-1200_11_12_018
object not in US -77.9077011027 32.0951528433
object not in US -77.91113469 32.0683330694
3km_pbl1_WSPD10MAX_20090218-1200_11_11_019
object not in US -79.2774705829 32.9995290826
3km_pbl1_WSPD10MAX_20090218-1200_11_11_020
object not in US -77.673139717 33.8909201381
3km_pbl1_WSPD10MAX_20090218-1200_12_12_021
object not in US -79.2227428681 32.9138352138
3km_pbl1_WSPD10MAX_20090218-1200_12_13_022
object not in US -77.95830572 33.4559918786
object not in US -78.1052208465 33.5775757129
3km_pbl1_WSPD10MAX_20090218-1200_13_15_023
object not in US -80.5532885858 31.553190022
object not in US -80.6400082839 31.6406423763
object not in US -80.6504299523 31.857982706
3km_pbl1_WSPD10MAX_20090218-1200_13_13_024
object not in US -79.0710091795 32.2781485567
3km_pbl1_WSPD10MAX_20090218-1200_13_15_025
3km_pbl1_WSPD10MAX_20090218-1200_13_14_026
object not in US -78.8551679269 32.7479989793
object not in US -78.7530246964 32.7935834824
3km_pbl1_WSPD10MAX_20090218-1200_13_13_027
object not in US -79.0987166318 33.1475434444
3km_pbl1_WSPD10MAX_20090218-1200_14_16_028
object not in US -81.0796738481 31.0216374223
object not in US -80.7552832325 30.7824110358
object not in US -80.695291361 30.7510517131
3km_pbl1_WSPD10MAX_20090218-1200_14_14_029
object not in US -80.4648251456 31.1676489127
3km_pbl1_WSPD10MAX_20090218-1200_14_14_030
object not in US -80.9550111991 31.3379023793
3km_pbl1_WSPD10MAX_20090218-1200_14_15_031
object not in US -79.9455970216 31.5892122221
object not in US -79.733130673 31.7894884596
3km_pbl1_WSPD10MAX_20090218-1200_14_14_032
object not in US -79.6687481321 32.3804691673
3km_pbl1_WSPD10MAX_20090218-1200_15_15_033
object not in US -80.8766006986 31.4948867866
3km_pbl1_WSPD10MAX_20090218-1200_15_17_034
object not in US -80.4624392404 32.1423130415
object not in US -80.4570115931 32.1960693467
object not in US -80.5286237992 32.1200109927
3km_pbl1_WSPD10MAX_20090218-1200_15_20_035
object not in US -79.8798745379 32.5051402791
object not in US -79.4038897557 32.7387850539
object not in US -79.4966456246 32.7732497847
object not in US -79.3689313733 32.7630778207
object not in US -78.7562428017 32.7667518949
object not in US -78.7913601971 32.7426205103
3km_pbl1_WSPD10MAX_20090218-1200_15_21_036
object not in US -78.7557144334 33.3087021204
object not in US -78.7813520083 33.3650464106
object not in US -78.495711799 33.3136363846
object not in US -78.5919848457 33.3219018254
object not in US -78.4370049251 33.5253616653
object not in US -78.0180517645 33.2444662238
object not in US -77.8829006459 33.2864815834
3km_pbl1_WSPD10MAX_20090218-1200_16_16_037
object not in US -79.2841709887 32.3769269414
3km_pbl1_WSPD10MAX_20090218-1200_16_16_038
3km_pbl1_WSPD10MAX_20090218-1200_16_16_039
object not in US -77.8357090741 32.9024740052
3km_pbl1_WSPD10MAX_20090218-1200_16_17_040
3km_pbl1_WSPD10MAX_20090218-1200_17_18_041
object not in US -78.4405494829 32.7124917661
object not in US -78.1604600996 32.6335153486
3km_pbl1_WSPD10MAX_20090218-1200_17_18_042
object not in US -77.7270084731 33.9771728967
object not in US -77.7447644564 33.8432627978
3km_pbl1_WSPD10MAX_20090218-1200_18_18_043
object not in US -86.6863753969 30.3124173473
3km_pbl1_WSPD10MAX_20090218-1200_18_18_044
3km_pbl1_WSPD10MAX_20090218-1200_18_19_045
object not in US -79.6523324358 31.945713925
object not in US -79.2225849962 32.0738040182
3km_pbl1_WSPD10MAX_20090218-1200_18_19_046
object not in US -77.6265740251 34.2390031072
object not in US -77.6840097552 34.0545540932
3km_pbl1_WSPD10MAX_20090218-1200_19_19_047
object not in US -88.481455837 29.4824254113
3km_pbl1_WSPD10MAX_20090218-1200_19_19_048
object not in US -86.2823467524 30.2474592221
3km_pbl1_WSPD10MAX_20090218-1200_19_19_049
object not in US -77.9953817339 31.1533949785
3km_pbl1_WSPD10MAX_20090218-1200_19_23_050
object not in US -80.4914798233 32.171484755
object not in US -80.2553798926 32.2896380836
object not in US -79.5644216004 32.4535421417
object not in US -79.5445260043 32.343604326
object not in US -79.188801816 32.3691550103
3km_pbl1_WSPD10MAX_20090218-1200_19_19_051
object not in US -78.4997412009 32.2295661583
3km_pbl1_WSPD10MAX_20090218-1200_19_23_052
object not in US -78.18745663 32.4189469175
object not in US -78.1320047708 32.6038445847
object not in US -78.0729221878 32.8155143333
object not in US -77.6477940784 33.1021513686
object not in US -77.6796240063 32.8609472838
3km_pbl1_WSPD10MAX_20090218-1200_19_20_053
object not in US -79.3247878827 32.8678940688
object not in US -79.2103728971 33.0211924585
3km_pbl1_WSPD10MAX_20090218-1200_20_20_054
object not in US -88.2659941707 29.3987605805
3km_pbl1_WSPD10MAX_20090218-1200_20_21_055
object not in US -86.2377620198 29.7872300024
object not in US -86.0502589248 29.8086164748
3km_pbl1_WSPD10MAX_20090218-1200_20_20_056
object not in US -79.6832262021 30.7829622498
3km_pbl1_WSPD10MAX_20090218-1200_20_21_057
object not in US -78.2344065782 32.0433857284
object not in US -77.9958638956 32.1574907624
3km_pbl1_WSPD10MAX_20090218-1200_20_20_058
object not in US -79.5932795302 32.4829059963
3km_pbl1_WSPD10MAX_20090218-1200_20_20_059
object not in US -78.1812664804 33.7469189623
3km_pbl1_WSPD10MAX_20090218-1200_21_21_060
object not in US -79.006141878 31.4594674781
3km_pbl1_WSPD10MAX_20090218-1200_21_21_061
object not in US -80.0865341054 31.7624733378
3km_pbl1_WSPD10MAX_20090218-1200_22_22_062
object not in US -86.7927539363 28.992632984
3km_pbl1_WSPD10MAX_20090218-1200_22_23_063
object not in US -79.5827217086 31.1272536458
object not in US -79.2447556235 31.3166635768
3km_pbl1_WSPD10MAX_20090218-1200_22_22_064
object not in US -78.9029485554 32.6164942493
3km_pbl1_WSPD10MAX_20090218-1200_22_24_065
object not in US -78.1014229343 32.8451940208
object not in US -78.1048286677 32.8183794965
object not in US -77.9522112859 32.7503542714
3km_pbl1_WSPD10MAX_20090218-1200_22_22_066
object not in US -77.7981981502 33.6854820783
3km_pbl1_WSPD10MAX_20090218-1200_23_23_067
object not in US -88.0389464232 28.3705327403
3km_pbl1_WSPD10MAX_20090218-1200_23_23_068
object not in US -78.7113213343 30.7291878187
3km_pbl1_WSPD10MAX_20090218-1200_23_24_069
object not in US -80.4989211909 31.143055599
object not in US -80.0592808318 31.1102785419
3km_pbl1_WSPD10MAX_20090218-1200_23_24_070
object not in US -78.7419593259 31.2742653945
object not in US -78.5373879223 31.3920759272
3km_pbl1_WSPD10MAX_20090218-1200_23_23_071
object not in US -80.0837256583 31.7893474491
3km_pbl1_WSPD10MAX_20090218-1200_23_24_072
object not in US -78.5049730186 31.6604743145
object not in US -78.2079325305 31.7425908494
3km_pbl1_WSPD10MAX_20090218-1200_23_24_073
object not in US -78.8931662876 32.1548575981
object not in US -78.9248741462 32.1575270645
3km_pbl1_WSPD10MAX_20090218-1200_23_23_074
object not in US -78.0649963785 33.3842365791
3km_pbl1_WSPD10MAX_20090218-1200_24_24_075
object not in US -86.4435015356 28.4168293756
3km_pbl1_WSPD10MAX_20090218-1200_24_24_076
object not in US -78.9135267833 29.5264679496
3km_pbl1_WSPD10MAX_20090218-1200_24_24_077
object not in US -80.2630329859 30.0422248296
3km_pbl1_WSPD10MAX_20090218-1200_24_24_078
object not in US -79.3424732596 30.1591061045
3km_pbl1_WSPD10MAX_20090218-1200_24_24_079
object not in US -80.6069958539 30.3655917805
3km_pbl1_WSPD10MAX_20090218-1200_24_24_080
object not in US -81.0308965255 30.531015884
3km_pbl1_WSPD10MAX_20090218-1200_24_24_081
object not in US -80.2090973881 31.5008259733
3km_pbl1_WSPD10MAX_20090218-1200_24_24_082
object not in US -79.4970439347 31.9063025403
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_01_01_002
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_01_01_003
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_03_03_004
object not in US -79.2774705829 32.9995290826
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_03_04_005
object not in US -78.9387601202 33.4052651791
object not in US -78.678498227 33.4105542246
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_04_04_006
object not in US -78.3101945817 33.7582211335
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_05_05_007
object not in US -78.8235383768 31.660918197
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_05_05_008
object not in US -78.5826762327 32.0740715066
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_05_06_009
object not in US -78.7851233671 32.5252452147
object not in US -78.5263594103 32.8012798311
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_06_06_010
object not in US -79.3522420443 32.626281353
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_06_06_011
object not in US -77.8565809921 32.7416257913
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_06_13_012
object not in US -78.8584186234 33.2631314732
object not in US -78.5557531244 33.6168546161
object not in US -78.3914542376 33.6298061544
object not in US -78.3626214054 33.6002059848
object not in US -78.0592727176 33.6819024289
object not in US -78.2593043887 33.6453830485
object not in US -78.3169506659 33.7046183965
object not in US -78.4647265534 33.8257820762
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_07_07_013
object not in US -77.7504606824 32.8132479724
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_08_08_014
object not in US -79.1011144489 32.8497249575
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_08_08_015
object not in US -78.8712237762 33.1558257143
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_08_21_016
object not in US -77.5726465223 34.1527331443
object not in US -77.5475270755 34.0962012545
object not in US -77.5547484034 34.0426554449
object not in US -77.5655647696 33.9623306134
object not in US -77.6692997621 33.429624079
object not in US -77.6336359722 33.453446425
object not in US -78.2863663903 33.4309440593
object not in US -78.5334912946 33.5336678098
object not in US -78.4391538423 33.7693996543
object not in US -78.0443399958 33.54504245
object not in US -77.6836633874 33.5665384685
object not in US -77.7479679947 33.5724442753
object not in US -77.6407582079 33.3998645906
object not in US -77.8444401294 33.5812451894
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_09_09_017
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_10_10_018
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_10_12_019
object not in US -78.9954000041 32.6513104388
object not in US -79.0685307866 32.5760667446
object not in US -78.8774418536 32.5601451637
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_10_11_020
object not in US -77.8975553931 33.4233887535
object not in US -77.6728507644 33.4028320361
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_10_10_021
object not in US -77.6122201297 33.6141753301
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_10_10_022
object not in US -78.4747315711 33.7453702817
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_11_11_023
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_11_11_024
object not in US -78.9098235006 33.375777263
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_11_20_025
object not in US -77.5581990399 34.2598110925
object not in US -77.5185581145 34.3103508089
object not in US -77.5258129311 34.2568185708
object not in US -77.5437180654 34.3668751719
object not in US -77.5473414552 34.3401104737
object not in US -77.6121904873 34.1021691842
object not in US -77.5185581145 34.3103508089
object not in US -77.5726465223 34.1527331443
object not in US -77.5545819407 34.2865784278
object not in US -77.5581990399 34.2598110925
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_12_12_026
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_12_12_027
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_12_12_028
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_13_13_029
object not in US -79.0772281694 32.224455172
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_13_14_030
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_13_13_031
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_13_15_032
object not in US -79.0440659604 33.0617850731
object not in US -79.1814694251 32.9917549087
object not in US -79.2010768257 33.1017044786
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_13_13_033
object not in US -78.5442853616 33.1823109797
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_16_034
object not in US -80.7423050737 30.9168695211
object not in US -80.7891682587 30.7577416206
object not in US -80.7917493965 30.7308490924
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_14_035
object not in US -81.106061481 31.0775794573
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_17_036
object not in US -79.7934583035 31.8212848811
object not in US -79.7214843417 31.8969515649
object not in US -80.1153432377 31.7917314797
object not in US -80.0436481855 31.8675744924
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_14_037
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_14_038
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_15_039
object not in US -78.7465829749 32.8472450917
object not in US -78.7465829749 32.8472450917
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_14_040
object not in US -78.5287243288 33.0454519959
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_14_14_041
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_15_042
object not in US -80.5958152986 31.1229986676
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_15_043
object not in US -80.2666503807 31.5592860434
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_17_044
object not in US -80.7506426917 31.8109288697
object not in US -80.565727443 32.0685257259
object not in US -80.4968865108 32.1177264873
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_15_045
object not in US -79.1205643333 31.8485607058
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_15_046
object not in US -79.9750584553 32.2144793811
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_17_047
object not in US -79.671110959 32.6515239111
object not in US -79.3020234188 32.7847905367
object not in US -79.5984041188 32.7270950971
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_15_048
object not in US -78.1150342241 32.7379327435
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_15_15_049
object not in US -77.7051735471 33.6498614288
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_16_16_050
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_16_16_051
object not in US -79.7248081646 31.5720786773
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_16_16_052
object not in US -79.4414500607 32.1186347113
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_16_16_053
object not in US -78.8073691298 32.6084488738
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_16_19_054
object not in US -78.8135652889 33.0968026945
object not in US -78.9032697183 33.1584988744
object not in US -78.4481600468 33.1740104227
object not in US -77.8292857435 33.2002398383
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_17_17_055
object not in US -80.3862068045 30.3764551388
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_17_17_056
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_17_17_057
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_17_22_058
object not in US -80.1169819541 32.387668919
object not in US -79.8277881286 32.3928081764
object not in US -78.8265197892 32.4474272152
object not in US -78.5941861972 32.5089154697
object not in US -78.0183624213 32.485095858
object not in US -78.5053014619 32.4469874761
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_17_18_059
object not in US -77.9418650862 32.8307878378
object not in US -78.6675260093 32.4338873513
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_18_18_060
object not in US -88.4448702478 29.8327423064
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_18_18_061
object not in US -88.0045245206 30.0695477106
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_18_18_062
object not in US -86.7543001527 30.1521730366
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_18_18_063
object not in US -86.3376283868 30.438016944
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_18_20_064
object not in US -78.0547242316 31.1859883198
object not in US -78.0055018698 31.0729095639
object not in US -77.8734098678 31.1149524977
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_18_18_065
object not in US -77.7437726462 33.1110276888
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_066
object not in US -88.4806142745 29.5363745755
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_20_067
object not in US -88.0454993862 29.5844608522
object not in US -87.5829532048 29.4686681592
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_068
object not in US -87.7651154843 29.6338626128
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_069
object not in US -87.2618194809 29.8670257859
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_070
object not in US -87.4788514751 29.8984368252
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_071
object not in US -78.1593798487 30.5985586691
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_072
object not in US -79.3418845375 31.8667078313
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_20_073
object not in US -78.8361354456 31.8246823843
object not in US -78.6749738898 31.8379927671
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_19_19_074
object not in US -78.2931124802 33.3773274959
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_075
object not in US -90.3381081289 28.6817967435
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_076
object not in US -86.9265453461 29.6435571449
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_077
object not in US -77.9790933216 30.5276679986
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_078
object not in US -80.3106803196 32.3749346328
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_079
object not in US -79.5435429119 32.6415187553
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_21_080
object not in US -78.0022476786 32.863384937
object not in US -77.8565809921 32.7416257913
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_081
object not in US -78.4074020997 32.9807152206
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_21_082
object not in US -77.7695370375 33.6557564944
object not in US -77.5691660653 33.9355540627
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_20_20_083
object not in US -78.2559128762 33.6721847543
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_084
object not in US -89.9693302029 28.4665318479
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_085
object not in US -90.2761032982 28.4931981031
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_24_086
object not in US -88.6157560041 28.7556375884
object not in US -88.1277774378 28.533662811
object not in US -87.673894082 28.2565206875
object not in US -87.3438770641 28.0073862173
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_087
object not in US -89.1081502162 28.7330604557
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_088
object not in US -89.7231376424 28.762843448
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_089
object not in US -89.2615065661 28.7879751224
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_090
object not in US -88.1816702278 28.9389939456
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_091
object not in US -86.9058150677 29.3192158841
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_092
object not in US -80.2140294708 30.5260667299
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_23_093
object not in US -79.7540826954 31.0053498857
object not in US -79.328690332 31.1338057068
object not in US -79.2792166245 31.2923902932
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_094
object not in US -80.7373785356 31.6204824933
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_095
object not in US -79.8046961334 32.3097697413
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_096
object not in US -78.8392506499 32.3400705363
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_24_097
object not in US -78.6507825041 32.8390882558
object not in US -78.3148458134 32.945497491
object not in US -78.3248854039 32.865041214
object not in US -77.9668834277 32.8873056237
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_21_21_098
object not in US -77.9608781926 33.1850806978
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_099
object not in US -89.3571746777 28.2761904639
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_100
object not in US -88.6805365109 28.5136241682
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_101
object not in US -87.8822952815 28.5298173131
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_102
object not in US -88.9854216256 28.7051763553
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_103
object not in US -87.907815398 28.7729668851
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_104
object not in US -86.1711436409 29.1104668002
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_105
object not in US -80.5009148693 30.1682849781
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_106
object not in US -79.3180033723 31.5124160048
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_24_107
object not in US -80.3710690812 31.7836503115
object not in US -79.6986056497 31.8138781829
object not in US -79.8365995371 31.7162639538
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_23_108
object not in US -80.3409688534 32.0793130734
object not in US -79.819195361 32.175452005
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_109
object not in US -77.9195496829 32.5032288279
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_22_110
object not in US -79.308144122 32.7311006697
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_22_24_111
object not in US -77.9687069859 33.3755927637
object not in US -77.7691406317 33.4116882206
object not in US -77.9304812275 33.6703591728
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_112
object not in US -88.4733005331 28.0260243226
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_113
object not in US -88.2586447034 28.0771697813
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_114
object not in US -87.3942526467 28.4128896061
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_115
object not in US -86.5604080446 28.5818950955
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_116
object not in US -85.7451172836 28.9620622641
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_117
object not in US -80.3979352226 29.9440173861
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_118
object not in US -80.1883110089 30.469946566
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_24_119
object not in US -79.9732058826 30.7243907952
object not in US -80.2913648427 30.6943979586
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_120
object not in US -80.622201058 30.8541112851
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_24_121
object not in US -77.9096312737 31.5797156496
object not in US -77.9411190767 31.5826215327
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_24_122
object not in US -77.88705871 32.256063399
object not in US -77.943624094 32.3155137594
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_123
object not in US -77.697443293 32.9711173389
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_23_23_124
object not in US -78.3458013207 33.7342256179
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_125
object not in US -87.9897856441 27.776692435
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_126
object not in US -87.0338563752 28.162287699
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_127
object not in US -86.5707577279 28.2854634498
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_128
object not in US -85.7967579352 28.4780370557
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_129
object not in US -85.2922249602 28.7572371697
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_130
object not in US -79.5269882575 29.903212484
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_131
object not in US -80.2603234147 30.0691043245
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_132
object not in US -77.9681197044 30.3638075033
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_133
object not in US -79.4002524641 30.4891189855
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_134
object not in US -78.3399314937 30.6691992502
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_135
object not in US -80.7920712728 31.0557770946
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_136
object not in US -78.7172741684 30.9466786142
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_137
object not in US -80.3992842885 31.1899247157
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_138
object not in US -79.1715141502 31.9611944837
1km_on_3km_pbl1_WSPD10MAX_20090218-1200_24_24_139
object not in US -78.9694777237 32.3239103537
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2009021812_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20091224-1200_01_04_000
object not in US -95.6270805297 26.5349717113
object not in US -95.6571207562 26.533615406
object not in US -95.7731861898 25.9357323785
object not in US -95.7814277216 25.5585162078
3km_pbl1_WSPD10MAX_20091224-1200_01_01_001
object not in US -96.5045667947 27.05860203
3km_pbl1_WSPD10MAX_20091224-1200_01_02_002
object not in US -95.1564674542 27.3368835282
object not in US -95.0158824659 27.5582868772
3km_pbl1_WSPD10MAX_20091224-1200_01_01_003
object not in US -94.7789593471 28.3227888979
3km_pbl1_WSPD10MAX_20091224-1200_01_02_004
object not in US -94.3696648526 28.7692659907
object not in US -94.3212473195 29.0677998872
3km_pbl1_WSPD10MAX_20091224-1200_01_01_005
3km_pbl1_WSPD10MAX_20091224-1200_01_01_006
3km_pbl1_WSPD10MAX_20091224-1200_01_01_007
3km_pbl1_WSPD10MAX_20091224-1200_01_12_008
3km_pbl1_WSPD10MAX_20091224-1200_01_01_009
3km_pbl1_WSPD10MAX_20091224-1200_01_04_010
3km_pbl1_WSPD10MAX_20091224-1200_01_02_011
3km_pbl1_WSPD10MAX_20091224-1200_01_07_012
3km_pbl1_WSPD10MAX_20091224-1200_01_03_013
3km_pbl1_WSPD10MAX_20091224-1200_01_06_014
3km_pbl1_WSPD10MAX_20091224-1200_01_01_015
3km_pbl1_WSPD10MAX_20091224-1200_01_01_016
3km_pbl1_WSPD10MAX_20091224-1200_01_01_017
3km_pbl1_WSPD10MAX_20091224-1200_01_03_018
3km_pbl1_WSPD10MAX_20091224-1200_01_01_019
3km_pbl1_WSPD10MAX_20091224-1200_01_01_020
3km_pbl1_WSPD10MAX_20091224-1200_01_01_021
3km_pbl1_WSPD10MAX_20091224-1200_01_01_022
3km_pbl1_WSPD10MAX_20091224-1200_01_01_023
3km_pbl1_WSPD10MAX_20091224-1200_02_02_024
object not in US -95.3846020928 25.3880851346
3km_pbl1_WSPD10MAX_20091224-1200_02_03_025
object not in US -95.1473302024 25.9901337181
object not in US -95.1959879936 25.7727899307
3km_pbl1_WSPD10MAX_20091224-1200_02_04_026
object not in US -94.761978954 26.7056125387
object not in US -94.3045679362 26.5875037887
object not in US -94.326496671 26.3982449563
3km_pbl1_WSPD10MAX_20091224-1200_02_04_027
object not in US -94.4560014864 27.2827550672
object not in US -94.7838706301 27.1628909533
object not in US -94.8955616229 26.9699187936
3km_pbl1_WSPD10MAX_20091224-1200_02_03_028
object not in US -93.9734179042 28.1077667579
object not in US -93.7699243899 28.3837061799
3km_pbl1_WSPD10MAX_20091224-1200_02_02_029
object not in US -94.3116649391 28.1506651449
3km_pbl1_WSPD10MAX_20091224-1200_02_02_030
object not in US -92.9653334551 28.1353419049
3km_pbl1_WSPD10MAX_20091224-1200_02_02_031
object not in US -94.0717025111 28.2664921992
3km_pbl1_WSPD10MAX_20091224-1200_02_02_032
object not in US -92.5124348756 28.3608329908
3km_pbl1_WSPD10MAX_20091224-1200_02_03_033
object not in US -92.303698379 28.6074962296
object not in US -92.4531907122 28.4428907337
3km_pbl1_WSPD10MAX_20091224-1200_02_03_034
object not in US -93.9084780212 28.7842254274
object not in US -93.9403113848 28.8102307551
3km_pbl1_WSPD10MAX_20091224-1200_02_02_035
object not in US -92.3414746241 28.9035074013
3km_pbl1_WSPD10MAX_20091224-1200_02_03_036
object not in US -88.0017407988 30.2044366036
object not in US -87.9705247929 30.2039510109
3km_pbl1_WSPD10MAX_20091224-1200_02_02_037
3km_pbl1_WSPD10MAX_20091224-1200_02_07_038
3km_pbl1_WSPD10MAX_20091224-1200_02_03_039
3km_pbl1_WSPD10MAX_20091224-1200_02_02_040
3km_pbl1_WSPD10MAX_20091224-1200_03_06_041
object not in US -95.0324151453 24.8921426165
object not in US -94.9167592865 24.9505512493
object not in US -94.697489102 25.3353997581
object not in US -94.5598992761 25.5825677567
3km_pbl1_WSPD10MAX_20091224-1200_03_06_042
object not in US -94.7112505894 25.6307064959
object not in US -94.2701229261 25.7811706769
object not in US -93.4727905014 26.0481266234
object not in US -93.7669142543 25.9050501998
3km_pbl1_WSPD10MAX_20091224-1200_03_03_043
object not in US -94.8510461573 26.0558737683
3km_pbl1_WSPD10MAX_20091224-1200_03_03_044
object not in US -94.1397083709 26.9701846614
3km_pbl1_WSPD10MAX_20091224-1200_03_04_045
object not in US -93.8921467079 27.5979560162
object not in US -93.8879223031 27.4902579171
3km_pbl1_WSPD10MAX_20091224-1200_03_05_046
object not in US -95.3049194669 27.8431851034
object not in US -95.3049194669 27.8431851034
object not in US -95.3628825244 27.7867829223
3km_pbl1_WSPD10MAX_20091224-1200_03_04_047
object not in US -93.3792309342 27.720554517
object not in US -93.4013297575 27.4773696569
3km_pbl1_WSPD10MAX_20091224-1200_03_05_048
object not in US -95.2086716238 28.33288255
object not in US -95.242134895 28.3854844614
object not in US -95.2143786551 28.440606187
3km_pbl1_WSPD10MAX_20091224-1200_03_04_049
object not in US -93.2282836697 28.6953296258
object not in US -93.6108519529 28.2264877199
3km_pbl1_WSPD10MAX_20091224-1200_03_03_050
object not in US -95.0737360126 28.6892168558
3km_pbl1_WSPD10MAX_20091224-1200_03_04_051
object not in US -92.5921432671 29.0605342335
object not in US -92.717029589 29.1119035888
3km_pbl1_WSPD10MAX_20091224-1200_03_03_052
object not in US -91.638858946 29.2651201682
3km_pbl1_WSPD10MAX_20091224-1200_03_03_053
object not in US -93.2277003334 29.6127920447
3km_pbl1_WSPD10MAX_20091224-1200_03_03_054
object not in US -91.7703535496 29.695053495
3km_pbl1_WSPD10MAX_20091224-1200_03_06_055
3km_pbl1_WSPD10MAX_20091224-1200_03_04_056
3km_pbl1_WSPD10MAX_20091224-1200_03_03_057
3km_pbl1_WSPD10MAX_20091224-1200_03_03_058
3km_pbl1_WSPD10MAX_20091224-1200_03_10_059
3km_pbl1_WSPD10MAX_20091224-1200_03_03_060
3km_pbl1_WSPD10MAX_20091224-1200_04_04_061
object not in US -94.3261535281 24.9995459386
3km_pbl1_WSPD10MAX_20091224-1200_04_06_062
object not in US -94.1617520393 25.3276942491
object not in US -93.8637033642 25.3104799521
object not in US -93.8053182789 25.3391679435
3km_pbl1_WSPD10MAX_20091224-1200_04_04_063
object not in US -95.1483197968 25.4250341385
3km_pbl1_WSPD10MAX_20091224-1200_04_06_064
object not in US -100.567040849 25.6199318548
object not in US -100.567040849 25.6199318548
object not in US -100.567040849 25.6199318548
3km_pbl1_WSPD10MAX_20091224-1200_04_06_065
object not in US -95.3038284823 26.1181741057
object not in US -95.1680481864 26.393174336
object not in US -95.2134398846 26.6876222436
3km_pbl1_WSPD10MAX_20091224-1200_04_04_066
object not in US -93.8762013149 26.4130343396
3km_pbl1_WSPD10MAX_20091224-1200_04_07_067
object not in US -93.5836301821 26.6371622993
object not in US -93.0995614249 26.5693177373
object not in US -92.4416967665 26.7454148007
object not in US -92.8882320303 26.5474559422
3km_pbl1_WSPD10MAX_20091224-1200_04_06_068
object not in US -85.5402827833 26.6898075187
object not in US -85.6199791398 26.9350824045
object not in US -85.725695496 27.2890576884
3km_pbl1_WSPD10MAX_20091224-1200_04_04_069
object not in US -95.3653336526 26.7081486821
3km_pbl1_WSPD10MAX_20091224-1200_04_04_070
object not in US -96.9193170194 27.3602114143
3km_pbl1_WSPD10MAX_20091224-1200_04_05_071
object not in US -94.3990117004 27.3656272568
object not in US -94.317448661 27.5841223524
3km_pbl1_WSPD10MAX_20091224-1200_04_08_072
object not in US -92.7957467153 27.546147195
object not in US -92.7009502414 27.4134771408
object not in US -92.1869643231 27.5042752153
object not in US -91.5525695951 27.7292413744
object not in US -91.9120938693 27.427913041
3km_pbl1_WSPD10MAX_20091224-1200_04_04_073
object not in US -93.0247924927 28.0800097042
3km_pbl1_WSPD10MAX_20091224-1200_04_04_074
object not in US -92.8225702026 28.4891726402
3km_pbl1_WSPD10MAX_20091224-1200_04_04_075
object not in US -93.1711812762 28.8316513246
3km_pbl1_WSPD10MAX_20091224-1200_04_05_076
object not in US -92.2823874975 29.0124788694
object not in US -92.1614295329 29.1224862282
3km_pbl1_WSPD10MAX_20091224-1200_04_06_077
object not in US -87.128659669 29.1085362993
object not in US -87.1732268762 29.7031854174
object not in US -87.0686883247 30.0787043853
3km_pbl1_WSPD10MAX_20091224-1200_04_04_078
object not in US -87.3041655177 29.4631217524
3km_pbl1_WSPD10MAX_20091224-1200_04_05_079
object not in US -94.8088867847 29.5633927551
object not in US -94.9032026977 29.5868338893
3km_pbl1_WSPD10MAX_20091224-1200_04_04_080
object not in US -87.2944273808 29.8137377529
3km_pbl1_WSPD10MAX_20091224-1200_04_04_081
object not in US -101.14200944 29.4674297819
3km_pbl1_WSPD10MAX_20091224-1200_04_06_082
object not in US -87.7233491371 30.0918892065
object not in US -87.8468653991 30.1479788162
object not in US -87.9098431803 30.1220247368
3km_pbl1_WSPD10MAX_20091224-1200_04_06_083
object not in US -88.2812595844 30.2894066138
object not in US -88.3129757369 30.2628375985
object not in US -88.2812595844 30.2894066138
3km_pbl1_WSPD10MAX_20091224-1200_04_05_084
3km_pbl1_WSPD10MAX_20091224-1200_04_04_085
3km_pbl1_WSPD10MAX_20091224-1200_04_04_086
3km_pbl1_WSPD10MAX_20091224-1200_04_04_087
3km_pbl1_WSPD10MAX_20091224-1200_04_04_088
3km_pbl1_WSPD10MAX_20091224-1200_04_04_089
3km_pbl1_WSPD10MAX_20091224-1200_05_07_090
object not in US -94.0929470244 26.5676781452
object not in US -94.0962506805 26.6483622229
object not in US -93.8897748755 26.7626795759
3km_pbl1_WSPD10MAX_20091224-1200_05_05_091
object not in US -96.5755862849 26.7582427719
3km_pbl1_WSPD10MAX_20091224-1200_05_06_092
object not in US -94.3835691491 27.0157941666
object not in US -94.2451689834 27.3169975075
3km_pbl1_WSPD10MAX_20091224-1200_05_05_093
object not in US -96.20936892 27.6670575097
3km_pbl1_WSPD10MAX_20091224-1200_05_05_094
object not in US -86.6189298587 27.7744219154
3km_pbl1_WSPD10MAX_20091224-1200_05_05_095
object not in US -92.531282951 27.9021100265
3km_pbl1_WSPD10MAX_20091224-1200_05_05_096
object not in US -94.4924927458 28.0904366987
3km_pbl1_WSPD10MAX_20091224-1200_05_05_097
object not in US -92.455882389 28.5507137953
3km_pbl1_WSPD10MAX_20091224-1200_05_06_098
object not in US -86.9354669773 28.3756925151
object not in US -86.9636030598 28.4572795373
3km_pbl1_WSPD10MAX_20091224-1200_05_08_099
object not in US -91.7518770289 28.6702125657
object not in US -91.664716283 28.968059324
object not in US -91.3888253141 29.0792452775
object not in US -91.4509442845 29.1055305861
3km_pbl1_WSPD10MAX_20091224-1200_05_06_100
object not in US -96.3268512607 28.5521311938
object not in US -96.3574982375 28.5506037621
3km_pbl1_WSPD10MAX_20091224-1200_05_05_101
object not in US -91.4240049708 29.3755940249
3km_pbl1_WSPD10MAX_20091224-1200_05_05_102
object not in US -91.8014070639 29.6946229272
3km_pbl1_WSPD10MAX_20091224-1200_05_05_103
object not in US -88.4725726651 30.0489402031
3km_pbl1_WSPD10MAX_20091224-1200_05_06_104
3km_pbl1_WSPD10MAX_20091224-1200_05_07_105
3km_pbl1_WSPD10MAX_20091224-1200_05_08_106
3km_pbl1_WSPD10MAX_20091224-1200_05_06_107
3km_pbl1_WSPD10MAX_20091224-1200_05_06_108
3km_pbl1_WSPD10MAX_20091224-1200_05_05_109
3km_pbl1_WSPD10MAX_20091224-1200_06_06_110
object not in US -93.5802457827 24.8622800241
3km_pbl1_WSPD10MAX_20091224-1200_06_07_111
object not in US -94.9424176689 24.8689145496
object not in US -94.6221392467 24.9888136412
3km_pbl1_WSPD10MAX_20091224-1200_06_09_112
object not in US -93.1153231136 25.1434960247
object not in US -92.6118306867 25.1820255734
object not in US -92.9092742392 25.2022494195
object not in US -92.7741491547 25.6891319206
3km_pbl1_WSPD10MAX_20091224-1200_06_06_113
object not in US -93.3884816782 25.324405654
3km_pbl1_WSPD10MAX_20091224-1200_06_06_114
object not in US -92.9240101298 25.7125805727
3km_pbl1_WSPD10MAX_20091224-1200_06_07_115
object not in US -94.8692329962 25.8129406248
object not in US -94.9613818023 25.863115886
3km_pbl1_WSPD10MAX_20091224-1200_06_06_116
object not in US -92.7275995408 26.1742923878
3km_pbl1_WSPD10MAX_20091224-1200_06_08_117
object not in US -93.4502542436 26.2640288801
object not in US -93.445636403 26.1296018162
object not in US -93.4184382232 26.2110803286
3km_pbl1_WSPD10MAX_20091224-1200_06_06_118
object not in US -95.4906818651 26.2447244828
3km_pbl1_WSPD10MAX_20091224-1200_06_06_119
object not in US -94.5641482859 26.3359302444
3km_pbl1_WSPD10MAX_20091224-1200_06_06_120
object not in US -93.4716566722 26.8826953029
3km_pbl1_WSPD10MAX_20091224-1200_06_06_121
object not in US -95.3827200468 27.0308308294
3km_pbl1_WSPD10MAX_20091224-1200_06_06_122
object not in US -92.8712807138 27.00560666
3km_pbl1_WSPD10MAX_20091224-1200_06_06_123
object not in US -96.3115024664 26.87968671
3km_pbl1_WSPD10MAX_20091224-1200_06_06_124
object not in US -93.1003261468 27.5659818679
3km_pbl1_WSPD10MAX_20091224-1200_06_06_125
object not in US -95.9630935601 27.6249684883
3km_pbl1_WSPD10MAX_20091224-1200_06_06_126
object not in US -94.5033522684 27.658517981
3km_pbl1_WSPD10MAX_20091224-1200_06_07_127
object not in US -91.8645518324 28.1293341889
object not in US -91.378559675 28.3512196986
3km_pbl1_WSPD10MAX_20091224-1200_06_06_128
object not in US -95.7498144643 28.1475820246
3km_pbl1_WSPD10MAX_20091224-1200_06_06_129
3km_pbl1_WSPD10MAX_20091224-1200_06_06_130
object not in US -87.2581585769 28.8955444409
3km_pbl1_WSPD10MAX_20091224-1200_06_10_131
object not in US -89.2816086418 30.2448467886
object not in US -89.1254423995 30.2438864905
object not in US -88.9712895341 30.0538709993
object not in US -89.3168467563 29.6784280825
object not in US -89.3794668663 29.5978087044
3km_pbl1_WSPD10MAX_20091224-1200_06_06_132
object not in US -90.1562613164 30.3007102583
3km_pbl1_WSPD10MAX_20091224-1200_06_07_133
3km_pbl1_WSPD10MAX_20091224-1200_06_06_134
3km_pbl1_WSPD10MAX_20091224-1200_06_07_135
3km_pbl1_WSPD10MAX_20091224-1200_06_06_136
3km_pbl1_WSPD10MAX_20091224-1200_06_06_137
3km_pbl1_WSPD10MAX_20091224-1200_06_09_138
3km_pbl1_WSPD10MAX_20091224-1200_07_07_139
object not in US -94.6665535511 25.3096840344
3km_pbl1_WSPD10MAX_20091224-1200_07_07_140
object not in US -92.2081420359 25.7273734567
3km_pbl1_WSPD10MAX_20091224-1200_07_07_141
object not in US -93.7578814877 25.6632465894
3km_pbl1_WSPD10MAX_20091224-1200_07_07_142
object not in US -92.4779382438 25.776058192
3km_pbl1_WSPD10MAX_20091224-1200_07_07_143
object not in US -96.7526799607 25.8055673026
3km_pbl1_WSPD10MAX_20091224-1200_07_08_144
object not in US -92.0689081805 26.2138665226
object not in US -91.5605084044 26.3019735863
3km_pbl1_WSPD10MAX_20091224-1200_07_07_145
object not in US -94.169698371 26.242050693
3km_pbl1_WSPD10MAX_20091224-1200_07_08_146
object not in US -92.5293745506 26.6359860256
object not in US -92.4711658149 26.7179136179
3km_pbl1_WSPD10MAX_20091224-1200_07_10_147
object not in US -91.8394305357 26.7826259591
object not in US -91.3588436015 26.9233716387
object not in US -90.6956717215 27.090356736
object not in US -90.1514805214 27.2537738032
3km_pbl1_WSPD10MAX_20091224-1200_07_09_148
object not in US -95.657849396 27.6120463805
object not in US -95.4786106437 27.6739077024
object not in US -95.2079168353 27.7393119273
3km_pbl1_WSPD10MAX_20091224-1200_07_07_149
object not in US -92.3128228304 27.6906656871
3km_pbl1_WSPD10MAX_20091224-1200_07_07_150
object not in US -93.8460061648 27.9768506056
3km_pbl1_WSPD10MAX_20091224-1200_07_07_151
object not in US -94.8256289487 28.0242355348
3km_pbl1_WSPD10MAX_20091224-1200_07_07_152
object not in US -87.4499548695 28.6297761803
3km_pbl1_WSPD10MAX_20091224-1200_07_08_153
object not in US -91.0476241115 28.9206607151
object not in US -90.922601854 28.7328418215
3km_pbl1_WSPD10MAX_20091224-1200_07_07_154
object not in US -91.6092754271 29.3464274019
3km_pbl1_WSPD10MAX_20091224-1200_07_11_155
object not in US -87.9288957519 29.2318897238
object not in US -87.9829057897 29.6104770783
object not in US -88.0324081475 30.2318929958
object not in US -87.8235577433 29.7967690499
object not in US -87.6674930732 29.8210256911
3km_pbl1_WSPD10MAX_20091224-1200_07_07_156
object not in US -89.2553635982 29.5971504302
3km_pbl1_WSPD10MAX_20091224-1200_07_07_157
object not in US -87.5775872802 29.6844396364
3km_pbl1_WSPD10MAX_20091224-1200_07_07_158
3km_pbl1_WSPD10MAX_20091224-1200_07_07_159
object not in US -87.663597411 29.9828738851
3km_pbl1_WSPD10MAX_20091224-1200_07_11_160
object not in US -88.0291078931 30.3937653307
object not in US -88.0006251344 30.258393107
object not in US -87.7626332336 29.7417563271
object not in US -87.8774708666 30.1754715807
object not in US -87.9727871744 30.096040154
3km_pbl1_WSPD10MAX_20091224-1200_07_07_161
3km_pbl1_WSPD10MAX_20091224-1200_07_07_162
3km_pbl1_WSPD10MAX_20091224-1200_07_11_163
3km_pbl1_WSPD10MAX_20091224-1200_07_07_164
3km_pbl1_WSPD10MAX_20091224-1200_07_09_165
3km_pbl1_WSPD10MAX_20091224-1200_07_07_166
3km_pbl1_WSPD10MAX_20091224-1200_07_07_167
3km_pbl1_WSPD10MAX_20091224-1200_07_09_168
3km_pbl1_WSPD10MAX_20091224-1200_07_07_169
3km_pbl1_WSPD10MAX_20091224-1200_07_09_170
3km_pbl1_WSPD10MAX_20091224-1200_07_23_171
3km_pbl1_WSPD10MAX_20091224-1200_07_07_172
3km_pbl1_WSPD10MAX_20091224-1200_07_09_173
3km_pbl1_WSPD10MAX_20091224-1200_07_07_174
3km_pbl1_WSPD10MAX_20091224-1200_08_08_175
object not in US -92.0178452751 25.166285846
3km_pbl1_WSPD10MAX_20091224-1200_08_08_176
object not in US -93.1856087785 25.4910596153
3km_pbl1_WSPD10MAX_20091224-1200_08_08_177
object not in US -92.7443316192 25.6897946456
3km_pbl1_WSPD10MAX_20091224-1200_08_10_178
object not in US -91.6711190982 25.7357600688
object not in US -91.1940183958 25.7681451299
object not in US -90.6272115393 25.8260657699
3km_pbl1_WSPD10MAX_20091224-1200_08_08_179
object not in US -91.2154170868 27.5443188214
3km_pbl1_WSPD10MAX_20091224-1200_08_08_180
object not in US -93.8868676338 27.4633351545
3km_pbl1_WSPD10MAX_20091224-1200_08_10_181
object not in US -90.9458155424 27.9508313632
object not in US -90.4280844012 28.1692673181
object not in US -90.7332509297 28.0870051228
3km_pbl1_WSPD10MAX_20091224-1200_08_08_182
object not in US -90.1526376722 28.0081735456
3km_pbl1_WSPD10MAX_20091224-1200_08_10_183
object not in US -97.2533994846 27.7733588185
object not in US -97.2230077831 27.775100691
object not in US -97.2210437433 27.748210454
3km_pbl1_WSPD10MAX_20091224-1200_08_08_184
object not in US -90.1838170914 28.3585600846
3km_pbl1_WSPD10MAX_20091224-1200_08_08_185
object not in US -90.2152783787 28.7359953919
3km_pbl1_WSPD10MAX_20091224-1200_08_08_186
object not in US -96.3268512607 28.5521311938
3km_pbl1_WSPD10MAX_20091224-1200_08_08_187
object not in US -89.3839083992 28.8964990335
3km_pbl1_WSPD10MAX_20091224-1200_08_09_188
object not in US -87.6494661632 29.2810313026
object not in US -87.6527096313 29.1461930602
3km_pbl1_WSPD10MAX_20091224-1200_08_09_189
object not in US -90.4633463129 29.1668572784
object not in US -90.3699628993 28.9783580917
3km_pbl1_WSPD10MAX_20091224-1200_08_08_190
object not in US -94.8062232201 29.5094878466
3km_pbl1_WSPD10MAX_20091224-1200_08_08_191
3km_pbl1_WSPD10MAX_20091224-1200_08_08_192
3km_pbl1_WSPD10MAX_20091224-1200_08_09_193
3km_pbl1_WSPD10MAX_20091224-1200_08_08_194
3km_pbl1_WSPD10MAX_20091224-1200_08_08_195
3km_pbl1_WSPD10MAX_20091224-1200_08_08_196
3km_pbl1_WSPD10MAX_20091224-1200_08_17_197
3km_pbl1_WSPD10MAX_20091224-1200_08_08_198
3km_pbl1_WSPD10MAX_20091224-1200_08_08_199
3km_pbl1_WSPD10MAX_20091224-1200_08_11_200
3km_pbl1_WSPD10MAX_20091224-1200_09_09_201
object not in US -91.5134557288 25.1734896883
3km_pbl1_WSPD10MAX_20091224-1200_09_10_202
object not in US -90.8712570886 26.416307843
object not in US -90.3008427045 26.5535266078
3km_pbl1_WSPD10MAX_20091224-1200_09_09_203
object not in US -92.3737537424 26.4237049968
3km_pbl1_WSPD10MAX_20091224-1200_09_09_204
object not in US -89.6049755523 27.5495532995
3km_pbl1_WSPD10MAX_20091224-1200_09_10_205
object not in US -89.9695223368 27.8465599963
object not in US -89.847403959 27.9812217165
3km_pbl1_WSPD10MAX_20091224-1200_09_09_206
object not in US -91.2845540787 28.1904466055
3km_pbl1_WSPD10MAX_20091224-1200_09_09_207
object not in US -88.953240589 28.8397577536
3km_pbl1_WSPD10MAX_20091224-1200_09_10_208
object not in US -89.9072534186 29.2485819997
object not in US -89.7835317231 29.2754071103
3km_pbl1_WSPD10MAX_20091224-1200_09_09_209
3km_pbl1_WSPD10MAX_20091224-1200_09_10_210
object not in US -89.0019047995 30.1080766729
object not in US -89.2836083265 29.9750332692
3km_pbl1_WSPD10MAX_20091224-1200_09_09_211
object not in US -90.1874088409 30.2467033924
3km_pbl1_WSPD10MAX_20091224-1200_09_09_212
3km_pbl1_WSPD10MAX_20091224-1200_09_09_213
3km_pbl1_WSPD10MAX_20091224-1200_09_10_214
3km_pbl1_WSPD10MAX_20091224-1200_09_16_215
3km_pbl1_WSPD10MAX_20091224-1200_09_09_216
3km_pbl1_WSPD10MAX_20091224-1200_09_10_217
3km_pbl1_WSPD10MAX_20091224-1200_09_09_218
3km_pbl1_WSPD10MAX_20091224-1200_09_18_219
3km_pbl1_WSPD10MAX_20091224-1200_09_10_220
3km_pbl1_WSPD10MAX_20091224-1200_09_14_221
3km_pbl1_WSPD10MAX_20091224-1200_09_10_222
3km_pbl1_WSPD10MAX_20091224-1200_09_10_223
3km_pbl1_WSPD10MAX_20091224-1200_09_10_224
3km_pbl1_WSPD10MAX_20091224-1200_10_12_225
object not in US -90.8895957889 25.0989856019
object not in US -90.444804923 25.1013873217
object not in US -90.0 25.1021879097
3km_pbl1_WSPD10MAX_20091224-1200_10_10_226
object not in US -96.6529652792 26.10725539
3km_pbl1_WSPD10MAX_20091224-1200_10_10_227
object not in US -95.0407666618 27.449426518
3km_pbl1_WSPD10MAX_20091224-1200_10_10_228
object not in US -89.2056468002 28.0866371524
3km_pbl1_WSPD10MAX_20091224-1200_10_12_229
object not in US -89.6933868286 28.4392047246
object not in US -89.1393754779 28.6793412802
object not in US -89.079674558 28.4901710904
3km_pbl1_WSPD10MAX_20091224-1200_10_12_230
object not in US -88.6161364168 28.7286730479
object not in US -88.5132663262 29.4288395487
object not in US -88.4581550468 28.9965726512
3km_pbl1_WSPD10MAX_20091224-1200_10_12_231
object not in US -86.3037400998 28.8714963678
object not in US -86.3213605565 29.2228214419
object not in US -86.4797097539 29.1193226581
3km_pbl1_WSPD10MAX_20091224-1200_10_10_232
object not in US -90.1847783108 28.8708814246
3km_pbl1_WSPD10MAX_20091224-1200_10_11_233
object not in US -88.826873341 29.1083768691
object not in US -88.7933407501 29.323866756
3km_pbl1_WSPD10MAX_20091224-1200_10_10_234
object not in US -87.5849593038 29.3877584705
3km_pbl1_WSPD10MAX_20091224-1200_10_10_235
object not in US -94.3950338282 29.3352289155
3km_pbl1_WSPD10MAX_20091224-1200_10_10_236
object not in US -94.8062232201 29.5094878466
3km_pbl1_WSPD10MAX_20091224-1200_10_10_237
object not in US -88.4084635719 30.1561052071
3km_pbl1_WSPD10MAX_20091224-1200_10_10_238
object not in US -89.5635672955 30.0572272444
3km_pbl1_WSPD10MAX_20091224-1200_10_13_239
object not in US -88.9712895341 30.0538709993
object not in US -88.9401183267 30.0536191918
object not in US -88.5632765004 30.2388705028
object not in US -88.0609276513 30.3672576957
3km_pbl1_WSPD10MAX_20091224-1200_10_10_240
object not in US -86.8202299722 30.0458392305
3km_pbl1_WSPD10MAX_20091224-1200_10_10_241
object not in US -89.1879085216 30.2442932038
3km_pbl1_WSPD10MAX_20091224-1200_10_10_242
object not in US -88.0280053469 30.4477235395
3km_pbl1_WSPD10MAX_20091224-1200_10_10_243
object not in US -86.8113488263 30.3155528479
3km_pbl1_WSPD10MAX_20091224-1200_10_11_244
3km_pbl1_WSPD10MAX_20091224-1200_10_11_245
3km_pbl1_WSPD10MAX_20091224-1200_10_11_246
3km_pbl1_WSPD10MAX_20091224-1200_10_10_247
3km_pbl1_WSPD10MAX_20091224-1200_10_16_248
3km_pbl1_WSPD10MAX_20091224-1200_10_10_249
3km_pbl1_WSPD10MAX_20091224-1200_10_15_250
3km_pbl1_WSPD10MAX_20091224-1200_11_11_251
object not in US -90.0 25.88141822
3km_pbl1_WSPD10MAX_20091224-1200_11_11_252
object not in US -95.4264073852 26.1667482238
3km_pbl1_WSPD10MAX_20091224-1200_11_11_253
object not in US -89.8794682387 26.7153119611
3km_pbl1_WSPD10MAX_20091224-1200_11_13_254
object not in US -89.4871910186 26.8219934513
object not in US -88.9425303842 26.9801231482
object not in US -88.3347380089 27.1889788036
3km_pbl1_WSPD10MAX_20091224-1200_11_13_255
object not in US -94.9310656167 27.0763371382
object not in US -94.8234814016 26.730199171
object not in US -94.988010471 26.4004978741
3km_pbl1_WSPD10MAX_20091224-1200_11_13_256
object not in US -89.4838515823 27.4682955931
object not in US -88.8133549321 27.6793130635
object not in US -88.3224833317 27.9163007457
3km_pbl1_WSPD10MAX_20091224-1200_11_11_257
object not in US -88.4182827628 27.6480383742
3km_pbl1_WSPD10MAX_20091224-1200_11_11_258
object not in US -86.5976342176 28.3940729146
3km_pbl1_WSPD10MAX_20091224-1200_11_11_259
object not in US -86.8963393509 28.6444718589
3km_pbl1_WSPD10MAX_20091224-1200_11_12_260
object not in US -88.3448590213 28.4018455962
object not in US -88.560177625 28.350540678
3km_pbl1_WSPD10MAX_20091224-1200_11_11_261
object not in US -88.0923824252 28.7758585992
3km_pbl1_WSPD10MAX_20091224-1200_11_15_262
object not in US -87.4071418014 29.0874987079
object not in US -87.3602685968 29.6801682237
object not in US -87.2876442853 30.0564937823
object not in US -87.1957156323 30.0005521581
object not in US -87.0038450859 30.1581927846
3km_pbl1_WSPD10MAX_20091224-1200_11_11_263
object not in US -89.4750199553 29.1396465018
3km_pbl1_WSPD10MAX_20091224-1200_11_11_264
object not in US -87.0865470222 29.4853573513
3km_pbl1_WSPD10MAX_20091224-1200_11_12_265
3km_pbl1_WSPD10MAX_20091224-1200_11_11_266
3km_pbl1_WSPD10MAX_20091224-1200_11_11_267
3km_pbl1_WSPD10MAX_20091224-1200_11_11_268
3km_pbl1_WSPD10MAX_20091224-1200_11_12_269
3km_pbl1_WSPD10MAX_20091224-1200_11_11_270
3km_pbl1_WSPD10MAX_20091224-1200_11_16_271
3km_pbl1_WSPD10MAX_20091224-1200_11_12_272
3km_pbl1_WSPD10MAX_20091224-1200_11_22_273
3km_pbl1_WSPD10MAX_20091224-1200_11_13_274
3km_pbl1_WSPD10MAX_20091224-1200_11_11_275
3km_pbl1_WSPD10MAX_20091224-1200_12_14_276
object not in US -89.4917128096 25.9341544469
object not in US -88.9823589733 26.0385962356
object not in US -88.4133153862 26.0595411087
3km_pbl1_WSPD10MAX_20091224-1200_12_12_277
object not in US -94.6148942977 27.4387800221
3km_pbl1_WSPD10MAX_20091224-1200_12_14_278
object not in US -86.6262747048 27.5589684379
object not in US -86.4478887345 27.4462596792
object not in US -86.4107349195 27.6338889479
3km_pbl1_WSPD10MAX_20091224-1200_12_13_279
object not in US -87.1943499869 27.8963264003
object not in US -87.2894950119 27.7636198097
3km_pbl1_WSPD10MAX_20091224-1200_12_12_280
object not in US -87.8016992023 28.0161551021
3km_pbl1_WSPD10MAX_20091224-1200_12_17_281
object not in US -85.8059532572 28.2625103943
object not in US -85.8113386711 28.8562964821
object not in US -85.7893286202 29.3684065895
object not in US -85.7407283905 29.7717605957
object not in US -85.7729621697 29.7458233721
object not in US -85.7144296548 29.6628930655
3km_pbl1_WSPD10MAX_20091224-1200_12_20_282
object not in US -94.3187428137 28.3122869006
object not in US -94.2366786266 27.8295389358
object not in US -93.9690830708 28.0000219229
object not in US -93.7798518131 27.8440156046
object not in US -93.6295243065 27.9023444991
object not in US -93.5361583259 27.8510621175
object not in US -93.5569350093 27.5808916928
object not in US -93.4391445806 27.691980423
object not in US -93.3506283373 27.7752323499
3km_pbl1_WSPD10MAX_20091224-1200_12_12_283
object not in US -86.1931953589 28.5444706261
3km_pbl1_WSPD10MAX_20091224-1200_12_15_284
object not in US -87.7914559668 28.4743391079
object not in US -88.0357193901 28.5322761947
object not in US -87.4156950422 28.7639512489
object not in US -87.0076951961 29.0248228048
3km_pbl1_WSPD10MAX_20091224-1200_12_12_285
object not in US -86.6657953225 29.0973190808
3km_pbl1_WSPD10MAX_20091224-1200_12_12_286
object not in US -92.3215394244 29.3625016174
3km_pbl1_WSPD10MAX_20091224-1200_12_12_287
object not in US -88.4478900114 29.6439057169
3km_pbl1_WSPD10MAX_20091224-1200_12_19_288
object not in US -93.5978886507 29.548989244
object not in US -93.6578502834 29.4933142308
object not in US -93.4429073049 29.5532322694
object not in US -93.6847450093 29.3845821676
object not in US -93.6218582493 29.3593821323
object not in US -93.2461172735 29.2345045863
object not in US -92.3164138511 29.146755114
object not in US -90.924634806 28.9485800561
3km_pbl1_WSPD10MAX_20091224-1200_12_16_289
object not in US -86.5212754959 29.6872243935
object not in US -86.4552621014 29.7933952382
object not in US -86.4726173882 30.171794492
object not in US -86.505761715 30.1187032412
object not in US -86.1585522998 30.2168471577
3km_pbl1_WSPD10MAX_20091224-1200_12_12_290
object not in US -86.888612123 29.8585641087
3km_pbl1_WSPD10MAX_20091224-1200_12_12_291
object not in US -94.8088867847 29.5633927551
3km_pbl1_WSPD10MAX_20091224-1200_12_12_292
object not in US -87.0941910044 30.2682196644
3km_pbl1_WSPD10MAX_20091224-1200_12_12_293
object not in US -81.2476576297 30.2210398899
3km_pbl1_WSPD10MAX_20091224-1200_12_12_294
3km_pbl1_WSPD10MAX_20091224-1200_12_12_295
3km_pbl1_WSPD10MAX_20091224-1200_12_12_296
3km_pbl1_WSPD10MAX_20091224-1200_12_15_297
3km_pbl1_WSPD10MAX_20091224-1200_12_15_298
3km_pbl1_WSPD10MAX_20091224-1200_12_12_299
3km_pbl1_WSPD10MAX_20091224-1200_12_12_300
3km_pbl1_WSPD10MAX_20091224-1200_12_15_301
3km_pbl1_WSPD10MAX_20091224-1200_12_12_302
3km_pbl1_WSPD10MAX_20091224-1200_12_12_303
3km_pbl1_WSPD10MAX_20091224-1200_12_12_304
3km_pbl1_WSPD10MAX_20091224-1200_12_12_305
3km_pbl1_WSPD10MAX_20091224-1200_12_12_306
3km_pbl1_WSPD10MAX_20091224-1200_12_15_307
3km_pbl1_WSPD10MAX_20091224-1200_13_13_308
object not in US -89.2868059764 25.3149966457
3km_pbl1_WSPD10MAX_20091224-1200_13_15_309
object not in US -94.75941662 26.6518311038
object not in US -94.4958685096 26.8232110059
object not in US -94.4633211648 26.7704936408
3km_pbl1_WSPD10MAX_20091224-1200_13_14_310
object not in US -96.3279889379 26.6631658008
object not in US -96.4164660424 26.6316998158
3km_pbl1_WSPD10MAX_20091224-1200_13_13_311
object not in US -86.8794634695 27.2421139486
3km_pbl1_WSPD10MAX_20091224-1200_13_15_312
object not in US -86.5124225847 28.2029641669
object not in US -86.3950898762 28.9010900401
object not in US -86.191492095 29.3809699391
3km_pbl1_WSPD10MAX_20091224-1200_13_14_313
object not in US -85.1717369526 28.0780916343
object not in US -85.2039817306 28.6729771889
3km_pbl1_WSPD10MAX_20091224-1200_13_13_314
object not in US -96.3211027908 27.9854011578
3km_pbl1_WSPD10MAX_20091224-1200_13_13_315
object not in US -92.541672165 28.3063197613
3km_pbl1_WSPD10MAX_20091224-1200_13_13_316
object not in US -95.7239731985 28.2297255169
3km_pbl1_WSPD10MAX_20091224-1200_13_13_317
object not in US -94.9332855728 28.3438745446
3km_pbl1_WSPD10MAX_20091224-1200_13_17_318
object not in US -93.9413952485 28.837181973
object not in US -93.8162242096 28.7870173818
object not in US -93.8755963267 28.7312621092
object not in US -94.4692552797 28.9277552012
object not in US -94.3105512376 28.8252518959
3km_pbl1_WSPD10MAX_20091224-1200_13_14_319
object not in US -92.311947502 28.9579957226
object not in US -91.6334426352 28.9414897303
3km_pbl1_WSPD10MAX_20091224-1200_13_13_320
object not in US -87.9266048671 29.3397692471
3km_pbl1_WSPD10MAX_20091224-1200_13_13_321
object not in US -91.8893223385 29.4235493607
3km_pbl1_WSPD10MAX_20091224-1200_13_13_322
object not in US -87.919701707 29.6634368984
3km_pbl1_WSPD10MAX_20091224-1200_13_13_323
3km_pbl1_WSPD10MAX_20091224-1200_13_14_324
3km_pbl1_WSPD10MAX_20091224-1200_13_14_325
3km_pbl1_WSPD10MAX_20091224-1200_13_13_326
3km_pbl1_WSPD10MAX_20091224-1200_13_13_327
3km_pbl1_WSPD10MAX_20091224-1200_13_16_328
3km_pbl1_WSPD10MAX_20091224-1200_13_16_329
3km_pbl1_WSPD10MAX_20091224-1200_13_19_330
3km_pbl1_WSPD10MAX_20091224-1200_13_13_331
3km_pbl1_WSPD10MAX_20091224-1200_13_14_332
3km_pbl1_WSPD10MAX_20091224-1200_13_15_333
3km_pbl1_WSPD10MAX_20091224-1200_13_13_334
3km_pbl1_WSPD10MAX_20091224-1200_14_18_335
object not in US -95.4893635426 24.5770941476
object not in US -95.4038123671 24.6346060278
object not in US -95.4332951297 24.6333072536
object not in US -95.4922583861 24.6306885317
object not in US -95.4066637424 24.6882080468
3km_pbl1_WSPD10MAX_20091224-1200_14_14_336
object not in US -95.497567584 25.2755358837
3km_pbl1_WSPD10MAX_20091224-1200_14_14_337
object not in US -88.7516138028 25.3376205503
3km_pbl1_WSPD10MAX_20091224-1200_14_14_338
object not in US -95.2188480122 25.6372896218
3km_pbl1_WSPD10MAX_20091224-1200_14_15_339
object not in US -95.1229223529 26.0988240416
object not in US -95.4745474873 25.9492407656
3km_pbl1_WSPD10MAX_20091224-1200_14_14_340
object not in US -96.2608653633 26.0737201221
3km_pbl1_WSPD10MAX_20091224-1200_14_14_341
object not in US -95.8609638538 26.9285237746
3km_pbl1_WSPD10MAX_20091224-1200_14_14_342
object not in US -95.4504642063 27.1627082876
3km_pbl1_WSPD10MAX_20091224-1200_14_14_343
object not in US -87.7231727511 27.4487960317
3km_pbl1_WSPD10MAX_20091224-1200_14_14_344
object not in US -86.023188503 27.4335744261
3km_pbl1_WSPD10MAX_20091224-1200_14_14_345
object not in US -88.3003262854 27.4309561253
3km_pbl1_WSPD10MAX_20091224-1200_14_16_346
object not in US -85.6391496665 27.8792561953
object not in US -85.6530371086 28.2573674857
object not in US -85.7083339138 28.3941425086
3km_pbl1_WSPD10MAX_20091224-1200_14_14_347
object not in US -87.5222645313 28.1997262076
3km_pbl1_WSPD10MAX_20091224-1200_14_16_348
object not in US -86.3320016089 28.1169685922
object not in US -86.1952822873 28.4905765314
object not in US -85.9607522235 28.969057568
3km_pbl1_WSPD10MAX_20091224-1200_14_18_349
object not in US -96.053421202 28.1064548315
object not in US -96.0163385688 28.0002518657
object not in US -96.1332386461 27.9136682738
object not in US -96.2601573113 27.9884299178
object not in US -96.385525906 28.036159761
3km_pbl1_WSPD10MAX_20091224-1200_14_15_350
object not in US -95.4198516976 28.2700674883
object not in US -95.4489341361 28.2418330445
3km_pbl1_WSPD10MAX_20091224-1200_14_17_351
object not in US -94.7294100622 28.5675115892
object not in US -94.9400450513 28.4785464718
object not in US -95.1168831241 28.3366128175
object not in US -95.1488889494 28.3623076293
3km_pbl1_WSPD10MAX_20091224-1200_14_14_352
object not in US -87.6218334712 29.1456235655
3km_pbl1_WSPD10MAX_20091224-1200_14_15_353
object not in US -86.870563582 29.4532921597
object not in US -86.9291007115 29.5626535928
3km_pbl1_WSPD10MAX_20091224-1200_14_14_354
3km_pbl1_WSPD10MAX_20091224-1200_14_14_355
3km_pbl1_WSPD10MAX_20091224-1200_14_17_356
3km_pbl1_WSPD10MAX_20091224-1200_14_14_357
3km_pbl1_WSPD10MAX_20091224-1200_14_17_358
3km_pbl1_WSPD10MAX_20091224-1200_14_17_359
3km_pbl1_WSPD10MAX_20091224-1200_14_14_360
3km_pbl1_WSPD10MAX_20091224-1200_14_15_361
3km_pbl1_WSPD10MAX_20091224-1200_15_15_362
object not in US -96.2093827045 25.7262311048
3km_pbl1_WSPD10MAX_20091224-1200_15_15_363
object not in US -87.9643418535 26.053011993
3km_pbl1_WSPD10MAX_20091224-1200_15_16_364
object not in US -86.6372323531 27.2358729397
object not in US -86.6648014049 27.3174431877
3km_pbl1_WSPD10MAX_20091224-1200_15_15_365
object not in US -87.7583868291 27.2339013899
3km_pbl1_WSPD10MAX_20091224-1200_15_16_366
object not in US -85.3155616419 27.6249622673
object not in US -85.2022580215 28.079250638
3km_pbl1_WSPD10MAX_20091224-1200_15_16_367
object not in US -87.1372841214 27.760264867
object not in US -86.6124768422 27.9629780551
3km_pbl1_WSPD10MAX_20091224-1200_15_15_368
object not in US -96.7752931981 27.4759962555
3km_pbl1_WSPD10MAX_20091224-1200_15_18_369
object not in US -96.3985602233 27.765564076
object not in US -96.4558523655 27.7086677142
object not in US -96.7955650196 27.7718228828
object not in US -96.7421017363 27.8826757384
3km_pbl1_WSPD10MAX_20091224-1200_15_21_370
object not in US -95.9973041913 28.1901049193
object not in US -95.868723729 28.0881504333
object not in US -96.058382248 28.1872020812
object not in US -96.1567197377 28.2904582002
object not in US -96.1499925465 28.1827927431
object not in US -96.2161553989 28.2605621338
object not in US -96.2450062175 28.2321463401
3km_pbl1_WSPD10MAX_20091224-1200_15_16_371
object not in US -86.807706511 28.5343833037
object not in US -86.3345201426 28.8723833521
3km_pbl1_WSPD10MAX_20091224-1200_15_15_372
object not in US -96.1295030654 28.345773829
3km_pbl1_WSPD10MAX_20091224-1200_15_15_373
object not in US -94.6193801369 28.8414404092
3km_pbl1_WSPD10MAX_20091224-1200_15_15_374
object not in US -90.7703221853 28.9226324355
3km_pbl1_WSPD10MAX_20091224-1200_15_15_375
object not in US -90.4939629564 29.1127971516
3km_pbl1_WSPD10MAX_20091224-1200_15_17_376
object not in US -93.225911353 29.5588587794
object not in US -92.6346138884 29.4913758046
object not in US -91.919226443 29.3691464662
3km_pbl1_WSPD10MAX_20091224-1200_15_15_377
object not in US -84.1741218109 29.9535687262
3km_pbl1_WSPD10MAX_20091224-1200_15_15_378
3km_pbl1_WSPD10MAX_20091224-1200_15_15_379
3km_pbl1_WSPD10MAX_20091224-1200_15_15_380
3km_pbl1_WSPD10MAX_20091224-1200_15_16_381
3km_pbl1_WSPD10MAX_20091224-1200_15_15_382
object not in US -79.7088909617 32.6002940011
3km_pbl1_WSPD10MAX_20091224-1200_15_15_383
3km_pbl1_WSPD10MAX_20091224-1200_15_16_384
3km_pbl1_WSPD10MAX_20091224-1200_15_15_385
3km_pbl1_WSPD10MAX_20091224-1200_15_15_386
3km_pbl1_WSPD10MAX_20091224-1200_15_16_387
3km_pbl1_WSPD10MAX_20091224-1200_15_15_388
3km_pbl1_WSPD10MAX_20091224-1200_15_18_389
3km_pbl1_WSPD10MAX_20091224-1200_15_15_390
3km_pbl1_WSPD10MAX_20091224-1200_15_19_391
3km_pbl1_WSPD10MAX_20091224-1200_15_17_392
3km_pbl1_WSPD10MAX_20091224-1200_16_16_393
object not in US -87.6625607556 26.1553153454
3km_pbl1_WSPD10MAX_20091224-1200_16_16_394
object not in US -87.3544936475 26.4720750679
3km_pbl1_WSPD10MAX_20091224-1200_16_16_395
object not in US -87.0364884305 27.0573350663
3km_pbl1_WSPD10MAX_20091224-1200_16_16_396
object not in US -96.5010553285 27.004840373
3km_pbl1_WSPD10MAX_20091224-1200_16_16_397
object not in US -95.31078104 27.3843993917
3km_pbl1_WSPD10MAX_20091224-1200_16_16_398
object not in US -86.3763998414 27.7407426603
3km_pbl1_WSPD10MAX_20091224-1200_16_16_399
object not in US -94.6287015331 27.7348880983
3km_pbl1_WSPD10MAX_20091224-1200_16_16_400
object not in US -85.7552315598 28.0180549515
3km_pbl1_WSPD10MAX_20091224-1200_16_16_401
object not in US -95.3775149887 28.0559740406
3km_pbl1_WSPD10MAX_20091224-1200_16_16_402
object not in US -84.5540432579 28.1879835927
3km_pbl1_WSPD10MAX_20091224-1200_16_16_403
object not in US -84.7827631402 28.4944710246
3km_pbl1_WSPD10MAX_20091224-1200_16_18_404
object not in US -85.3408886826 29.0289480349
object not in US -85.1049375648 29.4251268613
object not in US -84.9714368802 29.6089978211
3km_pbl1_WSPD10MAX_20091224-1200_16_16_405
object not in US -91.7077717195 29.6689165449
3km_pbl1_WSPD10MAX_20091224-1200_16_18_406
object not in US -84.0219678804 29.8925701259
object not in US -84.2068319382 29.9280244066
object not in US -84.2459239893 29.7946941074
3km_pbl1_WSPD10MAX_20091224-1200_16_17_407
object not in US -88.9077301523 30.1612823818
object not in US -88.78256913 30.1871493414
3km_pbl1_WSPD10MAX_20091224-1200_16_21_408
object not in US -90.093652202 30.1928400885
object not in US -90.093652202 30.1928400885
object not in US -90.093652202 30.1928400885
object not in US -90.0624348094 30.1928589077
object not in US -90.0624348094 30.1928589077
object not in US -90.0624173959 30.1658766082
3km_pbl1_WSPD10MAX_20091224-1200_16_16_409
3km_pbl1_WSPD10MAX_20091224-1200_16_17_410
3km_pbl1_WSPD10MAX_20091224-1200_16_16_411
object not in US -80.8811247715 31.1161851199
3km_pbl1_WSPD10MAX_20091224-1200_16_17_412
3km_pbl1_WSPD10MAX_20091224-1200_16_19_413
object not in US -79.0934483965 32.3613144081
object not in US -79.2976629728 32.5405988203
object not in US -79.5255804787 32.80262309
object not in US -79.452639819 32.8781076654
3km_pbl1_WSPD10MAX_20091224-1200_16_16_414
object not in US -79.8712014007 32.5857231482
3km_pbl1_WSPD10MAX_20091224-1200_16_16_415
3km_pbl1_WSPD10MAX_20091224-1200_16_20_416
3km_pbl1_WSPD10MAX_20091224-1200_16_17_417
3km_pbl1_WSPD10MAX_20091224-1200_16_18_418
3km_pbl1_WSPD10MAX_20091224-1200_16_17_419
3km_pbl1_WSPD10MAX_20091224-1200_16_22_420
3km_pbl1_WSPD10MAX_20091224-1200_16_16_421
3km_pbl1_WSPD10MAX_20091224-1200_16_16_422
3km_pbl1_WSPD10MAX_20091224-1200_16_16_423
3km_pbl1_WSPD10MAX_20091224-1200_16_16_424
3km_pbl1_WSPD10MAX_20091224-1200_17_18_425
object not in US -97.1529680043 26.807491235
object not in US -97.2831642145 26.9348762182
3km_pbl1_WSPD10MAX_20091224-1200_17_17_426
object not in US -94.2871758222 26.8844049692
3km_pbl1_WSPD10MAX_20091224-1200_17_17_427
object not in US -96.1203410544 27.2127738523
3km_pbl1_WSPD10MAX_20091224-1200_17_17_428
object not in US -86.4224011788 27.3107883364
3km_pbl1_WSPD10MAX_20091224-1200_17_18_429
object not in US -95.7077294639 27.4209738715
object not in US -95.8656168561 27.5216227557
3km_pbl1_WSPD10MAX_20091224-1200_17_17_430
object not in US -95.1966097991 27.5240003171
3km_pbl1_WSPD10MAX_20091224-1200_17_17_431
object not in US -86.1014994514 27.7595236783
3km_pbl1_WSPD10MAX_20091224-1200_17_18_432
object not in US -84.9594853943 28.0428471054
object not in US -84.8205065321 28.3610638419
3km_pbl1_WSPD10MAX_20091224-1200_17_18_433
object not in US -94.4522411665 27.8760732006
object not in US -94.5461025114 27.9266791047
3km_pbl1_WSPD10MAX_20091224-1200_17_17_434
object not in US -97.3121909782 27.7429644887
3km_pbl1_WSPD10MAX_20091224-1200_17_17_435
object not in US -85.9294106902 28.239552582
3km_pbl1_WSPD10MAX_20091224-1200_17_17_436
object not in US -94.1261057373 28.1028901614
3km_pbl1_WSPD10MAX_20091224-1200_17_19_437
object not in US -93.3967845855 28.2323954898
object not in US -93.4292422721 28.2854634498
object not in US -93.2159162584 28.3180126175
3km_pbl1_WSPD10MAX_20091224-1200_17_20_438
object not in US -95.791414948 28.3346419541
object not in US -95.6415530084 28.3953745571
object not in US -95.5788065561 28.37115063
object not in US -95.5559953456 27.9673163383
3km_pbl1_WSPD10MAX_20091224-1200_17_17_439
object not in US -93.7127364715 28.4932930886
3km_pbl1_WSPD10MAX_20091224-1200_17_17_440
object not in US -92.5779269617 28.5213319024
3km_pbl1_WSPD10MAX_20091224-1200_17_17_441
object not in US -93.194045377 28.588288238
3km_pbl1_WSPD10MAX_20091224-1200_17_18_442
object not in US -94.7960182694 28.6729771889
object not in US -94.6412044945 28.6517197754
3km_pbl1_WSPD10MAX_20091224-1200_17_17_443
object not in US -85.8205374046 28.6407137297
3km_pbl1_WSPD10MAX_20091224-1200_17_17_444
object not in US -92.4378993912 29.0635650854
3km_pbl1_WSPD10MAX_20091224-1200_17_19_445
object not in US -93.5649178242 29.4959257636
object not in US -93.4081317054 29.4462007039
object not in US -93.5659053721 29.5228891386
3km_pbl1_WSPD10MAX_20091224-1200_17_17_446
object not in US -92.8546539267 29.5946215392
3km_pbl1_WSPD10MAX_20091224-1200_17_17_447
3km_pbl1_WSPD10MAX_20091224-1200_17_17_448
object not in US -80.0635760231 30.4604345488
3km_pbl1_WSPD10MAX_20091224-1200_17_18_449
3km_pbl1_WSPD10MAX_20091224-1200_17_18_450
object not in US -80.6821342548 31.5353420176
object not in US -80.7585000663 31.7302650061
3km_pbl1_WSPD10MAX_20091224-1200_17_21_451
object not in US -79.3434900089 31.5687029167
object not in US -79.230667211 31.7221095553
object not in US -79.3028983696 31.6467077499
object not in US -79.5405509459 31.8013818451
object not in US -79.50113302 31.5814368382
3km_pbl1_WSPD10MAX_20091224-1200_17_18_452
object not in US -80.3284884738 31.8888431417
object not in US -80.2157498746 31.7450842907
3km_pbl1_WSPD10MAX_20091224-1200_17_24_453
object not in US -79.4037176341 32.1698004354
object not in US -79.729827751 32.1143389865
object not in US -79.8451582052 32.2316287774
object not in US -79.8914157047 32.3976903055
object not in US -79.8075992727 32.2829069664
object not in US -79.8596010947 32.3952530612
object not in US -79.7349051022 32.6564805413
object not in US -79.6510492777 32.5416135083
3km_pbl1_WSPD10MAX_20091224-1200_17_17_454
3km_pbl1_WSPD10MAX_20091224-1200_17_17_455
object not in US -79.6946778318 32.4366700995
3km_pbl1_WSPD10MAX_20091224-1200_17_17_456
object not in US -79.5165761676 32.8831684249
3km_pbl1_WSPD10MAX_20091224-1200_17_17_457
3km_pbl1_WSPD10MAX_20091224-1200_17_19_458
3km_pbl1_WSPD10MAX_20091224-1200_17_17_459
3km_pbl1_WSPD10MAX_20091224-1200_17_18_460
3km_pbl1_WSPD10MAX_20091224-1200_17_17_461
3km_pbl1_WSPD10MAX_20091224-1200_17_17_462
3km_pbl1_WSPD10MAX_20091224-1200_17_20_463
3km_pbl1_WSPD10MAX_20091224-1200_17_24_464
3km_pbl1_WSPD10MAX_20091224-1200_18_21_465
object not in US -96.8834522741 27.2812210527
object not in US -96.970416219 27.2224600568
object not in US -97.0630054146 27.2442761569
object not in US -97.1897635409 27.3180565156
3km_pbl1_WSPD10MAX_20091224-1200_18_18_466
object not in US -96.5310240582 27.4619113534
3km_pbl1_WSPD10MAX_20091224-1200_18_18_467
object not in US -84.001652491 27.7042453788
3km_pbl1_WSPD10MAX_20091224-1200_18_18_468
object not in US -84.5094511371 27.8892233205
3km_pbl1_WSPD10MAX_20091224-1200_18_18_469
object not in US -84.0927056718 28.2213230594
3km_pbl1_WSPD10MAX_20091224-1200_18_19_470
object not in US -94.0694767166 28.212613514
object not in US -94.0400100666 28.2405293381
3km_pbl1_WSPD10MAX_20091224-1200_18_18_471
object not in US -85.1518892311 28.4820830936
3km_pbl1_WSPD10MAX_20091224-1200_18_19_472
object not in US -84.2382325902 28.8759890822
object not in US -84.2792878516 29.2289219353
3km_pbl1_WSPD10MAX_20091224-1200_18_21_473
object not in US -84.7042229535 29.382215169
object not in US -84.270607997 29.9038565929
object not in US -84.0252896886 29.8386864597
object not in US -83.8665976524 29.8852729119
3km_pbl1_WSPD10MAX_20091224-1200_18_18_474
object not in US -93.7177433865 29.4376125082
3km_pbl1_WSPD10MAX_20091224-1200_18_21_475
object not in US -80.8046334654 30.5963860318
object not in US -81.0420814209 30.748352978
object not in US -80.895819188 30.6298916212
object not in US -80.8932698335 30.6567861135
3km_pbl1_WSPD10MAX_20091224-1200_18_20_476
3km_pbl1_WSPD10MAX_20091224-1200_18_18_477
object not in US -81.2704765453 31.0074930856
3km_pbl1_WSPD10MAX_20091224-1200_18_18_478
object not in US -79.9165196366 30.9638441016
3km_pbl1_WSPD10MAX_20091224-1200_18_18_479
3km_pbl1_WSPD10MAX_20091224-1200_18_18_480
3km_pbl1_WSPD10MAX_20091224-1200_18_18_481
3km_pbl1_WSPD10MAX_20091224-1200_18_20_482
3km_pbl1_WSPD10MAX_20091224-1200_18_19_483
3km_pbl1_WSPD10MAX_20091224-1200_18_21_484
3km_pbl1_WSPD10MAX_20091224-1200_18_22_485
3km_pbl1_WSPD10MAX_20091224-1200_18_19_486
3km_pbl1_WSPD10MAX_20091224-1200_18_24_487
3km_pbl1_WSPD10MAX_20091224-1200_18_19_488
3km_pbl1_WSPD10MAX_20091224-1200_18_18_489
3km_pbl1_WSPD10MAX_20091224-1200_19_22_490
object not in US -96.3022041441 27.6894429198
object not in US -96.3004916814 27.6625414247
object not in US -96.430711841 27.7909226415
object not in US -96.4289627068 27.7640203873
3km_pbl1_WSPD10MAX_20091224-1200_19_22_491
object not in US -83.8382252126 28.3712128244
object not in US -83.7393453603 28.9605412316
object not in US -83.6277225897 29.2521969325
object not in US -83.4952836668 29.3806430484
3km_pbl1_WSPD10MAX_20091224-1200_19_19_492
object not in US -94.4326447539 28.119518951
3km_pbl1_WSPD10MAX_20091224-1200_19_19_493
object not in US -85.0347541915 28.369615682
3km_pbl1_WSPD10MAX_20091224-1200_19_19_494
object not in US -84.8885381969 28.822684495
3km_pbl1_WSPD10MAX_20091224-1200_19_19_495
object not in US -94.9884591882 28.8275511712
3km_pbl1_WSPD10MAX_20091224-1200_19_24_496
object not in US -92.6244381445 29.1138347191
object not in US -92.5311447932 29.0887337076
object not in US -93.1233838618 29.2645382057
object not in US -93.6198560884 29.3054602238
object not in US -93.8671768729 29.2982420156
object not in US -93.9588184864 29.2684547249
3km_pbl1_WSPD10MAX_20091224-1200_19_19_497
object not in US -88.7219247523 30.0516460961
3km_pbl1_WSPD10MAX_20091224-1200_19_21_498
object not in US -89.2193596763 30.2175033649
object not in US -89.1256864459 30.2169047619
object not in US -89.1571459265 30.1901301664
3km_pbl1_WSPD10MAX_20091224-1200_19_19_499
object not in US -88.2826982671 30.2084682476
3km_pbl1_WSPD10MAX_20091224-1200_19_24_500
object not in US -88.0022981642 30.1774585427
object not in US -88.3153273394 30.1279410191
object not in US -88.1603917633 30.0718594919
object not in US -88.0991032319 30.0170020381
object not in US -88.4137717786 29.8323636026
object not in US -88.2587671481 29.8033809658
3km_pbl1_WSPD10MAX_20091224-1200_19_19_501
3km_pbl1_WSPD10MAX_20091224-1200_19_19_502
object not in US -79.501485939 30.7141906171
3km_pbl1_WSPD10MAX_20091224-1200_19_19_503
object not in US -80.0273548715 30.809835849
3km_pbl1_WSPD10MAX_20091224-1200_19_19_504
object not in US -80.8497118075 31.1139847902
3km_pbl1_WSPD10MAX_20091224-1200_19_21_505
object not in US -80.3624318774 31.2413750352
object not in US -80.041894522 30.9734972225
object not in US -80.1220680794 31.1150515038
3km_pbl1_WSPD10MAX_20091224-1200_19_19_506
object not in US -80.8817521218 31.4411018695
3km_pbl1_WSPD10MAX_20091224-1200_19_19_507
3km_pbl1_WSPD10MAX_20091224-1200_19_19_508
object not in US -80.505639692 31.7122157927
3km_pbl1_WSPD10MAX_20091224-1200_19_19_509
3km_pbl1_WSPD10MAX_20091224-1200_19_19_510
3km_pbl1_WSPD10MAX_20091224-1200_19_19_511
3km_pbl1_WSPD10MAX_20091224-1200_19_24_512
3km_pbl1_WSPD10MAX_20091224-1200_19_24_513
3km_pbl1_WSPD10MAX_20091224-1200_19_19_514
3km_pbl1_WSPD10MAX_20091224-1200_19_19_515
3km_pbl1_WSPD10MAX_20091224-1200_19_19_516
3km_pbl1_WSPD10MAX_20091224-1200_19_20_517
3km_pbl1_WSPD10MAX_20091224-1200_20_22_518
object not in US -96.7037661392 27.3179111183
object not in US -96.7128541141 27.4523517481
object not in US -96.7183187217 27.5330245654
3km_pbl1_WSPD10MAX_20091224-1200_20_21_519
object not in US -95.9459692642 28.3544976972
object not in US -95.9765604817 28.3530621137
3km_pbl1_WSPD10MAX_20091224-1200_20_20_520
object not in US -83.3470275365 28.3734417489
3km_pbl1_WSPD10MAX_20091224-1200_20_23_521
object not in US -95.5266774882 28.5353948108
object not in US -95.4070205895 28.5945247495
object not in US -95.497530512 28.5636530255
object not in US -95.4683667711 28.5919051062
3km_pbl1_WSPD10MAX_20091224-1200_20_20_522
object not in US -95.1937085969 28.630396369
3km_pbl1_WSPD10MAX_20091224-1200_20_23_523
object not in US -94.8386813541 28.9142985776
object not in US -94.9884591882 28.8275511712
object not in US -94.9884591882 28.8275511712
object not in US -95.0178310568 28.799404958
3km_pbl1_WSPD10MAX_20091224-1200_20_20_524
object not in US -84.6248353529 29.1358665728
3km_pbl1_WSPD10MAX_20091224-1200_20_21_525
object not in US -91.9517951665 29.4495956869
object not in US -91.7340058293 29.3987605805
3km_pbl1_WSPD10MAX_20091224-1200_20_23_526
object not in US -88.8833756069 29.5674810802
object not in US -88.6662730872 29.5654134359
object not in US -88.3251329012 29.5614240953
object not in US -88.1395847773 29.5318931064
3km_pbl1_WSPD10MAX_20091224-1200_20_20_527
object not in US -93.7538962999 29.5715219016
3km_pbl1_WSPD10MAX_20091224-1200_20_20_528
object not in US -87.4101403613 30.1399734963
3km_pbl1_WSPD10MAX_20091224-1200_20_20_529
object not in US -79.9327635874 29.90849275
3km_pbl1_WSPD10MAX_20091224-1200_20_20_530
3km_pbl1_WSPD10MAX_20091224-1200_20_21_531
3km_pbl1_WSPD10MAX_20091224-1200_20_20_532
object not in US -79.3273315919 30.8626254115
3km_pbl1_WSPD10MAX_20091224-1200_20_21_533
3km_pbl1_WSPD10MAX_20091224-1200_20_24_534
object not in US -80.5612915475 31.472532707
object not in US -80.4505494484 31.6269800312
object not in US -80.4064016898 31.4341885369
object not in US -80.298196191 31.5616262905
object not in US -80.4064016898 31.4341885369
3km_pbl1_WSPD10MAX_20091224-1200_20_20_535
object not in US -79.8738618418 31.3669440415
3km_pbl1_WSPD10MAX_20091224-1200_20_20_536
object not in US -80.3874086441 31.622365219
3km_pbl1_WSPD10MAX_20091224-1200_20_20_537
3km_pbl1_WSPD10MAX_20091224-1200_20_20_538
3km_pbl1_WSPD10MAX_20091224-1200_20_20_539
3km_pbl1_WSPD10MAX_20091224-1200_20_22_540
object not in US -78.970893554 33.407921628
object not in US -78.8777028639 33.3731061072
object not in US -78.9098235006 33.375777263
3km_pbl1_WSPD10MAX_20091224-1200_20_20_541
3km_pbl1_WSPD10MAX_20091224-1200_20_21_542
3km_pbl1_WSPD10MAX_20091224-1200_20_22_543
3km_pbl1_WSPD10MAX_20091224-1200_20_20_544
3km_pbl1_WSPD10MAX_20091224-1200_20_24_545
3km_pbl1_WSPD10MAX_20091224-1200_21_21_546
object not in US -85.8525289401 25.7046291758
3km_pbl1_WSPD10MAX_20091224-1200_21_21_547
object not in US -85.4120104572 26.2004389006
3km_pbl1_WSPD10MAX_20091224-1200_21_23_548
object not in US -83.8650900686 27.9405780897
object not in US -83.5646810985 28.3306455663
object not in US -83.3306006282 28.6156716539
3km_pbl1_WSPD10MAX_20091224-1200_21_21_549
object not in US -89.2557763071 29.5431962382
3km_pbl1_WSPD10MAX_20091224-1200_21_21_550
object not in US -79.8284694966 30.0086655268
3km_pbl1_WSPD10MAX_20091224-1200_21_22_551
object not in US -80.8951497936 30.3049690483
object not in US -80.8379642972 30.2467832132
3km_pbl1_WSPD10MAX_20091224-1200_21_21_552
object not in US -80.0829712356 30.2722956192
3km_pbl1_WSPD10MAX_20091224-1200_21_21_553
object not in US -80.5208587314 30.6030343484
3km_pbl1_WSPD10MAX_20091224-1200_21_21_554
object not in US -81.3575457385 30.7426523207
3km_pbl1_WSPD10MAX_20091224-1200_21_21_555
object not in US -80.6353386211 30.7196647815
3km_pbl1_WSPD10MAX_20091224-1200_21_24_556
object not in US -81.0771656585 31.0485353565
object not in US -81.328377984 31.0654893649
object not in US -81.2267613857 31.1398902919
object not in US -81.1970299292 31.4626859551
3km_pbl1_WSPD10MAX_20091224-1200_21_21_557
object not in US -80.6428393729 31.2888481566
3km_pbl1_WSPD10MAX_20091224-1200_21_21_558
object not in US -79.9771447366 31.5916295657
3km_pbl1_WSPD10MAX_20091224-1200_21_21_559
3km_pbl1_WSPD10MAX_20091224-1200_21_21_560
3km_pbl1_WSPD10MAX_20091224-1200_21_21_561
3km_pbl1_WSPD10MAX_20091224-1200_21_22_562
3km_pbl1_WSPD10MAX_20091224-1200_21_24_563
3km_pbl1_WSPD10MAX_20091224-1200_21_21_564
3km_pbl1_WSPD10MAX_20091224-1200_21_21_565
3km_pbl1_WSPD10MAX_20091224-1200_22_22_566
object not in US -85.2032362622 25.5467320979
3km_pbl1_WSPD10MAX_20091224-1200_22_22_567
object not in US -85.0967545819 26.5115893789
3km_pbl1_WSPD10MAX_20091224-1200_22_23_568
object not in US -84.7050036926 27.0884766249
object not in US -84.6114594405 27.1384176038
3km_pbl1_WSPD10MAX_20091224-1200_22_23_569
object not in US -83.4713832122 28.8120532521
object not in US -83.4352443339 28.8912430488
3km_pbl1_WSPD10MAX_20091224-1200_22_24_570
object not in US -80.3436266178 29.2359173746
object not in US -80.3424478956 29.5607475502
object not in US -80.322445375 30.0737805496
3km_pbl1_WSPD10MAX_20091224-1200_22_22_571
object not in US -88.8183976786 29.8097234431
3km_pbl1_WSPD10MAX_20091224-1200_22_22_572
object not in US -80.3021787269 29.9639262104
3km_pbl1_WSPD10MAX_20091224-1200_22_24_573
object not in US -80.2968003351 30.6406332326
object not in US -80.3959188994 30.5938416971
object not in US -80.5679346653 30.4439881692
3km_pbl1_WSPD10MAX_20091224-1200_22_22_574
object not in US -79.4820215752 30.6042006869
3km_pbl1_WSPD10MAX_20091224-1200_22_22_575
object not in US -79.799935448 30.5754093471
3km_pbl1_WSPD10MAX_20091224-1200_22_24_576
object not in US -80.8559367972 31.7100178034
object not in US -80.7375174019 31.9453630416
object not in US -80.7822835798 31.8131526673
3km_pbl1_WSPD10MAX_20091224-1200_22_22_577
object not in US -79.2265380103 31.4778094795
3km_pbl1_WSPD10MAX_20091224-1200_22_22_578
object not in US -79.2276183138 31.7489649338
3km_pbl1_WSPD10MAX_20091224-1200_22_22_579
object not in US -78.7631587153 32.1709440502
3km_pbl1_WSPD10MAX_20091224-1200_22_24_580
object not in US -79.4358084326 32.7413311921
object not in US -79.3020234188 32.7847905367
object not in US -79.2381656256 32.7796265334
3km_pbl1_WSPD10MAX_20091224-1200_22_22_581
object not in US -78.7851233671 32.5252452147
3km_pbl1_WSPD10MAX_20091224-1200_22_22_582
3km_pbl1_WSPD10MAX_20091224-1200_22_23_583
3km_pbl1_WSPD10MAX_20091224-1200_22_22_584
3km_pbl1_WSPD10MAX_20091224-1200_22_23_585
3km_pbl1_WSPD10MAX_20091224-1200_22_22_586
3km_pbl1_WSPD10MAX_20091224-1200_23_23_587
object not in US -84.8420846879 25.6129341546
3km_pbl1_WSPD10MAX_20091224-1200_23_23_588
object not in US -83.3273977253 28.21037467
3km_pbl1_WSPD10MAX_20091224-1200_23_24_589
object not in US -83.1903800207 28.4191605913
object not in US -83.1560347147 28.4713389425
3km_pbl1_WSPD10MAX_20091224-1200_23_23_590
object not in US -80.6409603319 30.0160522899
3km_pbl1_WSPD10MAX_20091224-1200_23_23_591
object not in US -80.0857358172 30.2454188089
3km_pbl1_WSPD10MAX_20091224-1200_23_24_592
object not in US -81.2758709174 30.6018636757
object not in US -81.1135597977 30.9968838677
3km_pbl1_WSPD10MAX_20091224-1200_23_23_593
object not in US -79.87665087 31.0420323578
3km_pbl1_WSPD10MAX_20091224-1200_23_23_594
object not in US -79.4594258655 31.9574882733
3km_pbl1_WSPD10MAX_20091224-1200_23_24_595
object not in US -80.2141018742 32.0699488875
object not in US -80.2541242565 31.9916755565
3km_pbl1_WSPD10MAX_20091224-1200_23_23_596
3km_pbl1_WSPD10MAX_20091224-1200_23_24_597
3km_pbl1_WSPD10MAX_20091224-1200_24_24_598
object not in US -84.1500820782 26.7403408181
3km_pbl1_WSPD10MAX_20091224-1200_24_24_599
object not in US -83.9810801366 27.5413752392
3km_pbl1_WSPD10MAX_20091224-1200_24_24_600
object not in US -82.9818327712 28.7590326765
3km_pbl1_WSPD10MAX_20091224-1200_24_24_601
object not in US -80.5948972016 29.5253495565
3km_pbl1_WSPD10MAX_20091224-1200_24_24_602
object not in US -80.9641174359 29.903755081
3km_pbl1_WSPD10MAX_20091224-1200_24_24_603
object not in US -79.956011454 30.5875972817
3km_pbl1_WSPD10MAX_20091224-1200_24_24_604
object not in US -79.3675266222 31.353822328
3km_pbl1_WSPD10MAX_20091224-1200_24_24_605
object not in US -79.7185686409 31.9238165886
3km_pbl1_WSPD10MAX_20091224-1200_24_24_606
object not in US -77.7845537735 32.0566369556
3km_pbl1_WSPD10MAX_20091224-1200_24_24_607
3km_pbl1_WSPD10MAX_20091224-1200_24_24_608
object not in US -78.6513477431 32.5680549147
3km_pbl1_WSPD10MAX_20091224-1200_24_24_609
3km_pbl1_WSPD10MAX_20091224-1200_24_24_610
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_03_000
object not in US -95.8910822617 26.4150228741
object not in US -95.9917853476 26.0869654366
object not in US -95.9976231206 25.6828108457
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_001
object not in US -95.6227233849 26.993348964
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_002
object not in US -96.5045667947 27.05860203
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_003
object not in US -95.1097292239 27.6084596644
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_004
object not in US -95.2043995359 28.2520952887
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_005
object not in US -94.5428617051 28.5203325581
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_006
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_007
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_008
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_009
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_12_010
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_05_011
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_02_012
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_013
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_08_014
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_03_015
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_06_016
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_03_017
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_03_018
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_10_019
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_020
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_03_021
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_022
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_023
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_01_01_024
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_025
object not in US -95.3393789818 25.659066325
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_04_026
object not in US -95.1883067105 26.2038182234
object not in US -94.6354795431 25.9295188617
object not in US -94.8809530329 26.054704656
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_027
object not in US -94.7530228257 26.5173930711
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_03_028
object not in US -94.6214096427 26.9264214711
object not in US -94.3243344547 27.0447949295
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_029
object not in US -94.2543876659 27.532342843
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_030
object not in US -94.4049801386 27.500212179
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_031
object not in US -92.843105416 28.1381400084
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_032
object not in US -94.9876633328 28.2068280555
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_033
object not in US -93.6800573924 28.4402896203
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_034
object not in US -93.1624820696 28.5621011799
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_05_035
object not in US -92.0334588196 28.9087792944
object not in US -91.9107696804 28.9376458042
object not in US -92.1311475007 29.1499711689
object not in US -91.9155174172 29.1803536593
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_036
object not in US -93.7290916542 28.9245102475
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_037
object not in US -93.4258194856 29.0679157377
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_05_038
object not in US -92.5612952613 29.0611552712
object not in US -92.5528483894 28.7376105716
object not in US -92.639283677 28.520074871
object not in US -92.2140056592 28.7169681367
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_039
object not in US -94.4458091815 29.0905255993
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_06_040
object not in US -91.7316101337 29.2639014643
object not in US -91.6097206027 29.3734000141
object not in US -91.7688807202 29.6141280838
object not in US -91.4867336738 29.4288395487
object not in US -91.4867336738 29.4288395487
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_041
object not in US -91.7049333051 29.5070681881
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_03_042
object not in US -92.1704122138 29.5270343741
object not in US -92.1680095409 29.4191479429
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_02_043
object not in US -87.9398838744 30.1764801093
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_09_044
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_04_045
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_02_03_046
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_047
object not in US -95.0848175622 24.7556530777
object not in US -94.9949289498 24.7324689098
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_048
object not in US -94.9092552737 25.4078505438
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_049
object not in US -94.2093348829 25.7563448989
object not in US -93.9696551376 25.7373396345
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_050
object not in US -94.1463945343 26.4043554351
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_051
object not in US -93.9564259619 26.9222153734
object not in US -93.4214685081 27.1804020505
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_052
object not in US -93.8178974261 27.2498314149
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_053
object not in US -95.4075443993 27.488158514
object not in US -95.3772118168 27.4894562395
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_054
object not in US -93.40780197 27.6658729828
object not in US -93.1341101883 27.6729606305
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_055
object not in US -95.3092559982 27.9239420213
object not in US -95.3078097008 27.8970224313
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_056
object not in US -94.0322929695 28.0519657111
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_057
object not in US -93.3754299174 28.5026852326
object not in US -93.5200742793 28.2560077061
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_058
object not in US -95.3062604048 28.4368052066
object not in US -95.2770793895 28.4650110025
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_059
object not in US -86.9835128512 28.8084214553
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_060
object not in US -93.0873568881 29.1035097765
object not in US -92.849124695 29.4058441514
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_061
object not in US -92.4137051456 29.3338202044
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_062
object not in US -93.1975683591 29.6405336349
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_05_063
object not in US -101.108106145 29.4432641758
object not in US -101.14200944 29.4674297819
object not in US -101.14200944 29.4674297819
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_064
object not in US -88.0291078931 30.3937653307
object not in US -87.7576521557 29.9575544313
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_04_065
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_066
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_03_03_067
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_068
object not in US -94.7587746734 24.7418228277
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_06_069
object not in US -94.3841952861 24.9706291763
object not in US -94.0247801868 24.8754269774
object not in US -93.575520015 24.7281547611
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_070
object not in US -95.2180538812 25.0456799716
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_071
object not in US -94.6875311065 25.1207187846
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_072
object not in US -95.2769987179 25.6079234735
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_07_073
object not in US -100.567040849 25.6199318548
object not in US -100.567040849 25.6199318548
object not in US -100.567040849 25.6199318548
object not in US -100.567040849 25.6199318548
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_074
object not in US -95.6044919948 26.1319332204
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_075
object not in US -95.0766703155 26.3699912804
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_076
object not in US -93.4952267651 26.6935182423
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_07_077
object not in US -95.2491819668 26.7939150985
object not in US -94.9364005106 27.1839493787
object not in US -94.700772644 27.3277646497
object not in US -94.5666235465 27.7101791346
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_16_078
object not in US -96.8834522741 27.2812210527
object not in US -96.3898699007 27.6310601644
object not in US -95.8671225011 28.06123384
object not in US -95.6474235018 27.9632703748
object not in US -95.5637229514 27.5622813609
object not in US -95.2905153481 27.574037003
object not in US -95.1853517194 27.3087332367
object not in US -95.0491827379 27.0177354758
object not in US -95.0369421098 26.7756826652
object not in US -95.0453181388 26.3443312194
object not in US -94.867970911 26.4052361069
object not in US -94.5500182626 26.6865576161
object not in US -94.5788849498 26.6585675354
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_05_079
object not in US -93.976811497 27.4335744261
object not in US -93.9454094753 27.4076071883
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_080
object not in US -92.8837406604 27.4363734698
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_081
object not in US -91.934656088 28.5866645687
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_082
object not in US -93.2010721944 28.8039266344
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_11_083
object not in US -88.3446744536 30.2362609381
object not in US -88.0028552189 30.1504806171
object not in US -87.9693917076 30.2579072388
object not in US -87.8492642281 30.0400714289
object not in US -88.0980439756 30.0709573267
object not in US -88.1302596254 30.0174566197
object not in US -88.2524548269 30.1540923557
object not in US -87.9727871744 30.096040154
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_04_04_084
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_07_085
object not in US -93.7122537228 25.2344896011
object not in US -93.0600693862 25.279216973
object not in US -93.2076855038 25.2486062719
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_086
object not in US -93.4300277582 25.6727409271
object not in US -92.891873843 25.6326729539
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_07_087
object not in US -93.2351566652 26.1083379209
object not in US -92.6370063006 26.149337298
object not in US -92.0105690202 26.2955347142
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_088
object not in US -96.5791291926 26.8119869023
object not in US -96.4251052423 26.7660569934
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_089
object not in US -92.8108583981 27.0069737996
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_090
object not in US -85.7058758609 27.0458316436
object not in US -85.7828403386 27.3718480586
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_091
object not in US -92.3736685657 27.6895372666
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_092
object not in US -97.2230077831 27.775100691
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_093
object not in US -92.326105918 28.2565206875
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_094
object not in US -86.9073774891 28.2941041366
object not in US -87.0507226482 28.621163127
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_095
object not in US -93.9723333088 28.0808296675
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_096
object not in US -92.1425127803 28.2597501494
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_097
object not in US -94.9611717233 28.2888182085
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_098
object not in US -91.6908815844 28.6980046226
object not in US -91.8364990662 28.2645429395
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_099
object not in US -96.3268512607 28.5521311938
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_100
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_101
object not in US -93.573136418 28.8749998199
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_102
object not in US -87.1626518456 29.0013735708
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_103
object not in US -90.9876341815 29.0829685956
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_104
object not in US -91.9577570664 29.7463077464
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_105
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_106
object not in US -89.0312034167 30.2971833771
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_107
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_108
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_109
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_110
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_111
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_08_112
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_05_113
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_06_114
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_05_08_115
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_116
object not in US -94.9680348201 24.7872842503
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_117
object not in US -93.1822229439 25.3836315798
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_118
object not in US -94.8575690732 25.5712622759
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_119
object not in US -93.8729579371 25.5521439665
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_120
object not in US -96.8810738648 25.9331987067
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_121
object not in US -94.0765083204 26.1643829416
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_122
object not in US -94.3611932021 26.5047489238
object not in US -94.4969223178 26.1768380473
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_123
object not in US -92.3795035832 26.6658452684
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_124
object not in US -94.7543002107 26.5442788773
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_125
object not in US -92.3904407313 27.1234149573
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_126
object not in US -93.6927853866 27.1457818537
object not in US -94.0469530296 26.9193275069
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_08_127
object not in US -92.0593461776 27.2100797873
object not in US -91.5774294789 27.3786655163
object not in US -91.0051882814 27.7886739658
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_128
object not in US -92.0638142024 27.4255202916
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_129
object not in US -96.1925412005 27.3980662924
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_130
object not in US -93.869120587 27.7873891826
object not in US -93.8376346111 27.7613862826
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_131
object not in US -86.0678578235 27.8393732786
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_132
object not in US -94.5292024192 28.2240180297
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_133
object not in US -96.7086361476 28.2894914208
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_134
object not in US -91.5114283425 29.0239089006
object not in US -91.1409979338 29.0007757895
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_135
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_09_136
object not in US -89.219577456 30.1905215949
object not in US -88.9383437928 30.2155042712
object not in US -89.0007907344 30.2160012172
object not in US -89.0957239948 30.0817838766
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_137
object not in US -88.4062413198 30.2910041141
object not in US -88.2817394131 30.2624270393
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_138
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_139
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_140
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_141
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_08_142
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_143
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_144
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_145
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_06_146
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_07_147
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_06_09_148
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_149
object not in US -93.1890680662 24.6582326436
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_11_150
object not in US -92.5484366471 25.022188178
object not in US -92.0146400072 25.0051979918
object not in US -91.3925503552 25.013781798
object not in US -90.8886538156 24.9915870346
object not in US -90.414711934 24.9940888293
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_151
object not in US -94.5762692022 25.2861723992
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_152
object not in US -93.8493363063 25.7142319251
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_153
object not in US -94.3836001484 25.6427178501
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_154
object not in US -94.2667087052 25.7005877369
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_155
object not in US -92.1823832454 25.916051044
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_156
object not in US -93.5269668689 25.8851868866
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_157
object not in US -93.3549067689 26.1051704738
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_158
object not in US -91.6923297103 27.0000988639
object not in US -91.2101594015 27.1133857641
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_09_159
object not in US -96.2444973229 26.775195606
object not in US -96.1492125699 26.6990381382
object not in US -96.0775962804 26.5138699468
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_160
object not in US -95.8863688734 27.3588034843
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_161
object not in US -91.8146600748 27.0791807689
object not in US -91.8468955658 27.186443018
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_162
object not in US -91.344982348 28.1359057541
object not in US -91.5602095716 28.2143170014
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_163
object not in US -88.0144820277 29.5839859146
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_164
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_165
object not in US -88.0285567741 30.4207443943
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_166
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_11_167
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_168
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_169
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_09_170
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_171
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_172
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_09_173
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_174
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_09_175
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_176
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_08_177
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_178
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_07_07_179
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_180
object not in US -93.2425323433 25.4089442732
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_11_181
object not in US -91.6399700155 25.6555304718
object not in US -91.014926326 25.7697371155
object not in US -90.4183667989 25.8807145519
object not in US -90.0298994514 25.9351890398
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_09_182
object not in US -91.4119909369 26.4113667566
object not in US -90.8726628803 26.57775642
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_183
object not in US -90.1511531224 27.0383364745
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_184
object not in US -96.7971989836 26.908221527
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_10_185
object not in US -90.3943818625 27.3879215482
object not in US -90.5759331191 27.3064151583
object not in US -89.9696463499 27.4424097094
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_186
object not in US -90.4624526762 28.9780571375
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_187
object not in US -87.8301889535 29.5000623353
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_10_188
object not in US -94.8062232201 29.5094878466
object not in US -94.8075546337 29.5364401688
object not in US -94.8075546337 29.5364401688
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_189
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_190
object not in US -89.1917438772 29.7856233624
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_191
object not in US -88.472147064 30.0759193419
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_192
object not in US -87.4130254323 30.0320752119
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_193
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_194
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_195
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_196
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_197
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_198
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_199
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_09_200
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_09_201
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_202
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_203
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_18_204
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_09_205
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_08_206
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_08_09_207
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_208
object not in US -91.595700187 24.7428697191
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_209
object not in US -92.3560417018 25.6708862104
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_210
object not in US -89.4528965872 27.5759272741
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_211
object not in US -90.4881713896 27.9534217286
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_10_212
object not in US -97.2533994846 27.7733588185
object not in US -97.2533994846 27.7733588185
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_10_213
object not in US -90.1223103769 28.1699302649
object not in US -89.7857227972 28.2776359073
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_11_214
object not in US -89.8465249084 28.5473304181
object not in US -89.5994278467 28.9243256978
object not in US -89.4148734839 28.8696752959
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_10_215
object not in US -96.7086361476 28.2894914208
object not in US -96.7086361476 28.2894914208
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_10_216
object not in US -90.2152783787 28.7359953919
object not in US -90.2155746252 28.8708331791
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_217
object not in US -91.0479126626 28.9476292004
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_218
object not in US -89.9691015403 29.1946644121
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_219
object not in US -88.2626290397 29.5875760541
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_11_220
object not in US -86.9760232165 30.0495785223
object not in US -87.0678713634 30.1056769543
object not in US -87.0350403496 30.1589114175
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_10_221
object not in US -90.1561304964 30.2197622785
object not in US -89.9687738813 30.2198526361
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_222
object not in US -87.9978305161 30.393286315
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_223
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_224
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_225
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_226
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_15_227
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_10_228
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_229
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_230
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_12_231
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_12_232
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_233
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_23_234
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_235
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_236
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_09_09_237
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_15_238
object not in US -90.6544578151 25.4227827296
object not in US -90.089340253 25.5319576266
object not in US -89.4933373894 25.6115762372
object not in US -89.0162350527 25.6355876364
object not in US -88.5385247944 25.684640391
object not in US -88.1220312357 25.6252775878
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_239
object not in US -90.2107601457 26.6344476774
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_240
object not in US -95.8342099851 26.471581353
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_241
object not in US -90.6080567102 27.6025907691
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_242
object not in US -95.0227005615 27.6928659598
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_243
object not in US -90.7318521791 27.8983465898
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_12_244
object not in US -89.6944751654 28.0887566827
object not in US -89.0799267995 28.4632101243
object not in US -88.6798124783 28.5675465494
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_245
object not in US -85.9828816366 28.4300912668
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_246
object not in US -89.322114061 28.9231560067
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_247
object not in US -88.1477960649 29.1003554108
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_248
object not in US -94.5716897998 29.1400802902
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_13_249
object not in US -87.3071477827 29.35524916
object not in US -87.3284833514 29.7064992697
object not in US -87.4660596453 29.1965966981
object not in US -87.6829466902 29.1737222284
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_250
object not in US -89.3174150223 29.5974945275
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_251
object not in US -88.4159730961 29.6974796879
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_252
object not in US -89.4384047282 30.1376907134
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_253
object not in US -88.4062413198 30.2910041141
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_254
object not in US -88.8743269519 30.3498842851
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_11_255
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_256
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_257
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_258
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_11_259
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_12_260
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_261
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_10_10_262
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_263
object not in US -95.4848038358 26.137261974
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_12_264
object not in US -89.7599065868 26.3114974839
object not in US -89.3390406766 26.4175973385
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_265
object not in US -89.6067907967 27.0916669373
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_266
object not in US -93.4438265655 27.8266480996
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_267
object not in US -88.6819821962 28.4057854476
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_268
object not in US -94.5035568934 28.3328498985
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_269
object not in US -88.4931405849 28.7272797931
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_14_270
object not in US -87.0733969597 28.8914462886
object not in US -87.0328043918 29.2142803736
object not in US -87.129451541 29.0815731693
object not in US -87.3461619084 29.0592698582
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_16_271
object not in US -86.0829067956 28.9998455797
object not in US -86.1498483721 28.8669502423
object not in US -86.2575133179 29.2749512526
object not in US -86.2791039027 28.7088872758
object not in US -86.2217995906 28.5992806312
object not in US -86.3645321503 28.0639687956
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_13_272
object not in US -88.7641118371 29.1887097103
object not in US -88.3867091074 29.5891916616
object not in US -87.9845824142 29.529557146
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_13_273
object not in US -94.407674571 28.9298941821
object not in US -94.2194312282 28.8552834923
object not in US -94.0907204841 28.7245441064
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_274
object not in US -87.187278952 29.2177632372
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_275
object not in US -93.8970123497 29.2703481011
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_12_276
object not in US -88.9721485521 29.972930381
object not in US -88.7506584761 30.2408136018
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_277
object not in US -87.4115837005 30.0860240468
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_278
object not in US -86.9692698286 30.2653569249
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_279
object not in US -88.0280053469 30.4477235395
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_280
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_281
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_282
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_283
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_284
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_285
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_14_286
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_287
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_12_288
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_13_289
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_19_290
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_12_291
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_22_292
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_13_293
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_24_294
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_295
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_11_11_296
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_297
object not in US -89.7030690686 25.2361121379
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_298
object not in US -95.6871601666 26.5322518878
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_14_299
object not in US -89.0342089952 26.8731655561
object not in US -88.4579182032 27.0558913067
object not in US -87.8766514639 27.3706480412
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_300
object not in US -94.818019689 27.2424555368
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_14_301
object not in US -94.5312841222 27.6035883487
object not in US -94.5177851634 27.3075079733
object not in US -94.2835838119 27.50439477
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_302
object not in US -96.4348609626 27.3859136121
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_13_303
object not in US -88.843465061 27.7065383344
object not in US -88.2014828107 27.8607341632
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_304
object not in US -93.2870595961 27.6960289887
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_14_305
object not in US -95.7536338366 27.6886521202
object not in US -96.1620121012 27.8852794045
object not in US -96.1569816692 27.80455678
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_306
object not in US -85.6438959909 27.7715463969
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_307
object not in US -89.6026013839 28.1424115167
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_16_308
object not in US -94.3152009755 28.2314735489
object not in US -94.1611857509 28.2096399538
object not in US -94.1011679447 28.2385684645
object not in US -93.9353569446 27.9201708887
object not in US -93.7493920413 27.8449220786
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_309
object not in US -88.1876596816 28.6154307303
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_13_310
object not in US -86.7779119001 28.5066589783
object not in US -86.7039226116 28.8824488068
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_311
object not in US -86.6040883531 29.0956970675
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_15_312
object not in US -93.7003328361 28.9793155755
object not in US -94.0392477765 28.969057568
object not in US -93.9435647651 28.8910856658
object not in US -93.6932110753 28.7906362954
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_313
object not in US -88.1746323075 29.3165576301
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_314
object not in US -92.7802891475 29.1645075196
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_315
object not in US -86.3101515215 29.5193911617
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_13_316
object not in US -94.8075546337 29.5364401688
object not in US -94.8088867847 29.5633927551
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_14_317
object not in US -87.1988350324 29.8926624292
object not in US -87.2222214435 30.1630652976
object not in US -87.007183292 30.0503038493
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_17_318
object not in US -93.5388395553 29.6316021253
object not in US -93.5668934672 29.549852787
object not in US -93.4109642149 29.5270936103
object not in US -93.8703858763 29.3791190991
object not in US -93.9621024997 29.349328414
object not in US -94.1751206885 29.2615934213
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_13_319
object not in US -88.2836560517 30.1545099718
object not in US -87.9086772079 30.1759796068
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_320
object not in US -86.7258480057 30.07047561
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_13_321
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_322
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_323
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_13_324
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_15_325
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_326
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_327
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_328
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_329
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_12_12_330
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_331
object not in US -89.4086530164 24.8054605571
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_14_332
object not in US -89.0800209493 25.1793301188
object not in US -88.753600236 25.1764703954
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_333
object not in US -88.6491757813 26.3313236468
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_334
object not in US -93.1682335201 26.8368632823
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_335
object not in US -96.359768355 26.6885124303
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_336
object not in US -95.8672945468 27.0360749982
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_16_337
object not in US -95.4261002192 27.2716165903
object not in US -95.4548891533 27.2434064924
object not in US -95.4275694273 27.298518646
object not in US -95.5774197468 27.2649979439
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_338
object not in US -93.2522193428 27.5621586214
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_339
object not in US -96.2902363964 27.5011464771
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_340
object not in US -86.4760711024 28.3637887577
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_341
object not in US -85.9260692593 28.3203730583
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_342
object not in US -95.7286703612 28.3104930625
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_343
object not in US -95.210097211 28.35981269
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_344
object not in US -85.7661065052 28.4770208158
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_17_345
object not in US -95.0333519092 28.5018783031
object not in US -94.9693265861 28.4504178013
object not in US -95.2143786551 28.440606187
object not in US -95.3048073891 28.4098746471
object not in US -95.0835033345 28.2839798975
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_346
object not in US -92.7028622597 28.5996549192
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_347
object not in US -95.8009378115 28.4961891704
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_348
object not in US -87.9374416744 28.8273933384
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_18_349
object not in US -85.7828891368 28.8013857835
object not in US -85.7415988406 29.0429157816
object not in US -85.6291337405 28.7962127012
object not in US -85.562756368 28.901880226
object not in US -85.7852069524 28.7474897837
object not in US -85.4088553726 28.8964416754
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_16_350
object not in US -92.1608333301 29.0955190584
object not in US -91.8496527508 28.9655182453
object not in US -91.511011841 28.9969405575
object not in US -91.3850054489 28.8095680048
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_351
object not in US -86.9015321858 29.4540427875
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_352
object not in US -91.4850894433 29.3209467662
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_353
object not in US -87.6086343367 29.6850199046
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_354
object not in US -86.6125179352 29.7436399872
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_14_355
object not in US -80.850719741 30.1123230794
object not in US -80.8093973617 30.2176810465
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_14_356
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_14_357
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_14_358
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_359
object not in US -80.2804756146 30.8019269597
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_360
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_361
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_362
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_363
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_15_364
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_15_365
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_366
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_367
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_14_368
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_369
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_13_13_370
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_371
object not in US -94.4801268074 25.8006768568
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_372
object not in US -95.5611764496 25.891554711
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_373
object not in US -95.117445697 25.9913666762
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_374
object not in US -88.1119728395 26.1629325413
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_375
object not in US -94.4946571476 26.7963133749
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_16_376
object not in US -88.010363176 26.7534091842
object not in US -87.463117239 26.9320135654
object not in US -86.9793022887 26.9482321706
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_377
object not in US -96.7770971867 26.6126710272
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_378
object not in US -94.7920813389 26.704463805
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_379
object not in US -92.9277482694 26.869639765
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_380
object not in US -95.3684733383 27.3280195345
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_381
object not in US -87.6846587648 27.798426307
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_18_382
object not in US -85.9189156292 27.7537601133
object not in US -85.7845905882 28.0460070581
object not in US -85.7130293867 28.2863848247
object not in US -85.9666063928 28.078901649
object not in US -85.6741560475 28.4739278202
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_20_383
object not in US -95.9667638192 28.1915453211
object not in US -95.8366201131 28.0626427831
object not in US -95.8350280477 28.0357263508
object not in US -96.0616941276 28.2410363297
object not in US -95.9394679105 28.2468160227
object not in US -95.9569991909 28.0300482411
object not in US -96.1822162149 28.208223397
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_384
object not in US -84.8679669946 28.0391729238
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_385
object not in US -95.4228173002 28.3239209345
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_16_386
object not in US -87.4868770975 28.3877860976
object not in US -87.0612093726 28.2707881352
object not in US -86.663469936 28.2609625158
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_387
object not in US -85.8365383861 28.2635168898
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_388
object not in US -92.2686322546 28.4193485777
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_389
object not in US -85.2373037139 28.6202478263
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_390
object not in US -96.3251170179 28.5252112392
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_15_391
object not in US -93.0447404816 28.7268197628
object not in US -92.9816213798 28.6743596292
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_15_392
object not in US -86.4699712584 29.3889297143
object not in US -86.4999478901 29.4167395687
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_17_393
object not in US -92.9142600158 29.5123251617
object not in US -93.2888241543 29.5842546079
object not in US -93.5039305174 29.5245933284
object not in US -93.7455915146 29.3558305655
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_16_394
object not in US -86.2636425082 29.9229592355
object not in US -86.6528705264 29.4747933034
object not in US -86.2388067559 29.7602656763
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_395
object not in US -81.2446168602 30.5997582342
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_396
object not in US -81.3575457385 30.7426523207
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_397
object not in US -80.4235502488 30.9479637123
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_398
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_399
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_15_400
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_401
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_16_402
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_19_403
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_404
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_15_405
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_14_14_406
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_19_407
object not in US -95.3125577006 24.5848607578
object not in US -95.3700806541 24.5555032419
object not in US -95.5202833225 24.602571154
object not in US -95.4361620131 24.686908461
object not in US -95.1747471448 24.7787726033
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_408
object not in US -88.4560535213 25.2268327794
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_409
object not in US -95.4099934317 25.3062916178
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_410
object not in US -95.2458322965 25.5823418102
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_411
object not in US -96.388116014 25.7171573844
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_412
object not in US -95.7937610503 25.7732483636
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_413
object not in US -95.8565054458 25.8241435707
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_414
object not in US -87.5609311139 26.6377784166
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_415
object not in US -95.2393014538 26.6057116609
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_416
object not in US -87.3590063403 27.44169304
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_417
object not in US -86.5645918542 27.5842583014
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_20_418
object not in US -94.1036979037 27.564294679
object not in US -94.0093174865 27.4864561485
object not in US -93.7917254309 27.3584218502
object not in US -93.5569350093 27.5808916928
object not in US -93.4391445806 27.691980423
object not in US -92.8697437649 28.0027282049
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_419
object not in US -94.9882320834 27.6133208109
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_18_420
object not in US -94.600786699 27.7898459772
object not in US -94.50948028 27.793135991
object not in US -94.5740863452 27.8717265917
object not in US -94.5740863452 27.8717265917
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_421
object not in US -86.4590199084 27.9857452021
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_17_422
object not in US -85.1848787852 27.8088352501
object not in US -85.1783168181 27.9434558346
object not in US -85.0096091345 28.2606885905
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_17_423
object not in US -96.5487819939 27.7308727982
object not in US -96.5166196563 27.7055456543
object not in US -96.6721479938 27.7514078569
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_424
object not in US -85.158523233 28.3474059884
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_425
object not in US -91.6227167041 28.2944144877
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_426
object not in US -93.8639175041 28.4348375528
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_427
object not in US -90.8898932106 28.5173506855
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_428
object not in US -84.9011574449 28.5802439728
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_429
object not in US -94.8948530976 28.8041814064
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_16_430
object not in US -90.7703221853 28.9226324355
object not in US -90.4623252952 28.9510872417
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_17_431
object not in US -94.5949384361 28.9772826449
object not in US -94.5012838448 28.9536225351
object not in US -94.3448949343 28.9050544081
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_18_432
object not in US -86.1370935331 29.1904104267
object not in US -86.1785225343 28.9217809859
object not in US -85.6668057475 29.3373325153
object not in US -85.2906022545 29.4320711113
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_433
object not in US -92.7756922537 29.0027263541
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_434
object not in US -93.8948601068 29.216432841
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_17_435
object not in US -85.6547926055 29.6068961603
object not in US -85.7371769292 29.8526415719
object not in US -85.6390756303 29.9573655769
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_16_436
object not in US -92.6663361245 29.5177063134
object not in US -92.4473471108 29.441111731
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_16_437
object not in US -94.8088867847 29.5633927551
object not in US -94.7778995277 29.5645480629
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_18_438
object not in US -91.957213571 29.7193326545
object not in US -91.9566703773 29.6923577985
object not in US -91.800907235 29.667647664
object not in US -91.6447672937 29.6157740752
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_16_439
object not in US -86.4775290853 30.0369519583
object not in US -86.2220210666 30.1917173404
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_440
object not in US -87.2906631879 29.9486003592
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_441
object not in US -81.2249694736 30.8149669327
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_16_442
object not in US -80.5754250091 30.6882502776
object not in US -80.5494527005 30.6322013414
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_443
object not in US -80.6558687469 31.4793184968
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_444
object not in US -79.9973827308 31.7015325705
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_445
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_446
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_447
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_17_448
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_449
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_450
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_451
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_17_452
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_16_453
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_454
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_455
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_18_456
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_457
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_23_458
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_15_15_459
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_460
object not in US -87.1772252394 26.3605385167
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_461
object not in US -94.7696825264 26.8669775863
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_462
object not in US -95.0752647903 26.9358266503
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_463
object not in US -94.2291320131 26.9402597471
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_464
object not in US -86.8163175931 27.321365548
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_465
object not in US -95.2833425601 27.4394882623
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_19_466
object not in US -85.6989085019 27.908271183
object not in US -85.4608717142 28.4395133443
object not in US -85.2144939012 28.457466851
object not in US -85.0224917158 28.6120353496
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_22_467
object not in US -96.1332386461 27.9136682738
object not in US -96.2906305181 27.9869192009
object not in US -96.3228264655 28.0123101017
object not in US -96.310780425 27.823960066
object not in US -96.2735277607 27.7178586268
object not in US -96.3950812623 27.7117605649
object not in US -96.4272145228 27.7371187685
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_468
object not in US -93.4551154948 28.1499145176
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_469
object not in US -85.0680641051 28.3169417018
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_470
object not in US -91.0722345117 28.3541720206
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_471
object not in US -95.0054457442 28.5569588611
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_19_472
object not in US -93.621743021 28.522891568
object not in US -93.4348798225 28.4471457953
object not in US -93.3113711818 28.4234474334
object not in US -93.2176772284 28.3719089831
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_473
object not in US -93.1292192129 28.482002902
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_474
object not in US -86.0430762542 28.4589563474
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_475
object not in US -92.9549551014 28.8098604375
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_476
object not in US -92.8350045166 28.9204893504
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_477
object not in US -85.3550671233 29.3804208388
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_21_478
object not in US -90.1249044263 30.2197961626
object not in US -90.093652202 30.1928400885
object not in US -90.093652202 30.1928400885
object not in US -90.093652202 30.1928400885
object not in US -90.093652202 30.1928400885
object not in US -90.093652202 30.1928400885
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_479
object not in US -80.0975242184 30.4359460322
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_480
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_481
object not in US -80.9465024835 31.0936679301
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_18_482
object not in US -80.5149366504 30.9817363427
object not in US -80.653376916 31.181292489
object not in US -80.7346288923 31.3224658382
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_483
object not in US -80.0278895589 31.1078807495
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_484
object not in US -80.7267849056 31.4031359901
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_17_485
object not in US -80.2118620352 31.4739472309
object not in US -80.2351061214 31.5569382173
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_486
object not in US -79.2561583477 31.7784103491
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_487
object not in US -80.1497531233 31.767232497
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_18_488
object not in US -79.3780336068 32.1135359927
object not in US -79.5911437802 32.2118270112
object not in US -79.5992150468 32.4291939037
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_489
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_490
object not in US -80.0476752966 32.4366283083
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_24_491
object not in US -79.2976629728 32.5405988203
object not in US -79.2011110101 32.2617600943
object not in US -79.6810631484 31.975065127
object not in US -79.9058052989 32.2633685025
object not in US -79.7323591439 32.3854276858
object not in US -79.8105007637 32.2560437993
object not in US -79.781411511 32.5246570936
object not in US -79.978296769 32.4855502252
object not in US -79.8856484047 32.4514161504
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_18_492
object not in US -79.1042351371 32.8228860162
object not in US -79.0660366842 32.8739364056
object not in US -79.0754258424 32.793421704
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_493
object not in US -79.0477887862 33.3059012171
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_494
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_495
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_16_496
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_16_20_497
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_498
object not in US -96.7297316986 24.5691786563
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_499
object not in US -86.9679314672 26.3287177765
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_19_500
object not in US -86.3901607989 26.5287055772
object not in US -86.1797459351 26.5224527191
object not in US -85.898231364 26.7828533646
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_501
object not in US -86.3814085164 26.7708060596
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_18_502
object not in US -86.2749535805 27.1987207452
object not in US -86.0382297053 27.0567560661
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_503
object not in US -96.1505789307 27.211297888
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_504
object not in US -94.6944146877 27.1932182026
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_21_505
object not in US -97.0518508604 27.5148018086
object not in US -96.9760771102 27.3031024784
object not in US -97.0025376055 27.247659396
object not in US -96.8569164351 27.3366410206
object not in US -97.1614488223 27.3466622963
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_506
object not in US -84.841684025 27.9571637367
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_18_507
object not in US -84.2853980764 28.0682051938
object not in US -84.132964869 28.5741578728
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_508
object not in US -91.8034297507 28.1302177332
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_19_509
object not in US -93.9504289362 28.2972974862
object not in US -93.6078930165 28.145661623
object not in US -93.8586321756 28.3001189837
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_18_510
object not in US -84.3921267638 28.3428776821
object not in US -84.2705664634 28.8504402158
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_511
object not in US -94.7013149078 28.6225277602
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_18_512
object not in US -84.8199193731 28.9549072026
object not in US -84.8005834958 28.7381425437
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_21_513
object not in US -92.5921432671 29.0605342335
object not in US -92.5914287296 29.033570137
object not in US -92.5935735246 29.1144635544
object not in US -92.3466427488 29.1192264685
object not in US -92.3775103952 29.1186571386
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_514
object not in US -84.9853384113 29.3395027399
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_515
object not in US -83.9514715519 29.0247796777
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_516
object not in US -83.891556807 28.9949198703
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_19_517
object not in US -93.0038959606 29.402316948
object not in US -92.2886951666 29.2821495841
object not in US -91.7610668322 29.1825692059
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_22_518
object not in US -88.8456409794 30.1337598713
object not in US -88.6569665466 30.2398759386
object not in US -88.6268860752 30.1586072222
object not in US -89.0944623016 30.2166901692
object not in US -88.9687038435 30.2967010788
object not in US -88.9080346897 30.1343015279
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_20_519
object not in US -84.1102890232 29.9776891637
object not in US -84.4709622128 29.6694869796
object not in US -84.5631484942 29.1332613586
object not in US -84.3934816209 29.3960226153
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_520
object not in US -80.3986053941 30.5669573147
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_521
object not in US -80.4083647741 30.7843457092
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_20_522
object not in US -79.9250082199 30.8832208344
object not in US -80.285868734 31.3711243977
object not in US -80.4875033502 31.5755085849
object not in US -80.7558824218 31.7571532266
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_23_523
object not in US -81.2969716006 31.0633965385
object not in US -81.1434273191 30.674094913
object not in US -81.137468305 31.0797181771
object not in US -80.8913760805 31.0086085432
object not in US -81.060850889 30.8849967969
object not in US -80.8208827872 31.0848841577
object not in US -80.5089676284 31.3604301139
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_524
object not in US -79.6199479753 31.076023496
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_525
object not in US -78.892648674 31.0702447211
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_526
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_20_527
object not in US -79.1005869853 31.4673736812
object not in US -79.2265380103 31.4778094795
object not in US -79.3525164254 31.4881243208
object not in US -79.2386899141 31.3703796776
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_528
object not in US -79.7647393699 31.7919566822
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_529
object not in US -80.2347169455 32.1797976513
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_530
object not in US -79.7755737738 32.5783745857
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_531
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_532
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_18_533
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_18_534
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_19_535
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_536
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_21_537
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_19_538
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_17_539
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_17_24_540
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_541
object not in US -86.876396686 25.4120009248
object not in US -86.7566056321 25.4358002364
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_542
object not in US -86.531847525 25.9137411517
object not in US -86.2908526449 25.9605926533
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_543
object not in US -95.9327267434 27.6263999783
object not in US -95.8336972232 27.4961273901
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_544
object not in US -85.4526582492 27.9536074618
object not in US -85.1983264296 28.1600401454
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_545
object not in US -95.7263576688 27.7438532798
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_546
object not in US -96.797413922 27.7987201118
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_547
object not in US -95.0668744822 27.9608566641
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_548
object not in US -96.7134959536 27.9111960102
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_549
object not in US -84.131276271 28.0881504333
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_550
object not in US -91.6807233031 28.1049449279
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_22_551
object not in US -95.401093615 28.486798245
object not in US -95.5451685126 28.3186380866
object not in US -95.3601702845 28.2995904505
object not in US -95.7803443462 28.146193864
object not in US -95.7357174031 27.9053284464
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_552
object not in US -90.9835649454 28.6784524407
object not in US -90.9822159745 28.5436359705
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_553
object not in US -85.2961031669 28.676410175
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_554
object not in US -91.1686130088 28.7308259644
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_555
object not in US -93.2661894071 28.9101970006
object not in US -93.2960773884 28.8824488068
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_556
object not in US -94.5591110379 28.8705977002
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_557
object not in US -91.1734503971 29.135347763
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_24_558
object not in US -88.4785062819 29.671252229
object not in US -87.9772968407 29.8802261656
object not in US -87.536971674 30.0614851096
object not in US -87.9115897035 30.0410935504
object not in US -88.2247192578 29.9648196785
object not in US -88.3822239131 29.8589547334
object not in US -88.3835720876 29.778023379
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_559
object not in US -88.2529420143 30.1271135448
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_560
object not in US -89.219141775 30.2444852635
object not in US -89.1256864459 30.2169047619
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_561
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_562
object not in US -79.4532992062 30.0055996801
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_563
object not in US -78.9575178841 30.2351818997
object not in US -79.0568622879 30.1894167296
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_564
object not in US -80.9092606411 30.82034606
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_565
object not in US -79.0298743978 30.7022811532
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_566
object not in US -79.7087331697 30.8391826695
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_567
object not in US -79.2406079775 31.0723458643
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_568
object not in US -79.8366584646 31.4182443551
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_569
object not in US -80.1141635822 32.414537038
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_570
object not in US -78.6188527165 32.836353989
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_571
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_21_572
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_573
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_574
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_575
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_576
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_22_577
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_18_578
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_18_19_579
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_580
object not in US -91.6169654272 27.9440416485
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_23_581
object not in US -83.7059377461 28.0407385676
object not in US -83.5305652269 28.3829213329
object not in US -83.323273744 28.7233413592
object not in US -83.1641780414 28.7959583133
object not in US -82.9297668007 29.0534096944
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_582
object not in US -92.8148539823 28.2196633025
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_583
object not in US -93.8660356902 28.4887285792
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_22_584
object not in US -83.891556807 28.9949198703
object not in US -83.7717468128 29.4213812839
object not in US -84.1103503712 28.9511735942
object not in US -83.7203265855 29.2567693764
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_20_585
object not in US -92.8295510527 28.7317740403
object not in US -92.642181777 28.6278995248
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_586
object not in US -92.197148998 29.3377103506
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_22_587
object not in US -89.0697280996 29.5419851232
object not in US -88.8526784305 29.5402320246
object not in US -88.5414103398 29.6180186555
object not in US -88.3242039583 29.6153737974
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_22_588
object not in US -84.3701242769 29.8001813944
object not in US -84.0513910346 29.9209496377
object not in US -83.8147712677 29.720670573
object not in US -83.6632082769 29.6592534482
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_589
object not in US -84.0629475338 29.7323559951
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_590
object not in US -78.833175151 30.4956648875
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_591
object not in US -80.1663287177 30.6849846751
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_592
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_20_593
object not in US -79.1961160228 30.90600255
object not in US -79.4915285694 31.0928297841
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_594
object not in US -79.7883026097 30.9809420537
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_595
object not in US -80.0942028134 31.3838281161
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_596
object not in US -78.9906059249 31.5937244498
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_597
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_598
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_599
object not in US -79.6013789578 32.7002427669
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_20_600
object not in US -79.08617351 33.2548714348
object not in US -79.0798911531 33.308531738
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_601
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_602
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_603
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_604
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_24_605
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_24_606
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_607
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_19_19_608
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_609
object not in US -85.0911897899 27.2389449027
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_610
object not in US -91.3165752829 28.2979550931
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_611
object not in US -95.2043995359 28.2520952887
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_612
object not in US -94.2940176801 28.4480244629
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_613
object not in US -84.6835461725 28.6253327839
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_22_614
object not in US -89.4766088439 28.8429743301
object not in US -90.4616894409 28.8162439668
object not in US -90.3694539326 28.8435122921
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_23_615
object not in US -94.9563435748 28.8018079851
object not in US -94.9549812607 28.7748670604
object not in US -94.8961992933 28.8311234445
object not in US -95.0499620222 28.8251326385
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_616
object not in US -90.7705343638 28.9496014939
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_23_617
object not in US -88.6134691292 28.9174340163
object not in US -88.9523758885 28.9206607151
object not in US -89.3531044892 28.8963468328
object not in US -88.8602584379 28.8929019671
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_618
object not in US -88.4556015373 29.1583877824
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_619
object not in US -87.9614901203 29.1514787329
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_620
object not in US -84.2436512956 29.3083556755
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_21_621
object not in US -91.5181237312 29.4554512594
object not in US -91.6415805927 29.4269541616
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_622
object not in US -87.9862562541 29.4486397098
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_623
object not in US -80.2404739135 29.3363976223
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_624
object not in US -80.064415092 29.5395176913
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_21_625
object not in US -79.224226725 30.0950685518
object not in US -79.2492854738 30.151374486
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_626
object not in US -80.8251733177 30.3812451256
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_627
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_628
object not in US -80.328045849 30.6429664703
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_629
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_630
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_631
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_21_632
object not in US -80.1209408285 31.7379816757
object not in US -80.1413762183 31.847857907
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_633
object not in US -80.3503824802 31.6738078718
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_634
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_635
object not in US -79.5810136783 31.723307056
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_636
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_24_637
object not in US -79.308144122 32.7311006697
object not in US -79.5146519191 32.6121465818
object not in US -79.4616983962 32.7975664084
object not in US -79.4647144755 32.770718291
object not in US -79.4358084326 32.7413311921
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_638
object not in US -78.5941861972 32.5089154697
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_639
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_640
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_20_641
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_20_22_642
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_643
object not in US -85.8404570196 25.2740074504
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_644
object not in US -85.3271596773 26.089607904
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_645
object not in US -85.1607419842 26.4332837244
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_646
object not in US -84.9589842761 26.8563594418
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_22_647
object not in US -96.6898069201 27.5615302636
object not in US -96.6934405125 27.615317869
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_648
object not in US -84.7137906582 27.4933056592
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_649
object not in US -79.8539005756 27.3844189107
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_650
object not in US -84.5949278312 28.0008332627
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_651
object not in US -83.770316825 27.9899333081
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_652
object not in US -91.7757785911 28.2923676376
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_653
object not in US -91.533814253 28.4842577998
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_22_654
object not in US -95.497530512 28.5636530255
object not in US -95.2872197093 28.6535445237
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_22_655
object not in US -89.2926653045 28.7342166316
object not in US -89.5388179845 28.7083771429
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_656
object not in US -88.4894044311 28.969972609
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_24_657
object not in US -93.2161072913 29.2622461753
object not in US -93.4333930914 29.2835990817
object not in US -93.6806723835 29.2767403929
object not in US -93.898089363 29.2973062247
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_22_658
object not in US -83.228410619 29.2046864014
object not in US -83.2069401051 29.0684373316
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_659
object not in US -87.3675732642 29.4104689084
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_660
object not in US -87.8617709073 29.4736097798
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_661
object not in US -91.9261528751 29.7198007859
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_662
object not in US -79.8791279893 29.5250307605
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_22_663
object not in US -80.1644150264 30.0889116335
object not in US -80.2697214032 30.2864906605
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_664
object not in US -79.6618451167 30.1037926257
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_665
object not in US -80.323886985 30.3718092545
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_666
object not in US -81.3551225739 30.7695557284
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_667
object not in US -79.7572656586 30.6804329182
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_668
object not in US -79.424182603 30.8434376531
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_669
object not in US -78.8925210962 30.7990610719
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_670
object not in US -80.3159165255 31.0754244477
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_22_671
object not in US -80.3830387145 31.3512259359
object not in US -80.608428046 31.6383842898
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_672
object not in US -81.1414676424 31.377736598
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_673
object not in US -78.6227388514 31.209676935
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_674
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_675
object not in US -79.5671508462 31.5596132135
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_676
object not in US -79.0629295159 31.5184522356
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_677
object not in US -79.6898418399 31.8944730359
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_678
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_679
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_680
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_21_681
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_21_23_682
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_683
object not in US -85.3210248196 25.5781312542
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_684
object not in US -84.9779383521 26.4799348427
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_24_685
object not in US -84.5914684854 26.9488518878
object not in US -84.2217139915 27.0671671512
object not in US -83.9466874399 27.1081410676
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_686
object not in US -84.4741312276 27.4290834964
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_687
object not in US -83.7093694819 27.9869192009
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_688
object not in US -80.0498311294 27.8599299201
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_689
object not in US -91.1328806751 28.299725447
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_690
object not in US -90.2454252585 28.4932609359
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_691
object not in US -96.0683287508 28.3487112149
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_692
object not in US -88.3674566047 28.8875567393
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_693
object not in US -80.3247460721 28.8013388562
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_694
object not in US -80.6413322717 29.3663190656
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_695
object not in US -79.3647160932 29.6730886029
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_696
object not in US -78.9390248696 30.3962903614
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_697
object not in US -80.6640019724 30.7488067043
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_698
object not in US -79.5102999935 30.6335949105
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_24_699
object not in US -81.2242914214 31.1667907427
object not in US -81.2680222571 31.0343946723
object not in US -81.1878924435 31.2184722449
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_24_700
object not in US -79.1778946861 31.067149596
object not in US -79.2538414165 31.2360880606
object not in US -79.1940627454 31.2040408035
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_701
object not in US -80.9900381985 31.6380868467
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_702
object not in US -79.8969152778 31.7480136465
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_703
object not in US -79.2756017694 31.8884162251
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_704
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_705
object not in US -78.9638589329 32.9196790557
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_706
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_707
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_708
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_709
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_22_22_710
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_711
object not in US -84.5692308791 26.2473489664
object not in US -84.1136567586 26.3344207235
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_712
object not in US -83.8430183308 27.80455678
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_713
object not in US -79.8401013303 27.8161622502
object not in US -79.8455938991 28.0601614984
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_714
object not in US -79.9535831238 28.2041064974
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_715
object not in US -80.2766714469 29.2849977021
object not in US -80.1906853168 29.5221536381
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_716
object not in US -80.5378187233 29.7919048471
object not in US -80.4645059201 30.2197624475
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_717
object not in US -79.0430099141 29.4833871248
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_718
object not in US -80.0512478282 29.9718785583
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_719
object not in US -79.3572914818 30.0248075974
object not in US -79.4105047504 30.110500683
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_720
object not in US -81.3002204996 30.3328470487
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_721
object not in US -80.0379625675 30.4042850251
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_722
object not in US -79.2917821295 30.6157301192
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_723
object not in US -78.8362628519 30.7399984782
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_724
object not in US -79.8795703326 31.3131993766
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_725
object not in US -79.0728281541 31.7090513992
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_726
object not in US -79.7127322878 31.9775456908
object not in US -79.5860656962 31.967577808
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_727
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_728
object not in US -79.2072551347 32.2080602424
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_729
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_730
object not in US -79.7088909617 32.6002940011
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_731
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_24_732
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_23_23_733
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_734
object not in US -83.6214330839 27.9285287847
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_735
object not in US -79.9095092808 28.6337328079
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_736
object not in US -89.1331849091 29.3805643213
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_737
object not in US -92.9795379221 29.6187775213
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_738
object not in US -79.2270326651 29.2279801154
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_739
object not in US -88.874641415 30.3229026487
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_740
object not in US -80.9397573956 30.497605307
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_741
object not in US -80.1013215419 31.9261010034
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_742
object not in US -80.9088618573 31.8219718039
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_743
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_744
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_745
1km_on_3km_pbl1_WSPD10MAX_20091224-1200_24_24_746
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2009122412_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20100120-1200_09_09_000
3km_pbl1_WSPD10MAX_20100120-1200_11_17_001
object not in US -88.0308588798 28.7749243433
object not in US -87.7780574718 29.0674960429
object not in US -87.5567108621 29.2792979927
object not in US -87.2399246295 29.542713471
object not in US -86.8299422821 29.7491730043
object not in US -86.3870947723 29.9534690528
object not in US -85.9769344629 30.0763317242
3km_pbl1_WSPD10MAX_20100120-1200_12_12_002
3km_pbl1_WSPD10MAX_20100120-1200_15_15_003
object not in US -86.6597976822 30.1767617827
3km_pbl1_WSPD10MAX_20100120-1200_15_15_004
3km_pbl1_WSPD10MAX_20100120-1200_16_17_005
3km_pbl1_WSPD10MAX_20100120-1200_16_16_006
3km_pbl1_WSPD10MAX_20100120-1200_17_19_007
3km_pbl1_WSPD10MAX_20100120-1200_18_20_008
3km_pbl1_WSPD10MAX_20100120-1200_19_19_009
3km_pbl1_WSPD10MAX_20100120-1200_19_20_010
3km_pbl1_WSPD10MAX_20100120-1200_20_22_011
3km_pbl1_WSPD10MAX_20100120-1200_20_20_012
3km_pbl1_WSPD10MAX_20100120-1200_20_20_013
3km_pbl1_WSPD10MAX_20100120-1200_21_21_014
3km_pbl1_WSPD10MAX_20100120-1200_21_21_015
3km_pbl1_WSPD10MAX_20100120-1200_22_23_016
3km_pbl1_WSPD10MAX_20100120-1200_23_23_017
object not in US -88.4312129002 28.7535026267
3km_pbl1_WSPD10MAX_20100120-1200_23_23_018
object not in US -87.9659848486 30.4197785488
3km_pbl1_WSPD10MAX_20100120-1200_23_24_019
3km_pbl1_WSPD10MAX_20100120-1200_24_24_020
object not in US -87.6172303776 29.3343983079
3km_pbl1_WSPD10MAX_20100120-1200_24_24_021
object not in US -87.0998584531 30.0794073791
3km_pbl1_WSPD10MAX_20100120-1200_24_24_022
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_10_10_000
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_11_11_001
object not in US -87.969336525 28.7739604382
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_11_11_002
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_11_11_003
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_14_14_004
object not in US -87.2058283774 29.64992255
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_14_14_005
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_15_16_006
object not in US -86.5077084981 30.0647658838
object not in US -86.2553096309 30.138690186
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_15_15_007
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_15_15_008
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_16_16_009
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_17_17_010
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_17_17_011
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_18_18_012
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_18_19_013
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_19_19_014
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_19_20_015
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_19_19_016
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_20_20_017
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_20_20_018
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_20_20_019
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_21_21_020
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_21_22_021
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_22_22_022
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_22_23_023
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_22_22_024
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_22_22_025
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_22_23_026
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_23_23_027
object not in US -88.1980928297 29.7215984322
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_23_23_028
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_23_23_029
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_23_23_030
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_23_23_031
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_23_24_032
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_033
object not in US -88.674721917 28.9450552534
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_034
object not in US -88.2080424951 29.1821409869
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_035
object not in US -87.7694461971 29.4450586167
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_036
object not in US -87.6013121796 29.9817322169
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_037
object not in US -87.19337152 30.0814712787
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_038
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_039
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_040
1km_on_3km_pbl1_WSPD10MAX_20100120-1200_24_24_041
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2010012012_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20101231-1200_01_06_000
object not in US -99.9243926083 24.5677882146
object not in US -100.004223759 24.7768277188
object not in US -100.065757902 24.7987509416
object not in US -99.9936779606 24.6699147217
object not in US -100.057796226 24.7185651501
object not in US -100.089878377 24.7428794426
3km_pbl1_WSPD10MAX_20101231-1200_01_01_001
object not in US -100.269498982 25.0514769133
3km_pbl1_WSPD10MAX_20101231-1200_01_01_002
object not in US -100.920728223 25.2922513029
3km_pbl1_WSPD10MAX_20101231-1200_01_01_003
3km_pbl1_WSPD10MAX_20101231-1200_01_01_004
3km_pbl1_WSPD10MAX_20101231-1200_01_01_005
3km_pbl1_WSPD10MAX_20101231-1200_01_01_006
3km_pbl1_WSPD10MAX_20101231-1200_01_01_007
3km_pbl1_WSPD10MAX_20101231-1200_02_02_008
3km_pbl1_WSPD10MAX_20101231-1200_03_03_009
3km_pbl1_WSPD10MAX_20101231-1200_04_04_010
object not in US -100.092539948 24.7696072911
3km_pbl1_WSPD10MAX_20101231-1200_04_04_011
3km_pbl1_WSPD10MAX_20101231-1200_04_04_012
3km_pbl1_WSPD10MAX_20101231-1200_04_04_013
3km_pbl1_WSPD10MAX_20101231-1200_12_12_014
3km_pbl1_WSPD10MAX_20101231-1200_14_14_015
3km_pbl1_WSPD10MAX_20101231-1200_16_16_016
3km_pbl1_WSPD10MAX_20101231-1200_17_17_017
3km_pbl1_WSPD10MAX_20101231-1200_17_18_018
3km_pbl1_WSPD10MAX_20101231-1200_18_20_019
3km_pbl1_WSPD10MAX_20101231-1200_18_19_020
3km_pbl1_WSPD10MAX_20101231-1200_19_19_021
3km_pbl1_WSPD10MAX_20101231-1200_19_19_022
3km_pbl1_WSPD10MAX_20101231-1200_19_20_023
3km_pbl1_WSPD10MAX_20101231-1200_19_22_024
3km_pbl1_WSPD10MAX_20101231-1200_19_20_025
3km_pbl1_WSPD10MAX_20101231-1200_20_21_026
3km_pbl1_WSPD10MAX_20101231-1200_20_20_027
3km_pbl1_WSPD10MAX_20101231-1200_20_23_028
3km_pbl1_WSPD10MAX_20101231-1200_20_21_029
3km_pbl1_WSPD10MAX_20101231-1200_21_21_030
object not in US -88.9687038435 30.2967010788
3km_pbl1_WSPD10MAX_20101231-1200_21_21_031
3km_pbl1_WSPD10MAX_20101231-1200_21_22_032
3km_pbl1_WSPD10MAX_20101231-1200_22_23_033
object not in US -89.0627152005 30.2704313795
object not in US -89.0937035944 30.2976355341
3km_pbl1_WSPD10MAX_20101231-1200_22_22_034
3km_pbl1_WSPD10MAX_20101231-1200_22_23_035
3km_pbl1_WSPD10MAX_20101231-1200_23_24_036
object not in US -90.952179661 25.4477210013
object not in US -90.6265426034 25.7185402502
3km_pbl1_WSPD10MAX_20101231-1200_23_23_037
3km_pbl1_WSPD10MAX_20101231-1200_23_23_038
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_03_000
object not in US -99.9217804518 24.5410665932
object not in US -99.9002228085 24.623609522
object not in US -99.932237315 24.6479606398
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_001
object not in US -101.080871188 24.5765668306
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_002
object not in US -100.223757891 24.8935240914
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_003
object not in US -100.441905615 25.2797366199
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_004
object not in US -100.920728223 25.2922513029
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_005
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_006
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_007
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_008
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_01_01_009
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_03_03_010
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_05_05_011
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_12_12_012
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_13_13_013
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_15_15_014
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_16_18_015
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_16_16_016
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_16_16_017
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_16_16_018
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_17_17_019
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_17_17_020
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_17_17_021
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_17_18_022
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_18_18_023
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_19_21_024
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_19_19_025
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_19_20_026
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_19_22_027
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_20_20_028
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_20_21_029
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_21_21_030
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_21_22_031
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_21_21_032
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_21_21_033
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_22_22_034
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_22_22_035
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_22_22_036
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_22_22_037
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_23_24_038
object not in US -90.9524329268 25.4745889346
object not in US -90.7452846568 25.6372488136
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_23_23_039
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_23_23_040
1km_on_3km_pbl1_WSPD10MAX_20101231-1200_23_23_041
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2010123112_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20110228-1200_01_01_000
object not in US -99.858870732 26.029227248
3km_pbl1_WSPD10MAX_20110228-1200_01_01_001
object not in US -99.9642661729 26.1828258679
3km_pbl1_WSPD10MAX_20110228-1200_01_01_002
object not in US -100.720388355 27.9051271824
3km_pbl1_WSPD10MAX_20110228-1200_01_01_003
3km_pbl1_WSPD10MAX_20110228-1200_01_01_004
3km_pbl1_WSPD10MAX_20110228-1200_01_01_005
3km_pbl1_WSPD10MAX_20110228-1200_01_01_006
3km_pbl1_WSPD10MAX_20110228-1200_01_01_007
3km_pbl1_WSPD10MAX_20110228-1200_01_01_008
3km_pbl1_WSPD10MAX_20110228-1200_01_01_009
3km_pbl1_WSPD10MAX_20110228-1200_01_01_010
3km_pbl1_WSPD10MAX_20110228-1200_02_08_011
object not in US -98.998676022 24.4776419641
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.9669392906 24.4530567091
object not in US -98.9669392906 24.4530567091
3km_pbl1_WSPD10MAX_20110228-1200_02_06_012
object not in US -98.5397296638 24.6449719672
object not in US -98.5397296638 24.6449719672
object not in US -98.5397296638 24.6449719672
object not in US -98.5397296638 24.6449719672
object not in US -98.5397296638 24.6449719672
3km_pbl1_WSPD10MAX_20110228-1200_02_02_013
3km_pbl1_WSPD10MAX_20110228-1200_03_03_014
3km_pbl1_WSPD10MAX_20110228-1200_04_05_015
3km_pbl1_WSPD10MAX_20110228-1200_05_05_016
3km_pbl1_WSPD10MAX_20110228-1200_05_05_017
3km_pbl1_WSPD10MAX_20110228-1200_05_05_018
3km_pbl1_WSPD10MAX_20110228-1200_05_07_019
3km_pbl1_WSPD10MAX_20110228-1200_06_06_020
3km_pbl1_WSPD10MAX_20110228-1200_06_06_021
3km_pbl1_WSPD10MAX_20110228-1200_06_06_022
3km_pbl1_WSPD10MAX_20110228-1200_07_07_023
3km_pbl1_WSPD10MAX_20110228-1200_07_07_024
3km_pbl1_WSPD10MAX_20110228-1200_08_08_025
3km_pbl1_WSPD10MAX_20110228-1200_09_09_026
3km_pbl1_WSPD10MAX_20110228-1200_10_10_027
3km_pbl1_WSPD10MAX_20110228-1200_12_12_028
3km_pbl1_WSPD10MAX_20110228-1200_12_12_029
3km_pbl1_WSPD10MAX_20110228-1200_12_12_030
3km_pbl1_WSPD10MAX_20110228-1200_13_13_031
3km_pbl1_WSPD10MAX_20110228-1200_13_13_032
3km_pbl1_WSPD10MAX_20110228-1200_13_13_033
3km_pbl1_WSPD10MAX_20110228-1200_13_13_034
3km_pbl1_WSPD10MAX_20110228-1200_14_14_035
3km_pbl1_WSPD10MAX_20110228-1200_14_14_036
3km_pbl1_WSPD10MAX_20110228-1200_14_14_037
3km_pbl1_WSPD10MAX_20110228-1200_15_15_038
3km_pbl1_WSPD10MAX_20110228-1200_18_18_039
object not in US -77.7125175562 33.8403136877
3km_pbl1_WSPD10MAX_20110228-1200_21_22_040
object not in US -77.5906589532 34.0188668026
object not in US -77.8092643836 33.8491378359
3km_pbl1_WSPD10MAX_20110228-1200_22_22_041
object not in US -78.691077027 33.5741718714
3km_pbl1_WSPD10MAX_20110228-1200_22_24_042
object not in US -78.2847340638 33.7018059279
object not in US -78.343897372 33.4901787041
object not in US -78.4426890111 32.9566792701
3km_pbl1_WSPD10MAX_20110228-1200_23_23_043
object not in US -80.4252505503 32.193767709
3km_pbl1_WSPD10MAX_20110228-1200_23_23_044
object not in US -80.0272215403 32.3267631179
3km_pbl1_WSPD10MAX_20110228-1200_24_24_045
object not in US -77.6690321991 32.9413538099
3km_pbl1_WSPD10MAX_20110228-1200_24_24_046
object not in US -79.2792991417 32.7016788962
3km_pbl1_WSPD10MAX_20110228-1200_24_24_047
object not in US -78.8584186234 33.2631314732
3km_pbl1_WSPD10MAX_20110228-1200_24_24_048
object not in US -78.0190984754 33.4885665949
3km_pbl1_WSPD10MAX_20110228-1200_24_24_049
object not in US -78.5334912946 33.5336678098
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_000
object not in US -99.8641403547 26.0828043238
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_001
object not in US -100.759526694 27.9830243343
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_002
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_003
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_004
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_005
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_006
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_007
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_008
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_01_01_009
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_02_08_010
object not in US -98.9692985882 24.4797932477
object not in US -98.908196034 24.4573369037
object not in US -98.908196034 24.4573369037
object not in US -98.8788225584 24.4594664863
object not in US -98.8788225584 24.4594664863
object not in US -98.9352178779 24.4284644012
object not in US -98.9669392906 24.4530567091
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_02_06_011
object not in US -98.5714227627 24.6696761061
object not in US -98.5419810241 24.6717260036
object not in US -98.5691637033 24.6429227087
object not in US -98.5397296638 24.6449719672
object not in US -98.5714227627 24.6696761061
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_03_03_012
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_04_05_013
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_05_05_014
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_06_07_015
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_07_07_016
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_08_09_017
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_09_10_018
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_09_09_019
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_09_09_020
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_10_10_021
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_10_10_022
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_10_10_023
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_11_11_024
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_11_11_025
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_11_11_026
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_11_11_027
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_11_11_028
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_11_11_029
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_030
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_031
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_032
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_033
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_034
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_035
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_036
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_037
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_13_038
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_12_12_039
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_040
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_041
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_042
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_043
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_044
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_045
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_046
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_047
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_048
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_049
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_13_13_050
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_051
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_052
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_053
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_054
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_055
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_056
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_057
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_058
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_059
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_14_14_060
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_15_15_061
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_15_15_062
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_15_15_063
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_15_15_064
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_16_16_065
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_17_17_066
object not in US -77.5618140459 34.2330428903
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_18_18_067
object not in US -78.5401028329 33.4800434653
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_19_19_068
object not in US -78.3927759626 33.3589266404
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_19_19_069
object not in US -77.9339662919 33.6435657459
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_21_21_070
object not in US -77.5439132811 34.1229729176
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_22_22_071
object not in US -80.2470467839 32.3702537879
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_22_24_072
object not in US -78.3881013219 33.6566115443
object not in US -78.0799336676 33.521112865
object not in US -77.9339662919 33.6435657459
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_22_22_073
object not in US -77.8127910805 33.8223519371
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_23_23_074
object not in US -80.494183934 32.1446057978
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_23_23_075
object not in US -79.9954273124 32.324358399
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_23_23_076
object not in US -78.0958479687 33.1429835064
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_24_24_077
object not in US -77.6901977067 32.7805358116
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_24_24_078
object not in US -78.9666772082 32.621819604
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_24_24_079
object not in US -77.9168768054 32.7742633589
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_24_24_080
object not in US -78.254302159 32.913043916
1km_on_3km_pbl1_WSPD10MAX_20110228-1200_24_24_081
object not in US -78.6431005781 33.4346444073
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2011022812_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20111222-1200_01_01_000
object not in US -99.9459188482 24.4852495864
3km_pbl1_WSPD10MAX_20111222-1200_03_03_001
object not in US -92.8507022891 29.4597791271
3km_pbl1_WSPD10MAX_20111222-1200_04_04_002
object not in US -91.7072979944 29.6419411655
3km_pbl1_WSPD10MAX_20111222-1200_05_05_003
object not in US -92.8970983654 27.8942664165
3km_pbl1_WSPD10MAX_20111222-1200_05_05_004
object not in US -91.8253676925 29.3165576301
3km_pbl1_WSPD10MAX_20111222-1200_06_06_005
object not in US -92.6829819749 27.8720287213
3km_pbl1_WSPD10MAX_20111222-1200_06_06_006
object not in US -92.2636713594 28.2037237065
3km_pbl1_WSPD10MAX_20111222-1200_06_06_007
object not in US -90.1560434048 30.1657975901
3km_pbl1_WSPD10MAX_20111222-1200_07_07_008
object not in US -91.9261989203 28.1553723219
3km_pbl1_WSPD10MAX_20111222-1200_07_07_009
object not in US -91.839517901 28.4262770585
3km_pbl1_WSPD10MAX_20111222-1200_07_07_010
object not in US -91.2314678633 28.8381105535
3km_pbl1_WSPD10MAX_20111222-1200_07_07_011
object not in US -89.9376000079 30.1388944489
3km_pbl1_WSPD10MAX_20111222-1200_08_08_012
object not in US -91.4084199875 28.2969703485
3km_pbl1_WSPD10MAX_20111222-1200_08_08_013
object not in US -91.4441713018 28.6471009564
3km_pbl1_WSPD10MAX_20111222-1200_08_08_014
object not in US -89.9071508066 29.3564808084
3km_pbl1_WSPD10MAX_20111222-1200_09_09_015
object not in US -90.8889181396 28.4095075993
3km_pbl1_WSPD10MAX_20111222-1200_09_09_016
object not in US -88.7530947065 30.0519505139
3km_pbl1_WSPD10MAX_20111222-1200_10_10_017
object not in US -88.9170925043 29.3249706328
3km_pbl1_WSPD10MAX_20111222-1200_10_10_018
object not in US -88.473848047 29.9680037973
3km_pbl1_WSPD10MAX_20111222-1200_10_10_019
object not in US -88.2519673676 30.1810713075
3km_pbl1_WSPD10MAX_20111222-1200_11_11_020
object not in US -88.7620609787 29.3505456241
3km_pbl1_WSPD10MAX_20111222-1200_11_11_021
object not in US -88.102273934 29.8551404596
3km_pbl1_WSPD10MAX_20111222-1200_11_11_022
object not in US -88.0329571157 30.2049146701
3km_pbl1_WSPD10MAX_20111222-1200_11_11_023
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_01_01_000
object not in US -99.9459188482 24.4852495864
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_01_01_001
object not in US -100.253226609 24.8910713556
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_03_03_002
object not in US -92.9419888008 29.4037502083
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_04_05_003
object not in US -91.9811242384 29.3682062343
object not in US -91.7006933293 29.264315151
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_05_05_004
object not in US -92.8079453591 27.9771525313
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_05_05_005
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_06_06_006
object not in US -92.7090306303 27.7097441607
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_06_06_007
object not in US -92.4139368574 28.0931094161
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_06_06_008
object not in US -92.0807433657 28.2338149975
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_06_06_009
object not in US -91.4505441158 29.0785608876
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_06_06_010
object not in US -90.1560434048 30.1657975901
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_07_07_011
object not in US -92.0412209959 27.8031472445
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_07_07_012
object not in US -91.86812367 28.3180057943
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_07_08_013
object not in US -91.5321342267 28.3764239558
object not in US -91.3165752829 28.2979550931
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_07_07_014
object not in US -91.2321458503 28.8920444828
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_07_07_015
object not in US -89.8751304201 30.1928137417
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_07_07_016
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_08_08_017
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_09_09_018
object not in US -90.9779240242 28.1123097747
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_09_09_019
object not in US -89.131743648 29.5424187305
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_09_09_020
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_09_09_021
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_10_022
object not in US -90.6417719434 28.1144556662
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_10_023
object not in US -90.3676331907 28.3581614965
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_11_024
object not in US -88.2222453631 30.0997099836
object not in US -87.8492642281 30.0400714289
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_10_025
object not in US -87.9961499924 30.4742233383
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_10_026
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_10_027
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_10_10_028
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_11_11_029
object not in US -89.9386940172 28.412598429
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_11_11_030
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_11_11_031
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_11_11_032
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_11_12_033
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_12_12_034
object not in US -87.7347121508 29.6063474234
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_12_12_035
object not in US -87.5078871319 29.9799634094
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_12_12_036
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_13_13_037
1km_on_3km_pbl1_WSPD10MAX_20111222-1200_18_18_038
object not in US -77.6553699048 34.2687421116
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2011122212_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20120122-1200_01_01_000
3km_pbl1_WSPD10MAX_20120122-1200_01_01_001
3km_pbl1_WSPD10MAX_20120122-1200_04_08_002
3km_pbl1_WSPD10MAX_20120122-1200_04_08_003
3km_pbl1_WSPD10MAX_20120122-1200_05_06_004
3km_pbl1_WSPD10MAX_20120122-1200_05_08_005
3km_pbl1_WSPD10MAX_20120122-1200_05_07_006
3km_pbl1_WSPD10MAX_20120122-1200_05_08_007
3km_pbl1_WSPD10MAX_20120122-1200_05_05_008
3km_pbl1_WSPD10MAX_20120122-1200_06_07_009
3km_pbl1_WSPD10MAX_20120122-1200_06_08_010
3km_pbl1_WSPD10MAX_20120122-1200_07_08_011
3km_pbl1_WSPD10MAX_20120122-1200_07_08_012
3km_pbl1_WSPD10MAX_20120122-1200_07_07_013
3km_pbl1_WSPD10MAX_20120122-1200_07_07_014
3km_pbl1_WSPD10MAX_20120122-1200_08_08_015
3km_pbl1_WSPD10MAX_20120122-1200_13_13_016
3km_pbl1_WSPD10MAX_20120122-1200_13_14_017
3km_pbl1_WSPD10MAX_20120122-1200_13_13_018
3km_pbl1_WSPD10MAX_20120122-1200_13_14_019
3km_pbl1_WSPD10MAX_20120122-1200_14_14_020
3km_pbl1_WSPD10MAX_20120122-1200_14_14_021
3km_pbl1_WSPD10MAX_20120122-1200_14_14_022
3km_pbl1_WSPD10MAX_20120122-1200_14_14_023
3km_pbl1_WSPD10MAX_20120122-1200_14_15_024
3km_pbl1_WSPD10MAX_20120122-1200_14_14_025
3km_pbl1_WSPD10MAX_20120122-1200_14_14_026
3km_pbl1_WSPD10MAX_20120122-1200_15_16_027
3km_pbl1_WSPD10MAX_20120122-1200_15_15_028
3km_pbl1_WSPD10MAX_20120122-1200_15_17_029
3km_pbl1_WSPD10MAX_20120122-1200_15_16_030
3km_pbl1_WSPD10MAX_20120122-1200_15_15_031
3km_pbl1_WSPD10MAX_20120122-1200_15_16_032
3km_pbl1_WSPD10MAX_20120122-1200_15_15_033
3km_pbl1_WSPD10MAX_20120122-1200_15_16_034
3km_pbl1_WSPD10MAX_20120122-1200_16_16_035
3km_pbl1_WSPD10MAX_20120122-1200_16_16_036
3km_pbl1_WSPD10MAX_20120122-1200_16_16_037
3km_pbl1_WSPD10MAX_20120122-1200_16_18_038
3km_pbl1_WSPD10MAX_20120122-1200_16_24_039
3km_pbl1_WSPD10MAX_20120122-1200_17_17_040
3km_pbl1_WSPD10MAX_20120122-1200_17_17_041
3km_pbl1_WSPD10MAX_20120122-1200_17_17_042
3km_pbl1_WSPD10MAX_20120122-1200_17_17_043
3km_pbl1_WSPD10MAX_20120122-1200_17_17_044
3km_pbl1_WSPD10MAX_20120122-1200_17_18_045
3km_pbl1_WSPD10MAX_20120122-1200_18_18_046
3km_pbl1_WSPD10MAX_20120122-1200_18_19_047
3km_pbl1_WSPD10MAX_20120122-1200_18_24_048
3km_pbl1_WSPD10MAX_20120122-1200_18_20_049
3km_pbl1_WSPD10MAX_20120122-1200_19_19_050
3km_pbl1_WSPD10MAX_20120122-1200_19_20_051
3km_pbl1_WSPD10MAX_20120122-1200_19_21_052
3km_pbl1_WSPD10MAX_20120122-1200_19_19_053
3km_pbl1_WSPD10MAX_20120122-1200_19_19_054
3km_pbl1_WSPD10MAX_20120122-1200_19_20_055
3km_pbl1_WSPD10MAX_20120122-1200_20_20_056
3km_pbl1_WSPD10MAX_20120122-1200_20_20_057
3km_pbl1_WSPD10MAX_20120122-1200_20_21_058
3km_pbl1_WSPD10MAX_20120122-1200_20_24_059
3km_pbl1_WSPD10MAX_20120122-1200_20_21_060
3km_pbl1_WSPD10MAX_20120122-1200_21_21_061
3km_pbl1_WSPD10MAX_20120122-1200_21_21_062
3km_pbl1_WSPD10MAX_20120122-1200_21_22_063
3km_pbl1_WSPD10MAX_20120122-1200_21_21_064
3km_pbl1_WSPD10MAX_20120122-1200_21_21_065
3km_pbl1_WSPD10MAX_20120122-1200_22_22_066
3km_pbl1_WSPD10MAX_20120122-1200_22_22_067
3km_pbl1_WSPD10MAX_20120122-1200_22_22_068
3km_pbl1_WSPD10MAX_20120122-1200_22_22_069
3km_pbl1_WSPD10MAX_20120122-1200_23_23_070
3km_pbl1_WSPD10MAX_20120122-1200_24_24_071
3km_pbl1_WSPD10MAX_20120122-1200_24_24_072
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_01_01_000
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_04_08_001
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_05_08_002
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_05_07_003
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_05_05_004
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_05_08_005
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_06_06_006
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_06_08_007
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_07_07_008
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_07_08_009
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_07_07_010
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_07_08_011
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_08_08_012
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_10_10_013
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_12_12_014
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_13_13_015
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_13_13_016
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_13_13_017
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_13_13_018
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_13_14_019
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_13_13_020
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_14_15_021
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_14_15_022
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_14_15_023
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_14_15_024
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_15_025
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_17_026
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_15_027
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_17_028
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_15_029
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_16_030
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_15_15_031
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_16_032
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_17_033
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_16_034
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_16_035
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_18_036
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_16_037
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_16_16_038
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_17_17_039
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_17_18_040
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_17_17_041
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_17_17_042
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_17_17_043
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_18_18_044
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_18_18_045
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_18_24_046
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_18_18_047
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_18_24_048
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_049
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_050
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_051
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_052
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_20_053
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_054
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_055
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_19_19_056
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_057
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_22_058
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_059
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_060
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_061
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_21_062
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_063
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_064
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_20_20_065
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_21_21_066
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_21_22_067
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_21_21_068
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_21_21_069
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_22_23_070
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_22_23_071
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_22_23_072
1km_on_3km_pbl1_WSPD10MAX_20120122-1200_22_23_073
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2012012212_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
3km_pbl1_WSPD10MAX_20120125-1200_01_01_000
object not in US -99.9459188482 24.4852495864
3km_pbl1_WSPD10MAX_20120125-1200_01_01_001
3km_pbl1_WSPD10MAX_20120125-1200_01_01_002
3km_pbl1_WSPD10MAX_20120125-1200_02_02_003
3km_pbl1_WSPD10MAX_20120125-1200_03_05_004
object not in US -96.38989619 28.5759884864
object not in US -96.3574982375 28.5506037621
object not in US -96.38989619 28.5759884864
3km_pbl1_WSPD10MAX_20120125-1200_03_03_005
3km_pbl1_WSPD10MAX_20120125-1200_04_04_006
3km_pbl1_WSPD10MAX_20120125-1200_04_04_007
3km_pbl1_WSPD10MAX_20120125-1200_05_05_008
3km_pbl1_WSPD10MAX_20120125-1200_05_06_009
3km_pbl1_WSPD10MAX_20120125-1200_06_07_010
3km_pbl1_WSPD10MAX_20120125-1200_07_07_011
3km_pbl1_WSPD10MAX_20120125-1200_07_07_012
3km_pbl1_WSPD10MAX_20120125-1200_08_08_013
3km_pbl1_WSPD10MAX_20120125-1200_13_13_014
3km_pbl1_WSPD10MAX_20120125-1200_14_14_015
object not in US -93.854414308 28.1923537655
3km_pbl1_WSPD10MAX_20120125-1200_14_15_016
object not in US -93.508674721 28.7958424397
object not in US -93.4817462737 28.9045055096
3km_pbl1_WSPD10MAX_20120125-1200_15_16_017
object not in US -94.5183998419 25.9876504218
object not in US -94.3425266328 26.07465004
3km_pbl1_WSPD10MAX_20120125-1200_15_15_018
object not in US -93.8868676338 27.4633351545
3km_pbl1_WSPD10MAX_20120125-1200_15_16_019
object not in US -93.3397316367 29.2590858744
object not in US -93.2842721493 29.4494270817
3km_pbl1_WSPD10MAX_20120125-1200_15_16_020
3km_pbl1_WSPD10MAX_20120125-1200_15_15_021
3km_pbl1_WSPD10MAX_20120125-1200_16_16_022
object not in US -93.2330791965 29.7745977766
3km_pbl1_WSPD10MAX_20120125-1200_16_16_023
3km_pbl1_WSPD10MAX_20120125-1200_17_17_024
3km_pbl1_WSPD10MAX_20120125-1200_17_17_025
3km_pbl1_WSPD10MAX_20120125-1200_17_18_026
3km_pbl1_WSPD10MAX_20120125-1200_18_20_027
object not in US -92.8048857312 27.8693856059
object not in US -92.5979195989 28.1164354141
object not in US -92.3560592361 28.2290053871
3km_pbl1_WSPD10MAX_20120125-1200_19_19_028
object not in US -92.2343108531 28.2581685836
3km_pbl1_WSPD10MAX_20120125-1200_19_19_029
object not in US -92.6677668376 28.438572518
3km_pbl1_WSPD10MAX_20120125-1200_20_20_030
object not in US -92.6885567283 26.9557868518
3km_pbl1_WSPD10MAX_20120125-1200_21_23_031
object not in US -92.7012548263 26.309404482
object not in US -92.3386917197 26.2090988947
object not in US -92.0378386734 26.1605734812
3km_pbl1_WSPD10MAX_20120125-1200_21_23_032
object not in US -92.3267953631 26.9899447672
object not in US -92.1153214226 26.9936856162
object not in US -91.8736185008 26.9975247841
3km_pbl1_WSPD10MAX_20120125-1200_22_22_033
object not in US -92.0009562503 27.3187718468
3km_pbl1_WSPD10MAX_20120125-1200_22_22_034
object not in US -91.6280620051 28.6179178038
3km_pbl1_WSPD10MAX_20120125-1200_22_22_035
object not in US -91.4142242164 28.7013718596
3km_pbl1_WSPD10MAX_20120125-1200_23_23_036
object not in US -91.8044189763 26.5139594495
3km_pbl1_WSPD10MAX_20120125-1200_23_24_037
object not in US -91.2643390752 28.9996162841
object not in US -91.08021938 29.0822209443
3km_pbl1_WSPD10MAX_20120125-1200_24_24_038
object not in US -91.594790986 26.5706353309
3km_pbl1_WSPD10MAX_20120125-1200_24_24_039
object not in US -91.2374000108 26.8707802823
3km_pbl1_WSPD10MAX_20120125-1200_24_24_040
object not in US -91.1206156587 27.2219426919
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_01_01_000
object not in US -99.9459188482 24.4852495864
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_01_01_001
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_02_03_002
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_04_04_003
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_04_04_004
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_04_04_005
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_04_05_006
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_04_04_007
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_05_05_008
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_05_05_009
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_07_07_010
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_08_08_011
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_10_10_012
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_10_10_013
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_10_10_014
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_11_11_015
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_12_13_016
object not in US -94.2043943146 28.504980187
object not in US -94.1157960632 28.5888204635
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_12_12_017
object not in US -94.322439049 29.0947515867
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_13_13_018
object not in US -94.1780513251 27.8854242528
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_13_14_019
object not in US -93.7455915146 29.3558305655
object not in US -93.7177433865 29.4376125082
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_13_13_020
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_14_14_021
object not in US -93.6534158089 28.5489639335
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_14_14_022
object not in US -93.7311461854 28.9784201375
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_14_14_023
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_14_14_024
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_15_15_025
object not in US -93.475050179 28.7158227342
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_15_15_026
object not in US -93.2833632595 29.422462425
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_15_15_027
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_15_15_028
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_15_15_029
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_16_16_030
object not in US -94.5111655549 25.8264588201
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_16_16_031
object not in US -92.9290216658 28.9723274882
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_16_17_032
object not in US -93.0072242279 29.5101839976
object not in US -93.0432691665 29.6712628954
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_16_16_033
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_16_16_034
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_16_17_035
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_17_17_036
object not in US -93.863755652 26.0904253473
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_17_17_037
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_18_18_038
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_18_18_039
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_19_19_040
object not in US -93.0182539287 26.8674941896
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_19_19_041
object not in US -92.6241723405 27.9541339987
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_19_19_042
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_20_20_043
object not in US -93.1104043256 25.9501011017
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_21_22_044
object not in US -92.6377125518 26.1762267531
object not in US -92.3967137093 26.1272873918
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_21_21_045
object not in US -92.2361656217 26.991591594
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_22_22_046
object not in US -92.1028292701 26.4016479238
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_22_22_047
object not in US -91.9309174146 26.8350964609
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_22_22_048
object not in US -91.7613219186 27.4839934948
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_22_22_049
object not in US -91.7098764122 28.023685618
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_23_23_050
object not in US -92.0345696318 25.9992373507
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_23_23_051
object not in US -91.7714939669 26.3529697757
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_23_23_052
object not in US -91.3875393649 26.8153643874
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_23_24_053
object not in US -91.4494233587 26.9223581373
object not in US -91.238067842 26.9246212763
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_23_23_054
object not in US -91.338401442 27.6508508363
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_23_23_055
object not in US -91.4978039265 28.1341937883
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_056
object not in US -91.9344833556 25.4631509564
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_057
object not in US -91.6425960946 25.8167951471
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_058
object not in US -91.470095507 26.2761673594
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_059
object not in US -91.3247177323 26.6276153152
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_060
object not in US -90.7849235232 26.9013501884
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_061
object not in US -90.5768707417 27.4680324526
1km_on_3km_pbl1_WSPD10MAX_20120125-1200_24_24_062
object not in US -91.1638153383 28.3264060499
created /glade/p/work/ahijevyc/hagelslag/out/3km_pbl1_1km_on_3km_pbl1_2012012512_WSPD10MAX_16_WSPD10MAX_16.png dpi=125
/glade/apps/opt/matplotlib/1.4.3/gnu-westmere/4.8.2/lib/python2.7/site-packages/matplotlib-1.4.3-py2.7-linux-x86_64.egg/matplotlib/pyplot.py:424: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).
  max_open_warning, RuntimeWarning)

In [4]:
l =ax[-1].legend(legend_stuff)

In [5]:
ax[-1].legend(patches)


Out[5]:
<matplotlib.legend.Legend at 0x2b3d88ee3450>

In [5]: