Skip to content

Instantly share code, notes, and snippets.

@alexmacy
Last active May 17, 2019 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alexmacy/8b69eb42ecfd47665c332235dbe1cdd1 to your computer and use it in GitHub Desktop.
Save alexmacy/8b69eb42ecfd47665c332235dbe1cdd1 to your computer and use it in GitHub Desktop.
OPD License Plate scans

I'm a big fan of locations and patterns, and particularly social patterns relating to location, movement, and usage trends. I'd been looking for a way to explore this when I heard about the Oakland Police Department having released all their license plate reader data.

I filtered this data to license plates that appeared in a minimum of 15 distinct locations, and then removed obvious errors (like 'CAUTION' and other street signs) as well as government vehicles like buses and police cars (these have numeric digits only, rather than the alpha-numeric). The result was 205 plates, with 6,623 unique scan events.

It's not really enough data to find trends, but it was a good exercise in learning mechanisms that can be used to find and rank common traits. For this, I compared the locations that each license plate had been scanned and calculated the similarity to the other license plates. This was done by looking at the co-occurance of the geographic coordinates after having rounded them to two decimal points.

On load, each scan event is displayed as a SVG path, and a list of all the license plates is created on the left side. Hovering over this list and/or clicking on a license plate displays only that plate's events. This also compares this plate's events to teh events of all the other plates and returns a list of the 30 most similar plates on the right side of the window. Hovering over the list of compared license plates (or clicking on one) displays the compared plate's events as blue markers.

Alternatively, you can click on a marker and the list on the left will scroll to that plate and display it's other events.

<!DOCTYPE html>
<html lang="en">
<head>
<title>opd_lpd_leaflet</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.7/d3-tip.min.js"></script>
<style>
body {
margin: 0;
font-family: 'Roboto', 'sans-serif';
line-height: 30px;
}
#map {
position: absolute;
width: 100%;
height: 100%;
}
.side-container {
position: absolute;
z-index: 5;
width: 8%;
max-height: 83%;
margin-top: 6%;
padding: 5px;
border: 1px solid black;
border-radius: 5px;
background-color: rgba(255, 255, 255, .9);
overflow-y: auto;
overflow-x: hidden;
}
.count-container {
position: absolute;
z-index: 5;
width:20%;
margin-top: 10px;
margin-left: 40%;
padding: 5px;
border: 1px solid black;
border-radius: 5px;
background-color: rgba(255, 255, 255, .9);
}
.selected {
background-color: lightblue;
font-size: 20px;
font-weight: bold;
}
.hovered {
font-size: 20px;
font-weight: bold;
}
.d3-tip {
line-height: 1;
padding: 12px;
background: rgba(10, 10, 10, 0.9);
color: #fff;
border-radius: 5px;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="master-list-container" class="side-container" style="left:10px;visibility:hidden;text-align:left;">
<div id="master-list"></div>
</div>
<div id="compare-list-container" class="side-container" style="right:10px;visibility:hidden;text-align:right;">
<div id="compare-list"></div>
</div>
<div id="count-container" class="count-container" style="visibility:hidden">
<span class="col-sm-8" id="count-span" style="text-align: right">
<span id="count"></span> of <span id="count-total"></span> events visible
<button class="col-sm-9" type="button" onclick="showAllMarkers();" style="float:right;margin-top" >Show All</button>
</div>
</body>
<script>
//to store the data imported by d3.json
var scanData = [],
map,
g,markerCount;
loadMap();
loadData();
function loadMap() {
map = L.map('map').setView([37.80, -122.22], 12);
var Stamen_TonerLite = L.tileLayer('http://stamen-tiles-{s}.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}.png', {
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> &mdash; Map data &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>',
minZoom: 11,
maxZoom: 16
});
Stamen_TonerLite.addTo(map)
//initialize the SVG layer
map._initPathRoot()
//re-size/re-position the markers when the map is zoomed or moved
map.on("viewreset", updateSVGMarkers)
}
function loadData() {
d3.json('opd_lpd.json', function(error, jsonData) {
scanData = jsonData;
loadD3Markers();
updateSVGMarkers();
loadMasterList();
})
};
function loadD3Markers() {
//create a 'g' element for each license
d3.select("#map").select("svg").selectAll('g')
.data(scanData)
.enter().append('g')
//attach the license to the parent as a class for faster selecting when showing/hiding
.attr('class', function(d) { return 'lp' + d.license })
//create a 'path' marker for each location associated with the license plate
.selectAll('path')
.data(function(d) { return d.locations;})
.enter().append('path')
.attr('d', 'M04 16 S14 0 4 00 S4 16 4 16')
.style("stroke", "black")
.style("stroke-width", "1")
.style("fill-opacity", .6)
.style("fill", "red")
.classed('shown', true)
.style('cursor', 'pointer')
.call(markerTip)
//on click, display only this license's markers and scroll the master list until it is displayed
.on('click', function() {
var thisLicense = d3.select(this.parentNode).data()[0].license;
//deselect anything currently selected in the lists
d3.selectAll('.selected').classed('selected', false);
//set this license as 'selected'
d3.select('#ml_' + thisLicense).classed('selected', true);
//hide all currently displayed markers
d3.selectAll('.shown')
.style('visibility','hidden')
.classed('shown', false);
//select and display markers associated with this license plate
d3.selectAll('.lp' + thisLicense).selectAll('*')
.style('visibility', 'visible')
.style('fill', 'red')
.classed('shown', true)
//scroll to specified license plate
d3.select('#master-list-container').transition().duration(3000).ease('cubic-in-out')
.tween("uniquetweenname", scrollList(d3.select('#ml_' + thisLicense)[0][0]))
.each("end", loadCompareList(d3.select('#ml_' + thisLicense).data()[0]));
})
.on('mouseover', markerTip.show)
.on('mouseout', markerTip.hide);
//count the markers for the total to be displayed in the count-container
d3.select('#count-total').html(d3.selectAll('path')[0].length);
}
function updateSVGMarkers() {
//reposition the markers to their locations in relation to the map tiles
d3.selectAll('path')
.attr("transform", function(d) {
return "translate("+
map.latLngToLayerPoint(new L.LatLng(d.split(',')[0],d.split(',')[1])).x +","+
map.latLngToLayerPoint(new L.LatLng(d.split(',')[0],d.split(',')[1])).y +")";
});
}
function loadMasterList() {
//load the list for the container on the left side, sorted by number of scans
d3.select('#master-list').selectAll('div')
.data(_.sortBy(scanData, function(d) {return d.count}).reverse())
.enter().append('div')
.style('cursor', 'pointer')
//set the id for easy finding when automating the scroll
.attr('id', function(d) {return 'ml_' + d.license})
.html(function(d) {return d.license})
.on('mouseover', function(d) {
//if no line has been selected (highlighted):
//hide all but the associated markers
//load list of the most similar license plates
//update the count at the top of the window
if (!d3.select("#master-list").selectAll('.selected')[0].length) {
d3.selectAll('.shown')
.style('visibility','hidden')
.classed('shown', false);
d3.selectAll('.lp' + d.license).selectAll('*')
.style('visibility', 'visible')
.style('fill', 'red')
.classed('shown', true)
loadCompareList(d)
updateCount();
}
//zoom on the line in the list, regardless of other lines being selected
d3.select(this).classed('hovered', true);
})
.on('mouseout', function() {
//if the line is not selected (highlighted):
if (!d3.select(this).classed('selected')) {
d3.select(this).classed('hovered', false)
}
})
.on('click', function(d) {
var thisRow = d3.select(this);
//toggle the selection, only one can be selected at a time
if (thisRow.classed('selected')) {
thisRow.classed('selected', false)
showAllMarkers();
} else {
d3.select('#master-list').selectAll('.selected').classed('selected', false);
//the rest of this acts like a mouseover event, but lasts until deselected
d3.selectAll('.hovered').classed('hovered', false)
thisRow.classed('selected', true);
loadCompareList(d);
d3.selectAll('.shown')
.style('visibility', 'hidden')
.classed('shown', false);
d3.selectAll('.lp' + d.license).selectAll('*')
.style('visibility', 'visible')
.style('fill', 'red')
.classed('shown', true);
}
updateCount();
})
//un-hide the master list and count containers
d3.select('#master-list-container').style('visibility', 'visible');
d3.select('#count-container').style('visibility', 'visible');
updateCount();
}
function loadCompareList(A) {
//check if the similarities have already been calculated
//this is processed per select or hovered license ('A') on an as-needed basis
//this saves time and space instead of processing through the whole list on the original load
//the result is stored in the object so it only needs to be done once per license
if (!A.similarities) {
A.similarities = [];
//it then compares the scans for each license and returns the 30 most similar licenses, sorted by similarity
scanData.forEach(function(B, i) {
if (A.license != B.license) {
var locationsA = _.uniq(A.locations.map(function(d) {
return [d3.round(+d.split(',')[0],2), d3.round(+d.split(',')[1],2)].join()}));
var locationsB = _.uniq(B.locations.map(function(d) {
return [d3.round(+d.split(',')[0],2), d3.round(+d.split(',')[1],2)].join()}));
//count the common locations and divide by the combined number of locations
var thisSimVal = _.intersection(locationsA,locationsB).length/(locationsA.length + locationsB.length);
A.similarities.push({
"license": B.license,
"value":thisSimVal,
});
};
})
A.similarities = _.sortBy(A.similarities, function(d) {return d.value}).reverse().slice(0,30)
};
//remove any previously loaded list and replace with the new one
d3.select('#compare-list').selectAll('div').remove();
//the mouse events are like the master list, but multiple lines can be selected and the markers are blue
d3.select('#compare-list').selectAll('div')
.data(A.similarities)
.enter().append('div')
.html(function(d) {return d.license})
.on('mouseover', function(d) {
console.log(d3.format('%%')(d.value));
d3.select(this).classed('hovered', true);
d3.selectAll('.lp' + d.license).selectAll('*')
.style('visibility', 'visible')
.style('fill', 'steelblue')
.classed('shown', true);
updateCount();
})
.on('mouseout', function(d) {
if (!d3.select(this).classed('selected')) {
d3.select(this).classed('hovered', false);
d3.selectAll('.lp' + d.license).selectAll('*')
.style('fill', 'red')
.style('visibility', 'hidden')
.classed('shown', false);
}
updateCount();
})
.on('click', function() {
d3.select(this).classed('selected', !d3.select(this).classed('selected'));
})
d3.select('#compare-list-container').style('visibility', 'visible');
}
function updateCount() {
//load a running count of the displayed markers by counting all the markers currently visible
var shown = d3.selectAll('.shown')[0].length;
d3.select('#count').html(shown);
}
function showAllMarkers() {
//reset the view to show all markers, deselect anything from the lists, and hide the compare list
d3.selectAll('path')
.style('fill', 'red')
.style('visibility', 'visible')
.classed('shown', true);
d3.selectAll('.selected').classed('selected', false);
d3.select('#compare-list-container').style('visibility', 'hidden');
d3.select('#compare-list-container').select('#compare-list').selectAll('*').remove();
updateCount();
}
function scrollList(destinationLine) {
//scroll the master list to the selected license plate
var scrollTop = destinationLine.offsetTop;
var listHeight = document.getElementById('master-list-container').clientHeight
return function() {
var i = d3.interpolateNumber(this.scrollTop, scrollTop - (listHeight/2));
return function(t) {
this.scrollTop = i(t);
};
};
}
//tooltip for markers
var markerTip = d3.tip()
.attr('class', 'd3-tip')
.offset([-10, 0])
.html(function (d) {return d3.select(this.parentNode).data()[0].license;});
</script>
</html>
[
{
"license": "15485C1",
"locations": ["37.811618,-122.259803", "37.808550,-122.293795", "37.808550,-122.293796", "37.808690,-122.277945", "37.791655,-122.253995", "37.801465,-122.247211", "37.817501,-122.273925", "37.811548,-122.275628", "37.785698,-122.224683", "37.785703,-122.224471", "37.785763,-122.224643", "37.782336,-122.231828", "37.782340,-122.231828", "37.778198,-122.225616", "37.769628,-122.173113", "37.769368,-122.175698", "37.769888,-122.173763", "37.774030,-122.179781", "37.844201,-122.280738", "37.844203,-122.280738", "37.766908,-122.187008", "37.766911,-122.187008", "37.769286,-122.208865", "37.822375,-122.279208", "37.822421,-122.272793", "37.822421,-122.272795", "37.825180,-122.260461", "37.825231,-122.261188", "37.825248,-122.275390", "37.747603,-122.184465", "37.746605,-122.184530", "37.746755,-122.184630", "37.747106,-122.189198", "37.747283,-122.184973", "37.745408,-122.185613", "37.745848,-122.184326", "37.760991,-122.205403", "37.763768,-122.180388", "37.763783,-122.180351", "37.750998,-122.181976", "37.749713,-122.184716", "37.749828,-122.184558", "37.749846,-122.184613", "37.750006,-122.184068", "37.750011,-122.184180", "37.750065,-122.184140", "37.750108,-1"],
"count_dist": "36",
"count": "108",
"markerNums": []
},
{
"license": "6MZL248",
"locations": ["37.746286,-122.201418", "37.814786,-122.268215", "37.789095,-122.255208", "37.783046,-122.235345", "37.784171,-122.237166", "37.794370,-122.252263", "37.795550,-122.253616", "37.753318,-122.177191", "37.799753,-122.253278", "37.837216,-122.264100", "37.821468,-122.262395", "37.822691,-122.243538", "37.821880,-122.262345", "37.821503,-122.264981", "37.821743,-122.262345", "37.822030,-122.262248", "37.825021,-122.256736", "37.826666,-122.265118", "37.825655,-122.255113", "37.830188,-122.247530", "37.799021,-122.230595", "37.799093,-122.230863", "37.798966,-122.277111", "37.798810,-122.230640", "37.798840,-122.230741", "37.798896,-122.230685", "37.798933,-122.230686", "37.798950,-122.229673", "37.798978,-122.230621", "37.799081,-122.256653", "37.799155,-122.230796", "37.799168,-122.230715", "37.798120,-122.217820", "37.799871,-122.279933", "37.789178,-122.245791", "37.790335,-122.189236", "37.784573,-122.237780", "37.809743,-122.198001", "37.810018,-122.198220", "37.809141,-122.202778", "37.791161,-122.248711", "37.761078,-122.196885", "37.760220,-122.167755", "37.790328,-122.201345", "37.788650,-122.219330", "37.788733,-122.219403", "37.793346,-1"],
"count_dist": "36",
"count": "92",
"markerNums": []
},
{
"license": "8Z53113",
"locations": ["37.815661,-122.267910", "37.801551,-122.275136", "37.801556,-122.275135", "37.801563,-122.275146", "37.799020,-122.230743", "37.790640,-122.220311", "37.822043,-122.262255", "37.814458,-122.274576", "37.840315,-122.272648", "37.838071,-122.247093", "37.840735,-122.283123", "37.821905,-122.262298", "37.815058,-122.258646", "37.815060,-122.258645", "37.815063,-122.258628", "37.815083,-122.258558", "37.810408,-122.244873", "37.825966,-122.265345", "37.809991,-122.295308", "37.774518,-122.187926", "37.798928,-122.230591", "37.799155,-122.230445", "37.792263,-122.203923", "37.798760,-122.230675", "37.798761,-122.230690", "37.799460,-122.263318", "37.809111,-122.256963", "37.759836,-122.188941", "37.799021,-122.230578", "37.798973,-122.230691", "37.772316,-122.214726", "37.770638,-122.211375", "37.821578,-122.262266", "37.821581,-122.262266", "37.821583,-122.262265", "37.821583,-122.262263", "37.821585,-122.262261", "37.821585,-122.262263", "37.821586,-122.262263", "37.821586,-122.262265", "37.821588,-122.262265", "37.821590,-122.262266", "37.821591,-122.262263", "37.821593,-122.262263", "37.821595,-122.262261", "37.821596,-122.262263", "37.821598,-1"],
"count_dist": "25",
"count": "79",
"markerNums": []
},
{
"license": "1Z75271",
"locations": ["37.822455,-122.302388", "37.798761,-122.275518", "37.791883,-122.196723", "37.795823,-122.240601", "37.798831,-122.258810", "37.799823,-122.253246", "37.811643,-122.247715", "37.812643,-122.255518", "37.787110,-122.233406", "37.791188,-122.191751", "37.787626,-122.242965", "37.788401,-122.239225", "37.796456,-122.254565", "37.791623,-122.249255", "37.799768,-122.251965", "37.798130,-122.244855", "37.799688,-122.274856", "37.783145,-122.240280", "37.799256,-122.275348", "37.799270,-122.275365", "37.800038,-122.278700", "37.792231,-122.223843", "37.746385,-122.208441", "37.802075,-122.249801", "37.802098,-122.249760", "37.783856,-122.241688", "37.783813,-122.241530", "37.783838,-122.241568", "37.773258,-122.235246", "37.773263,-122.235223", "37.786238,-122.241813", "37.790978,-122.250191", "37.799331,-122.275831", "37.783855,-122.241483", "37.783858,-122.241435", "37.790360,-122.230295", "37.799833,-122.278805", "37.783866,-122.241473", "37.792753,-122.267648", "37.783931,-122.241748", "37.792741,-122.267570", "37.800071,-122.221113", "37.800103,-122.231870", "37.800488,-122.239690", "37.799856,-122.238743", "37.799091,-122.230816", "37.799223,-1"],
"count_dist": "26",
"count": "77",
"markerNums": []
},
{
"license": "9191FIF",
"locations": ["37.781860,-122.219180", "37.781860,-122.219183", "37.883110,-122.245758", "37.821946,-122.262366", "37.798768,-122.230703", "37.799041,-122.230806", "37.805013,-122.293773", "37.810213,-122.283568", "37.765883,-122.165811", "37.836955,-122.267961", "37.838073,-122.247093", "37.815998,-122.274066", "37.839268,-122.262103", "37.821915,-122.262273", "37.709978,-122.120023", "37.822008,-122.262255", "37.770680,-122.217365", "37.828715,-122.282568", "37.798870,-122.230586", "37.799105,-122.230853", "37.784385,-122.219250", "37.784386,-122.219251", "37.799161,-122.230998", "37.799113,-122.230883", "37.798846,-122.230728", "37.798868,-122.230733", "37.798873,-122.230705", "37.798930,-122.230758", "37.798933,-122.230706", "37.798978,-122.230623", "37.798761,-122.230688", "37.798780,-122.230721", "37.799125,-122.230863", "37.799145,-122.230846", "37.807893,-122.272468", "37.790508,-122.220153", "37.755326,-122.161206", "37.799080,-122.230835", "37.804046,-122.280720", "37.820128,-122.282278", "37.821588,-122.262178", "37.821630,-122.262301", "37.821773,-122.262175", "37.821825,-122.262190", "37.814748,-122.278066", "37.814205,-122.282583", "37.769091,-1"],
"count_dist": "26",
"count": "76",
"markerNums": []
},
{
"license": "9191PIF",
"locations": ["37.735066,-122.180466", "37.771686,-122.205938", "37.799103,-122.230870", "37.799030,-122.230866", "37.799108,-122.230786", "37.799155,-122.230856", "37.734486,-122.176693", "37.791076,-122.244151", "37.737456,-122.197651", "37.799120,-122.230880", "37.776258,-122.223456", "37.799108,-122.230871", "37.799121,-122.230878", "37.799130,-122.230855", "37.799136,-122.230828", "37.799871,-122.279933", "37.798936,-122.230771", "37.799005,-122.230781", "37.799013,-122.230785", "37.799083,-122.230826", "37.799085,-122.230843", "37.799090,-122.230825", "37.781803,-122.219225", "37.781861,-122.219181", "37.828715,-122.282596", "37.821896,-122.262363", "37.813658,-122.277108", "37.828743,-122.282573", "37.826263,-122.268830", "37.799128,-122.230855", "37.812748,-122.274000", "37.799008,-122.230606", "37.799028,-122.230676", "37.799030,-122.230665", "37.799136,-122.230821", "37.768463,-122.219860", "37.798923,-122.230740", "37.799140,-122.230941", "37.799026,-122.230770", "37.799066,-122.230833", "37.799088,-122.230873", "37.799093,-122.230876", "37.799096,-122.230851", "37.799098,-122.230796", "37.799098,-122.230850", "37.798865,-122.230595", "37.799115,-1"],
"count_dist": "20",
"count": "74",
"markerNums": []
},
{
"license": "14U6166",
"locations": ["37.784221,-122.221601", "37.781395,-122.234106", "37.781730,-122.233013", "37.799808,-122.275493", "37.799840,-122.275580", "37.799793,-122.275491", "37.798896,-122.275615", "37.797941,-122.272315", "37.793943,-122.216910", "37.793961,-122.216851", "37.797071,-122.276695", "37.815276,-122.279535", "37.798693,-122.275933", "37.798900,-122.275316", "37.848618,-122.265281", "37.848631,-122.265355", "37.799120,-122.275728", "37.799121,-122.275655", "37.798993,-122.275653", "37.799025,-122.275711", "37.799053,-122.275620", "37.798681,-122.275766", "37.783695,-122.222688", "37.851863,-122.239828", "37.799056,-122.275636", "37.799158,-122.275816", "37.798530,-122.275703", "37.798696,-122.275713", "37.798853,-122.275493", "37.798448,-122.275416", "37.803226,-122.284603", "37.786180,-122.246616", "37.793383,-122.267703", "37.795408,-122.227263", "37.795531,-122.246815", "37.793931,-122.250775", "37.794070,-122.250683", "37.794075,-122.250688", "37.809275,-122.190243", "37.814343,-122.246063", "37.804823,-122.207701", "37.804408,-122.263680", "37.798586,-122.275855", "37.798616,-122.275718", "37.798993,-122.275685", "37.799021,-122.277505", "37.799111,-1"],
"count_dist": "17",
"count": "70",
"markerNums": []
},
{
"license": "1D96836",
"locations": ["37.739706,-122.155580", "37.798841,-122.256711", "37.767808,-122.213805", "37.798710,-122.275661", "37.798703,-122.275716", "37.799411,-122.275555", "37.798910,-122.275806", "37.799325,-122.275601", "37.824893,-122.260338", "37.799013,-122.275725", "37.799088,-122.275716", "37.798855,-122.275663", "37.799666,-122.276083", "37.798928,-122.275721", "37.798943,-122.275315", "37.798965,-122.275260", "37.799201,-122.275873", "37.795681,-122.191016", "37.805093,-122.269823", "37.805043,-122.269851", "37.805045,-122.269853", "37.805065,-122.269848", "37.845150,-122.234351", "37.846378,-122.251921", "37.800126,-122.277833", "37.798595,-122.275986", "37.798965,-122.275345", "37.811346,-122.266753", "37.798943,-122.275676", "37.798946,-122.275750", "37.798951,-122.275548", "37.798960,-122.275851", "37.798981,-122.275738", "37.798830,-122.275766", "37.798881,-122.275546", "37.798915,-122.275671", "37.798921,-122.275633", "37.798431,-122.275668", "37.798471,-122.275886", "37.799035,-122.275600", "37.799041,-122.275600", "37.799043,-122.275810", "37.798553,-122.275760", "37.798768,-122.275633", "37.798775,-122.275678", "37.798790,-122.275635", "37.799280,-1"],
"count_dist": "19",
"count": "70",
"markerNums": []
},
{
"license": "1Z73724",
"locations": ["37.787611,-122.204930", "37.772230,-122.190953", "37.771630,-122.190456", "37.781273,-122.232441", "37.779125,-122.225053", "37.781706,-122.208961", "37.782760,-122.200643", "37.783700,-122.201683", "37.783015,-122.198335", "37.799051,-122.230851", "37.785248,-122.189560", "37.747596,-122.208393", "37.782728,-122.203660", "37.767763,-122.191096", "37.755075,-122.178373", "37.756920,-122.201761", "37.787933,-122.207468", "37.792346,-122.215953", "37.791295,-122.222905", "37.795165,-122.212165", "37.790305,-122.208133", "37.790403,-122.208206", "37.794375,-122.223141", "37.794051,-122.211293", "37.791431,-122.222781", "37.786791,-122.221380", "37.781365,-122.222770", "37.781950,-122.219106", "37.792810,-122.219188", "37.758486,-122.198643", "37.740083,-122.178713", "37.768185,-122.189816", "37.780170,-122.220481", "37.785358,-122.228140", "37.767146,-122.203651", "37.791858,-122.242975", "37.744915,-122.169448", "37.771003,-122.194608", "37.799093,-122.275748", "37.796011,-122.254135", "37.790718,-122.221063", "37.790723,-122.221063", "37.790726,-122.221070", "37.790726,-122.221068", "37.790726,-122.221046", "37.790728,-122.221071", "37.790730,-1"],
"count_dist": "29",
"count": "64",
"markerNums": []
},
{
"license": "5DIP938",
"locations": ["37.835148,-122.262775", "37.774540,-122.169110", "37.772745,-122.217703", "37.782360,-122.234076", "37.783960,-122.236886", "37.792061,-122.249655", "37.781440,-122.232771", "37.825518,-122.271773", "37.814761,-122.278566", "37.783031,-122.235405", "37.793245,-122.250938", "37.788461,-122.244535", "37.770900,-122.212088", "37.779968,-122.230023", "37.770670,-122.211091", "37.753680,-122.177246", "37.725210,-122.156165", "37.825760,-122.275001", "37.847281,-122.282386", "37.783766,-122.236608", "37.786428,-122.239486", "37.787511,-122.242775", "37.786235,-122.240666", "37.787130,-122.242280", "37.794695,-122.252540", "37.788423,-122.244320", "37.792143,-122.249666", "37.814871,-122.278561", "37.849673,-122.264676", "37.769355,-122.208528", "37.783178,-122.235530", "37.781946,-122.233391", "37.782140,-122.233763", "37.782251,-122.233975", "37.779763,-122.229855", "37.779281,-122.229165", "37.821600,-122.276731", "37.816128,-122.278125", "37.784935,-122.243656", "37.789461,-122.246203", "37.785905,-122.240211", "37.788161,-122.244016", "37.788433,-122.244318", "37.789065,-122.245555", "37.788553,-122.246856", "37.787701,-122.243026", "37.788315,-1"],
"count_dist": "19",
"count": "62",
"markerNums": []
},
{
"license": "I275272",
"locations": ["37.825686,-122.275288", "37.822281,-122.262860", "37.822285,-122.262856", "37.801841,-122.241871", "37.799108,-122.275586", "37.798668,-122.275888", "37.798728,-122.274995", "37.798973,-122.275553", "37.798843,-122.275658", "37.798871,-122.275355", "37.798430,-122.275908", "37.799248,-122.275916", "37.799318,-122.275855", "37.799643,-122.229076", "37.809726,-122.295195", "37.798950,-122.275401", "37.798978,-122.275300", "37.799063,-122.275690", "37.799205,-122.275890", "37.819606,-122.270698", "37.819305,-122.278180", "37.813308,-122.274411", "37.813855,-122.278356", "37.813961,-122.278488", "37.814136,-122.278183", "37.810715,-122.283971", "37.810730,-122.273895", "37.810735,-122.273890", "37.811501,-122.287366", "37.814931,-122.297251", "37.851866,-122.239810", "37.819108,-122.283878", "37.822870,-122.273875", "37.824341,-122.275460", "37.823330,-122.277741", "37.825685,-122.263225", "37.829970,-122.272168", "37.832673,-122.274638", "37.791033,-122.236605", "37.791048,-122.236655", "37.799295,-122.275706", "37.813198,-122.294271", "37.806821,-122.273310", "37.822936,-122.275893", "37.807946,-122.301428", "37.809030,-122.299661", "37.821531,-1"],
"count_dist": "19",
"count": "62",
"markerNums": []
},
{
"license": "9191PIP",
"locations": ["37.799026,-122.230665", "37.803816,-122.261375", "37.805790,-122.293233", "37.799140,-122.230868", "37.821576,-122.262283", "37.820036,-122.267198", "37.816876,-122.253451", "37.817946,-122.266210", "37.814605,-122.270205", "37.799050,-122.230870", "37.799133,-122.230846", "37.799136,-122.230850", "37.825193,-122.278211", "37.822206,-122.261876", "37.839655,-122.277995", "37.831345,-122.247955", "37.829676,-122.253333", "37.791730,-122.244521", "37.789188,-122.248276", "37.794121,-122.271530", "37.774670,-122.212438", "37.798893,-122.230718", "37.798893,-122.230731", "37.798896,-122.230740", "37.798970,-122.230655", "37.798970,-122.230750", "37.798980,-122.230616", "37.799086,-122.230875", "37.799101,-122.230875", "37.799138,-122.230831", "37.799163,-122.230818", "37.789068,-122.205806", "37.810988,-122.197321", "37.759858,-122.188873", "37.771996,-122.207040", "37.760208,-122.170496", "37.799078,-122.230841", "37.799085,-122.230851", "37.827683,-122.251096", "37.756481,-122.148501", "37.791098,-122.244163", "37.799118,-122.230880", "37.801396,-122.228551", "37.799110,-122.230861", "37.825041,-122.278330", "37.787870,-122.177393", "37.799071,-1"],
"count_dist": "29",
"count": "61",
"markerNums": []
},
{
"license": "6JMF299",
"locations": ["37.784038,-122.220750", "37.787538,-122.245050", "37.738821,-122.180120", "37.739058,-122.179843", "37.787576,-122.245533", "37.787555,-122.244991", "37.794406,-122.252231", "37.787965,-122.245685", "37.787481,-122.244941", "37.787503,-122.244948", "37.787616,-122.245125", "37.787693,-122.245173", "37.800008,-122.214745", "37.836008,-122.251363", "37.799245,-122.251290", "37.798048,-122.246908", "37.787581,-122.244986", "37.787593,-122.245055", "37.787593,-122.245011", "37.787598,-122.245061", "37.787608,-122.245153", "37.787613,-122.245093", "37.787618,-122.245103", "37.787643,-122.245081", "37.787673,-122.245151", "37.795850,-122.264938", "37.795871,-122.265008", "37.795108,-122.263368", "37.787698,-122.245085", "37.787488,-122.244930", "37.787510,-122.245031", "37.787513,-122.245048", "37.787523,-122.245045", "37.787535,-122.245035", "37.787555,-122.244950", "37.787575,-122.245093", "37.787588,-122.245073", "37.787593,-122.245670", "37.787615,-122.245023", "37.787616,-122.245701", "37.787626,-122.245113", "37.787638,-122.245103", "37.787663,-122.245088", "37.787665,-122.245170", "37.787461,-122.244943", "37.787468,-122.244830", "37.804383,-1"],
"count_dist": "17",
"count": "58",
"markerNums": []
},
{
"license": "BBBBB",
"locations": ["37.755338,-122.165100", "37.755355,-122.165073", "37.755356,-122.165076", "37.755361,-122.165083", "37.787386,-122.239171", "37.787278,-122.239156", "37.787341,-122.239195", "37.787343,-122.239125", "37.835038,-122.260006", "37.757968,-122.191918", "37.757970,-122.191916", "37.824293,-122.280711", "37.818905,-122.277085", "37.798856,-122.230551", "37.751648,-122.159858", "37.751643,-122.159858", "37.749846,-122.171268", "37.784276,-122.192165", "37.769035,-122.201110", "37.819650,-122.259271", "37.798606,-122.252600", "37.807841,-122.277930", "37.821838,-122.262403", "37.791273,-122.236336", "37.784873,-122.215810", "37.798850,-122.275993", "37.768143,-122.226400", "37.767495,-122.221271", "37.792566,-122.214265", "37.792568,-122.214268", "37.792570,-122.214268", "37.792571,-122.214268", "37.792606,-122.214253", "37.792283,-122.223971", "37.792310,-122.222980", "37.792556,-122.214276", "37.798841,-122.230743", "37.798753,-122.230663", "37.725720,-122.177123", "37.759341,-122.185476", "37.759320,-122.185490", "37.738935,-122.169043", "37.768071,-122.189591", "37.845320,-122.285395", "37.849615,-122.264998", "37.850028,-122.244618", "37.839363,-1"],
"count_dist": "28",
"count": "53",
"markerNums": []
},
{
"license": "8J03672",
"locations": ["37.787316,-122.242373", "37.789305,-122.178650", "37.775005,-122.162680", "37.775008,-122.162683", "37.775013,-122.162685", "37.775115,-122.152176", "37.773148,-122.407628", "37.785356,-122.240388", "37.785385,-122.240320", "37.771038,-122.211441", "37.831371,-122.272720", "37.826135,-122.277506", "37.738446,-122.192831", "37.799630,-122.262461", "37.813121,-122.271993", "37.747001,-122.184808", "37.747465,-122.184168", "37.783985,-122.142176", "37.729845,-122.199993", "37.746503,-122.186213", "37.746970,-122.169050", "37.747490,-122.162631", "37.748030,-122.184676", "37.746031,-122.184216", "37.746081,-122.186045", "37.746416,-122.184471", "37.763538,-122.172423", "37.763540,-122.172425", "37.750670,-122.167935", "37.739628,-122.172568", "37.751990,-122.180098", "37.782348,-122.172583", "37.772541,-122.196953", "37.772573,-122.197081", "37.767925,-122.202516", "37.768270,-122.202040", "37.768293,-122.202036", "37.744405,-122.172925", "37.745295,-122.158310", "37.745320,-122.158243", "37.745321,-122.158241", "37.747140,-122.189195", "37.744288,-122.172841", "37.744291,-122.172836", "37.744296,-122.172850", "37.755433,-122.165230", "37.752413,-1"],
"count_dist": "22",
"count": "51",
"markerNums": []
},
{
"license": "8X54635",
"locations": ["37.786683,-122.221645", "37.785033,-122.222296", "37.811613,-122.247736", "37.808500,-122.268503", "37.791545,-122.206140", "37.791671,-122.206318", "37.791551,-122.206221", "37.791740,-122.206391", "37.783706,-122.222720", "37.732461,-122.198551", "37.809251,-122.286325", "37.786711,-122.246380", "37.817988,-122.271425", "37.743373,-122.172698", "37.763171,-122.216125", "37.791673,-122.206336", "37.791225,-122.205885", "37.791675,-122.206395", "37.791370,-122.206018", "37.779310,-122.207128", "37.835813,-122.251661", "37.803615,-122.267198", "37.797628,-122.268028", "37.817451,-122.267606", "37.836316,-122.219470", "37.846795,-122.277508", "37.846900,-122.278501", "37.772248,-122.224898", "37.794011,-122.200870", "37.791603,-122.206290", "37.791618,-122.206338", "37.791675,-122.206353", "37.791406,-122.206000", "37.791515,-122.206103", "37.791573,-122.206251", "37.791311,-122.205911", "37.791316,-122.205923", "37.791316,-122.205898", "37.791321,-122.205891", "37.791348,-122.205900", "37.836931,-122.251295", "37.817873,-122.280791", "37.814651,-122.259538", "37.814868,-122.270221", "37.797426,-122.211601", "37.798688,-122.276246", "37.774098,-1"],
"count_dist": "24",
"count": "51",
"markerNums": []
},
{
"license": "8Z53127",
"locations": ["37.775151,-122.218295", "37.781200,-122.218810", "37.776388,-122.183661", "37.787625,-122.240706", "37.796938,-122.274156", "37.793523,-122.251233", "37.810790,-122.243930", "37.811766,-122.268886", "37.803913,-122.294650", "37.803460,-122.292931", "37.791186,-122.269310", "37.791353,-122.219811", "37.787221,-122.194671", "37.806738,-122.277398", "37.807696,-122.276515", "37.819458,-122.254586", "37.799440,-122.231350", "37.798301,-122.208813", "37.801678,-122.230805", "37.798938,-122.230650", "37.822898,-122.256310", "37.823128,-122.263518", "37.833930,-122.263031", "37.837493,-122.262210", "37.787386,-122.242763", "37.805588,-122.267056", "37.819826,-122.254348", "37.767623,-122.177570", "37.798873,-122.230706", "37.798875,-122.230703", "37.798773,-122.230743", "37.788600,-122.220941", "37.798983,-122.230650", "37.799166,-122.230825", "37.799086,-122.229483", "37.801428,-122.228585", "37.801141,-122.227946", "37.767621,-122.180280", "37.766573,-122.181708", "37.766068,-122.181276", "37.798976,-122.230688", "37.799150,-122.230865", "37.799208,-122.230988", "37.799378,-122.231351", "37.801060,-122.276285", "37.800531,-122.276840", "37.825525,-1"],
"count_dist": "22",
"count": "51",
"markerNums": []
},
{
"license": "6VCB075",
"locations": ["37.811080,-122.248066", "37.787576,-122.243081", "37.784851,-122.238270", "37.779010,-122.228725", "37.837028,-122.261528", "37.767198,-122.203980", "37.759420,-122.187365", "37.775635,-122.221730", "37.774835,-122.219906", "37.837598,-122.265008", "37.822500,-122.272485", "37.822766,-122.273470", "37.818763,-122.267311", "37.832048,-122.280136", "37.827846,-122.268893", "37.823200,-122.272823", "37.823261,-122.272790", "37.822093,-122.271056", "37.822581,-122.272556", "37.823078,-122.272870", "37.822308,-122.271738", "37.822371,-122.272145", "37.822408,-122.272261", "37.822421,-122.272205", "37.822470,-122.272656", "37.829363,-122.268501", "37.791160,-122.248673", "37.790125,-122.249105", "37.786545,-122.241195", "37.775411,-122.221346", "37.780775,-122.231576", "37.779511,-122.229463", "37.783575,-122.236090", "37.781853,-122.233235", "37.781970,-122.233403", "37.781996,-122.233416", "37.814605,-122.264663", "37.808800,-122.254578", "37.782966,-122.235075", "37.785820,-122.239776", "37.785641,-122.239751", "37.822516,-122.272808", "37.815783,-122.253510", "37.815791,-122.253460", "37.814506,-122.251618", "37.782926,-122.235170", "37.816280,-1"],
"count_dist": "16",
"count": "50",
"markerNums": []
},
{
"license": "8Z27918",
"locations": ["37.840000,-122.262000", "37.840016,-122.261953", "37.840065,-122.261993", "37.840328,-122.262515", "37.840340,-122.263180", "37.840351,-122.262418", "37.840413,-122.263090", "37.838723,-122.262078", "37.838748,-122.262081", "37.796518,-122.254781", "37.840331,-122.262196", "37.849285,-122.267551", "37.823683,-122.257055", "37.840271,-122.262351", "37.809155,-122.270740", "37.810228,-122.267465", "37.803996,-122.271408", "37.812433,-122.261065", "37.812658,-122.261198", "37.815825,-122.272685", "37.839955,-122.261986", "37.809376,-122.272965", "37.735695,-122.195446", "37.784803,-122.222358", "37.819351,-122.261690", "37.830946,-122.264051", "37.833636,-122.267903", "37.833638,-122.267906", "37.797115,-122.255356", "37.803645,-122.271438", "37.804266,-122.271268", "37.824481,-122.265736", "37.825668,-122.280931", "37.835791,-122.262576", "37.823845,-122.275551", "37.840346,-122.262893", "37.840368,-122.262740", "37.840401,-122.263556", "37.840446,-122.263128", "37.839286,-122.262081", "37.795443,-122.253553", "37.805343,-122.273838", "37.820543,-122.266810", "37.804856,-122.271990", "37.806283,-122.270045", "37.806398,-122.300228", "37.800550,-1"],
"count_dist": "19",
"count": "50",
"markerNums": []
},
{
"license": "8Y69687",
"locations": ["37.793785,-122.240001", "37.789456,-122.257856", "37.799485,-122.217601", "37.799495,-122.217600", "37.799505,-122.217758", "37.772833,-122.216003", "37.776831,-122.223998", "37.767170,-122.204181", "37.771871,-122.213958", "37.800133,-122.226045", "37.807845,-122.240960", "37.768563,-122.174213", "37.749260,-122.183576", "37.749280,-122.183718", "37.797065,-122.215960", "37.797066,-122.215960", "37.800010,-122.229150", "37.794960,-122.212978", "37.794870,-122.212828", "37.794870,-122.212836", "37.787201,-122.248356", "37.787235,-122.248506", "37.787695,-122.244748", "37.793426,-122.249576", "37.792991,-122.249113", "37.793001,-122.249150", "37.793796,-122.213315", "37.785845,-122.219215", "37.786031,-122.245856", "37.784761,-122.220105", "37.784511,-122.242753", "37.784273,-122.242256", "37.784281,-122.242236", "37.784328,-122.243386", "37.786276,-122.240671", "37.784536,-122.242663", "37.788273,-122.244298", "37.788415,-122.244293", "37.785051,-122.244258", "37.785226,-122.238918", "37.786478,-122.244848", "37.799728,-122.225460", "37.800098,-122.227293", "37.789560,-122.246038", "37.789120,-122.220631", "37.787248,-122.238603", "37.787653,-1"],
"count_dist": "16",
"count": "49",
"markerNums": []
},
{
"license": "8J03664",
"locations": ["37.832118,-122.267131", "37.817153,-122.261186", "37.817148,-122.261203", "37.834880,-122.271228", "37.834880,-122.271230", "37.791698,-122.219661", "37.805136,-122.178885", "37.807843,-122.179185", "37.807955,-122.178778", "37.789245,-122.214798", "37.802896,-122.250566", "37.801945,-122.247370", "37.819100,-122.267315", "37.837178,-122.261491", "37.837188,-122.261290", "37.837185,-122.261290", "37.803061,-122.234283", "37.788136,-122.224438", "37.788136,-122.224440", "37.834376,-122.268015", "37.838581,-122.273840", "37.839506,-122.271556", "37.807266,-122.296545", "37.745181,-122.155178", "37.745183,-122.155171", "37.745391,-122.155493", "37.805110,-122.290123", "37.772386,-122.226160", "37.772351,-122.226155", "37.793758,-122.248220", "37.762706,-122.187281", "37.762711,-122.187283", "37.742481,-122.169326", "37.768486,-122.174063", "37.844108,-122.282463", "37.845418,-122.246425", "37.845598,-122.273733", "37.796603,-122.258153", "37.800118,-122.238385", "37.800625,-122.237675", "37.800303,-122.238231", "37.808953,-122.218256", "37.810930,-122.247410", "37.794265,-122.257141", "37.828120,-122.287590", "37.832996,-122.270231", "37.825615,-1"],
"count_dist": "28",
"count": "48",
"markerNums": []
},
{
"license": "8P47143",
"locations": ["37.791745,-122.241050", "37.762126,-122.207123", "37.768651,-122.178710", "37.826563,-122.252106", "37.826581,-122.252093", "37.828540,-122.259710", "37.829555,-122.268473", "37.829570,-122.267698", "37.829675,-122.268358", "37.829680,-122.268265", "37.829140,-122.259521", "37.829236,-122.266198", "37.825226,-122.261703", "37.753468,-122.184886", "37.829023,-122.264371", "37.829041,-122.264200", "37.829071,-122.258500", "37.829101,-122.259033", "37.829125,-122.258998", "37.829131,-122.258990", "37.829138,-122.259171", "37.829141,-122.259300", "37.829258,-122.259558", "37.829293,-122.259570", "37.829420,-122.264291", "37.791275,-122.241491", "37.729850,-122.194033", "37.754558,-122.198291", "37.753555,-122.165931", "37.749721,-122.174175", "37.826528,-122.252705", "37.828860,-122.264525", "37.829225,-122.259440", "37.841385,-122.277080", "37.829333,-122.265083", "37.829561,-122.267420", "37.829746,-122.268410", "37.828330,-122.259760", "37.829118,-122.259028", "37.829163,-122.259383", "37.823740,-122.257273", "37.770243,-122.210545", "37.790875,-122.248241", "37.761818,-122.183440", "37.762076,-122.183005", "37.842690,-122.261521", "37.754685,-1"],
"count_dist": "17",
"count": "48",
"markerNums": []
},
{
"license": "13445D1",
"locations": ["37.801893,-122.278603", "37.802438,-122.273020", "37.827320,-122.251261", "37.830485,-122.264153", "37.822041,-122.266313", "37.821523,-122.273115", "37.818446,-122.267340", "37.833661,-122.263156", "37.839598,-122.261933", "37.839760,-122.261895", "37.838716,-122.262055", "37.839065,-122.262126", "37.839258,-122.262098", "37.840333,-122.273231", "37.840280,-122.273776", "37.812653,-122.261416", "37.812655,-122.261463", "37.831321,-122.279986", "37.826808,-122.265915", "37.819438,-122.267121", "37.840121,-122.273790", "37.840188,-122.273753", "37.840190,-122.273761", "37.840275,-122.273216", "37.744138,-122.171026", "37.733045,-122.198518", "37.808943,-122.256218", "37.813921,-122.274400", "37.829613,-122.267975", "37.838581,-122.273840", "37.840238,-122.273268", "37.829950,-122.264210", "37.802050,-122.254351", "37.803296,-122.253620", "37.804048,-122.252820", "37.849761,-122.265825", "37.747756,-122.163180", "37.808718,-122.269856", "37.814486,-122.274450", "37.814136,-122.268345", "37.828845,-122.264491", "37.830766,-122.264051", "37.831138,-122.279490", "37.827350,-122.269090", "37.840113,-122.274071", "37.840193,-122.273708", "37.840206,-1"],
"count_dist": "16",
"count": "47",
"markerNums": []
},
{
"license": "6LHX774",
"locations": ["37.748010,-122.173405", "37.745743,-122.156006", "37.760453,-122.163141", "37.742276,-122.175070", "37.769871,-122.177703", "37.770278,-122.181168", "37.771233,-122.188013", "37.754970,-122.162715", "37.769796,-122.177143", "37.772196,-122.193973", "37.816070,-122.278278", "37.752331,-122.168415", "37.759090,-122.186933", "37.801401,-122.217063", "37.802793,-122.275156", "37.800973,-122.217211", "37.803698,-122.268573", "37.803705,-122.268578", "37.789025,-122.216826", "37.819201,-122.255093", "37.817498,-122.283291", "37.815970,-122.278111", "37.816001,-122.278210", "37.816061,-122.278428", "37.816080,-122.278788", "37.816136,-122.278790", "37.816168,-122.278976", "37.816193,-122.279033", "37.816195,-122.278995", "37.816220,-122.279088", "37.816221,-122.279036", "37.816306,-122.278023", "37.815846,-122.278121", "37.815918,-122.278090", "37.817901,-122.275888", "37.784206,-122.222588", "37.772835,-122.181446", "37.776128,-122.183356", "37.804163,-122.251886", "37.801290,-122.217083", "37.800843,-122.217226", "37.801211,-122.217083", "37.801705,-122.216913", "37.801706,-122.216913", "37.824921,-122.259786", "37.822650,-122.273428", "37.822245,-1"],
"count_dist": "17",
"count": "47",
"markerNums": []
},
{
"license": "6SUZ885",
"locations": ["37.763830,-122.180111", "37.779015,-122.187090", "37.812626,-122.259863", "37.812930,-122.259488", "37.799625,-122.216385", "37.799673,-122.216381", "37.799855,-122.216323", "37.799925,-122.216296", "37.799675,-122.216368", "37.799740,-122.216356", "37.799585,-122.216388", "37.799970,-122.216288", "37.800000,-122.216328", "37.800248,-122.216308", "37.799853,-122.216303", "37.799901,-122.216343", "37.799111,-122.277695", "37.813221,-122.259175", "37.813358,-122.259053", "37.817965,-122.255518", "37.835751,-122.262358", "37.835840,-122.262376", "37.816266,-122.267581", "37.819673,-122.255943", "37.819830,-122.256286", "37.819838,-122.256290", "37.799713,-122.216416", "37.800221,-122.216270", "37.769245,-122.183438", "37.783456,-122.188311", "37.811838,-122.260636", "37.800345,-122.216255", "37.800380,-122.216270", "37.812493,-122.259988", "37.800053,-122.216298", "37.797850,-122.206013", "37.771643,-122.214250", "37.756508,-122.181398", "37.820483,-122.254351", "37.785148,-122.198985", "37.745420,-122.200643", "37.750903,-122.206038", "37.799871,-122.216320", "37.799665,-122.216436", "37.800221,-122.216293", "37.797625,-122.205498", "37.753248,-1"],
"count_dist": "16",
"count": "47",
"markerNums": []
},
{
"license": "8Z53144",
"locations": ["37.802951,-122.274186", "37.739375,-122.179816", "37.739375,-122.179823", "37.754295,-122.164351", "37.755515,-122.161506", "37.744090,-122.170458", "37.761951,-122.149008", "37.741020,-122.168746", "37.741020,-122.168748", "37.758055,-122.147698", "37.759580,-122.147825", "37.814746,-122.259731", "37.798898,-122.230600", "37.714663,-122.121640", "37.819473,-122.252020", "37.821995,-122.262301", "37.798846,-122.230595", "37.780538,-122.231086", "37.777625,-122.166781", "37.774843,-122.212301", "37.770773,-122.155135", "37.799180,-122.230745", "37.801025,-122.227823", "37.825238,-122.261723", "37.822108,-122.262206", "37.821748,-122.262268", "37.821770,-122.262376", "37.816833,-122.267646", "37.816940,-122.267650", "37.788433,-122.244198", "37.788890,-122.231468", "37.799126,-122.230635", "37.801320,-122.228556", "37.800341,-122.216058", "37.799235,-122.229435", "37.799245,-122.231050", "37.791516,-122.238520", "37.791521,-122.238521", "37.791593,-122.267676", "37.768823,-122.230510", "37.769003,-122.230343", "37.803038,-122.267645", "37.786995,-122.195471", "37.771845,-122.206405", "37.771805,-122.206823", "37.769705,-122.209183"],
"count_dist": "23",
"count": "46",
"markerNums": []
},
{
"license": "13271D1",
"locations": ["37.765221,-122.199783", "37.749116,-122.173938", "37.784126,-122.216881", "37.742820,-122.173816", "37.802828,-122.271713", "37.812508,-122.255505", "37.799096,-122.261905", "37.798586,-122.257281", "37.798683,-122.261485", "37.798750,-122.251555", "37.816230,-122.252430", "37.781628,-122.230661", "37.781598,-122.230645", "37.829376,-122.266385", "37.812731,-122.266008", "37.811790,-122.259613", "37.751225,-122.155685", "37.770463,-122.170321", "37.764370,-122.179091", "37.764533,-122.178828", "37.765203,-122.177773", "37.768661,-122.172765", "37.784291,-122.237611", "37.828425,-122.260370", "37.826240,-122.258230", "37.814996,-122.254885", "37.799555,-122.275833", "37.751706,-122.162860", "37.817053,-122.254913", "37.817138,-122.261216", "37.818575,-122.257671", "37.818576,-122.257666", "37.815066,-122.268286", "37.808465,-122.265965", "37.836480,-122.262453", "37.777008,-122.224311", "37.789541,-122.256211", "37.810266,-122.255526", "37.812408,-122.255508", "37.800078,-122.275408", "37.792358,-122.249958", "37.787653,-122.242920", "37.787183,-122.242165", "37.789265,-122.197813", "37.793290,-122.244501"],
"count_dist": "27",
"count": "45",
"markerNums": []
},
{
"license": "5HUH171",
"locations": ["37.769538,-122.208951", "37.777021,-122.224701", "37.757040,-122.182738", "37.827385,-122.269861", "37.788490,-122.244415", "37.788716,-122.243913", "37.756263,-122.190110", "37.757488,-122.187235", "37.806031,-122.250110", "37.754576,-122.163665", "37.748603,-122.173775", "37.755155,-122.181988", "37.783651,-122.201840", "37.762608,-122.194038", "37.744475,-122.170471", "37.744900,-122.150276", "37.746131,-122.190386", "37.745841,-122.167441", "37.747138,-122.189025", "37.755868,-122.179811", "37.755750,-122.181175", "37.753633,-122.160683", "37.741491,-122.192083", "37.741528,-122.176636", "37.740655,-122.177920", "37.742670,-122.174196", "37.759405,-122.170221", "37.759416,-122.170223", "37.758436,-122.185345", "37.750988,-122.175390", "37.749656,-122.158705", "37.755508,-122.149001", "37.803076,-122.253683", "37.760558,-122.189805", "37.738486,-122.180701", "37.735248,-122.183911", "37.733993,-122.185203", "37.755548,-122.181473", "37.755870,-122.180925", "37.756593,-122.177501", "37.753111,-122.160360", "37.764126,-122.166208", "37.747293,-122.172771", "37.777781,-122.226315", "37.774455,-122.166906"],
"count_dist": "22",
"count": "45",
"markerNums": []
},
{
"license": "5XFZ085",
"locations": ["37.745981,-122.167228", "37.767400,-122.208261", "37.767610,-122.209538", "37.765201,-122.199793", "37.778903,-122.207556", "37.807413,-122.290506", "37.776148,-122.222968", "37.791475,-122.249008", "37.767686,-122.202798", "37.779953,-122.206625", "37.764526,-122.198268", "37.756620,-122.161675", "37.793490,-122.251285", "37.775013,-122.220445", "37.775656,-122.210768", "37.807316,-122.290373", "37.807328,-122.290316", "37.767911,-122.207743", "37.767960,-122.207686", "37.807845,-122.240958", "37.824915,-122.259780", "37.807323,-122.290298", "37.807343,-122.290305", "37.807400,-122.290853", "37.804691,-122.287301", "37.786813,-122.237316", "37.789711,-122.246998", "37.784586,-122.237928", "37.792875,-122.250646", "37.781805,-122.218903", "37.777090,-122.224726", "37.782106,-122.233653", "37.783941,-122.222741", "37.784908,-122.233278", "37.787550,-122.195028", "37.795241,-122.202255", "37.795196,-122.213665", "37.796206,-122.234326", "37.796478,-122.203661", "37.800568,-122.270580", "37.798110,-122.252371", "37.770245,-122.210335", "37.766455,-122.212033", "37.766650,-122.211826", "37.755861,-122.180038"],
"count_dist": "22",
"count": "45",
"markerNums": []
},
{
"license": "8Z52877",
"locations": ["37.822023,-122.262281", "37.878241,-122.220945", "37.878243,-122.220946", "37.795385,-122.202443", "37.795598,-122.279518", "37.789501,-122.246055", "37.826556,-122.252081", "37.799078,-122.230406", "37.799166,-122.230900", "37.798948,-122.230573", "37.798970,-122.230638", "37.798981,-122.230585", "37.799008,-122.230601", "37.799026,-122.230665", "37.769796,-122.218348", "37.801108,-122.228166", "37.798891,-122.230706", "37.757631,-122.183936", "37.812985,-122.235906", "37.842245,-122.283565", "37.841106,-122.283131", "37.784386,-122.219251", "37.789400,-122.230901", "37.805333,-122.279915", "37.802946,-122.238265", "37.798823,-122.230723", "37.798893,-122.230723", "37.798905,-122.230663", "37.798996,-122.230565", "37.799083,-122.230863", "37.799458,-122.220823", "37.751785,-122.184931", "37.761843,-122.192818", "37.798960,-122.230660", "37.753883,-122.177735", "37.737370,-122.196980", "37.737388,-122.197913", "37.805276,-122.237573", "37.798898,-122.230775", "37.800463,-122.226760", "37.820113,-122.273740", "37.842950,-122.205358", "37.842951,-122.205346", "37.817108,-122.267623", "37.827096,-122.268920"],
"count_dist": "22",
"count": "45",
"markerNums": []
},
{
"license": "8Z69251",
"locations": ["37.748818,-122.186000", "37.748820,-122.186001", "37.748845,-122.185863", "37.748860,-122.185948", "37.748861,-122.165108", "37.748881,-122.185865", "37.748978,-122.185843", "37.749043,-122.185580", "37.749138,-122.185738", "37.749946,-122.158563", "37.785636,-122.214365", "37.748915,-122.185741", "37.793800,-122.200591", "37.778603,-122.216228", "37.748781,-122.185936", "37.748815,-122.185983", "37.748833,-122.185925", "37.748873,-122.185905", "37.748755,-122.186038", "37.749805,-122.165843", "37.748135,-122.162505", "37.782501,-122.204245", "37.762675,-122.194636", "37.770810,-122.191540", "37.760088,-122.189225", "37.798033,-122.206506", "37.748871,-122.185895", "37.748930,-122.185883", "37.741513,-122.176580", "37.748875,-122.185826", "37.775716,-122.213045", "37.748903,-122.185853", "37.752080,-122.179831", "37.784078,-122.217165", "37.748796,-122.186071", "37.748811,-122.186066", "37.778876,-122.216613", "37.809848,-122.259456", "37.808790,-122.255198", "37.809005,-122.256025", "37.744540,-122.170238", "37.822421,-122.266068", "37.748978,-122.185748", "37.777008,-122.214380", "37.785871,-122.193225"],
"count_dist": "17",
"count": "45",
"markerNums": []
},
{
"license": "5G41081",
"locations": ["37.807655,-122.178971", "37.804343,-122.178695", "37.817558,-122.257363", "37.749135,-122.182771", "37.824970,-122.265631", "37.826678,-122.261840", "37.839785,-122.281288", "37.745763,-122.185803", "37.747605,-122.184378", "37.747673,-122.184396", "37.748711,-122.186125", "37.758996,-122.185900", "37.757128,-122.182758", "37.759325,-122.186886", "37.762510,-122.164708", "37.767371,-122.203198", "37.780701,-122.205971", "37.751530,-122.180913", "37.775220,-122.187216", "37.739310,-122.166625", "37.803510,-122.243318", "37.803516,-122.243328", "37.817993,-122.271441", "37.747721,-122.184411", "37.792810,-122.257925", "37.794446,-122.274500", "37.794446,-122.274498", "37.840773,-122.264563", "37.837511,-122.266981", "37.827603,-122.258006", "37.799793,-122.217540", "37.820241,-122.274828", "37.820243,-122.274831", "37.850986,-122.239988", "37.851008,-122.240001", "37.767296,-122.203943", "37.768451,-122.222926", "37.756256,-122.180695", "37.790218,-122.205533", "37.792423,-122.207455", "37.798741,-122.210828"],
"count_dist": "25",
"count": "44",
"markerNums": []
},
{
"license": "8S34271",
"locations": ["37.776098,-122.226975", "37.770090,-122.210168", "37.847428,-122.265390", "37.798540,-122.253615", "37.730995,-122.185083", "37.755171,-122.191653", "37.804523,-122.214536", "37.793351,-122.263486", "37.791875,-122.261790", "37.792571,-122.214265", "37.773920,-122.224228", "37.816701,-122.263330", "37.839253,-122.262090", "37.830501,-122.254971", "37.849638,-122.252225", "37.796645,-122.256498", "37.809355,-122.248946", "37.809260,-122.248785", "37.801178,-122.238760", "37.808595,-122.252186", "37.796295,-122.256735", "37.794970,-122.254631", "37.800793,-122.247775", "37.785963,-122.245716", "37.801300,-122.269855", "37.797411,-122.204945", "37.797555,-122.205376", "37.829681,-122.268263", "37.829681,-122.268328", "37.840635,-122.251395", "37.824670,-122.256358", "37.837343,-122.262375", "37.782003,-122.233420", "37.783615,-122.178308", "37.812568,-122.268935", "37.812600,-122.267578", "37.808900,-122.247955", "37.810696,-122.244046", "37.819110,-122.267576", "37.820926,-122.266741", "37.792015,-122.199021", "37.795270,-122.202241", "37.787201,-122.194613", "37.786975,-122.247121"],
"count_dist": "28",
"count": "44",
"markerNums": []
},
{
"license": "8Z53109",
"locations": ["37.843250,-122.261508", "37.824948,-122.256465", "37.825071,-122.256750", "37.792061,-122.249675", "37.799093,-122.230813", "37.791783,-122.232673", "37.747811,-122.177098", "37.774338,-122.168736", "37.815773,-122.252151", "37.802636,-122.266841", "37.799025,-122.230670", "37.799258,-122.231193", "37.798830,-122.230653", "37.744276,-122.170688", "37.742820,-122.173801", "37.791076,-122.221768", "37.825168,-122.261076", "37.821995,-122.262243", "37.820121,-122.286920", "37.820278,-122.286946", "37.814786,-122.268215", "37.814788,-122.268221", "37.788286,-122.217361", "37.788638,-122.244713", "37.801940,-122.265118", "37.824895,-122.256491", "37.822138,-122.255248", "37.774881,-122.212153", "37.825175,-122.261776", "37.826130,-122.277491", "37.828471,-122.279085", "37.830226,-122.280016", "37.822141,-122.261956", "37.798825,-122.230591", "37.798968,-122.230628", "37.798983,-122.230583", "37.804555,-122.271950", "37.777911,-122.208576", "37.821736,-122.262291", "37.821003,-122.267348", "37.820013,-122.267140", "37.814691,-122.274740", "37.804995,-122.293721", "37.807771,-122.272433"],
"count_dist": "20",
"count": "44",
"markerNums": []
},
{
"license": "5YAU072",
"locations": ["37.789258,-122.245688", "37.787086,-122.242048", "37.794246,-122.218606", "37.771635,-122.207138", "37.783875,-122.222980", "37.764610,-122.209948", "37.783896,-122.222666", "37.790238,-122.243073", "37.760628,-122.189993", "37.781505,-122.223965", "37.782923,-122.223255", "37.771985,-122.220065", "37.772380,-122.208898", "37.761223,-122.205058", "37.776160,-122.222508", "37.789015,-122.220596", "37.799641,-122.216388", "37.756885,-122.188046", "37.739451,-122.197173", "37.739643,-122.196380", "37.790565,-122.220045", "37.792488,-122.219235", "37.777016,-122.224698", "37.777370,-122.222013", "37.757133,-122.182308", "37.767833,-122.191751", "37.770623,-122.217258", "37.796680,-122.225788", "37.801766,-122.216906", "37.801773,-122.216906", "37.787738,-122.193985", "37.785371,-122.222036", "37.783556,-122.222173", "37.778663,-122.225403", "37.780718,-122.221905", "37.778258,-122.227076", "37.777703,-122.215235", "37.777766,-122.221821", "37.768803,-122.194316", "37.783836,-122.236875", "37.776405,-122.226411", "37.788686,-122.217150", "37.773836,-122.169546"],
"count_dist": "17",
"count": "43",
"markerNums": []
},
{
"license": "5TRA397",
"locations": ["37.785011,-122.238593", "37.778666,-122.225413", "37.788430,-122.244360", "37.791311,-122.248726", "37.789520,-122.246470", "37.795696,-122.275481", "37.795553,-122.275090", "37.795060,-122.271721", "37.795135,-122.271773", "37.793458,-122.251238", "37.793500,-122.218951", "37.796390,-122.254508", "37.786873,-122.241846", "37.785853,-122.239995", "37.785965,-122.240093", "37.794566,-122.272555", "37.777721,-122.226018", "37.751115,-122.175321", "37.760826,-122.190728", "37.758556,-122.185681", "37.795008,-122.271643", "37.749580,-122.176716", "37.775426,-122.221173", "37.777226,-122.225170", "37.777315,-122.225273", "37.783821,-122.236725", "37.793763,-122.256668", "37.748226,-122.174251", "37.750215,-122.183751", "37.759298,-122.187280", "37.759523,-122.187795", "37.764563,-122.198475", "37.754291,-122.177803", "37.794110,-122.274065", "37.788986,-122.245320", "37.785595,-122.239558", "37.792668,-122.270288", "37.755396,-122.179031", "37.780821,-122.231550", "37.772768,-122.215655", "37.786940,-122.241905", "37.789385,-122.246296"],
"count_dist": "17",
"count": "42",
"markerNums": []
},
{
"license": "6MZL247",
"locations": ["37.821943,-122.262301", "37.794838,-122.251373", "37.798996,-122.230795", "37.798781,-122.230713", "37.799158,-122.230798", "37.799058,-122.230628", "37.841816,-122.249168", "37.799156,-122.277840", "37.798900,-122.230741", "37.737900,-122.159553", "37.826586,-122.265238", "37.799728,-122.275541", "37.799558,-122.233278", "37.798973,-122.230811", "37.798978,-122.230703", "37.798895,-122.230621", "37.799055,-122.230796", "37.798773,-122.257205", "37.793418,-122.194181", "37.793156,-122.194900", "37.795493,-122.236141", "37.790700,-122.248038", "37.831433,-122.270670", "37.819776,-122.267060", "37.814778,-122.275511", "37.817765,-122.267585", "37.824986,-122.265658", "37.794165,-122.217488", "37.793696,-122.251515", "37.795100,-122.237280", "37.799138,-122.231040", "37.798841,-122.230600", "37.798843,-122.230598", "37.798973,-122.230746", "37.799006,-122.230610", "37.799028,-122.230761", "37.799043,-122.230623", "37.797911,-122.265671", "37.781185,-122.242861", "37.840381,-122.265340", "37.828385,-122.281448"],
"count_dist": "17",
"count": "42",
"markerNums": []
},
{
"license": "8Z53116",
"locations": ["37.822026,-122.262236", "37.824810,-122.256348", "37.798946,-122.230568", "37.810858,-122.243795", "37.802086,-122.265530", "37.737815,-122.198191", "37.806821,-122.275540", "37.806816,-122.275483", "37.739298,-122.179708", "37.798980,-122.230713", "37.786210,-122.239711", "37.783548,-122.236046", "37.821985,-122.262260", "37.810380,-122.244930", "37.798846,-122.230626", "37.798848,-122.230625", "37.799010,-122.275183", "37.801728,-122.216896", "37.801830,-122.216906", "37.798940,-122.230695", "37.799041,-122.230821", "37.803236,-122.267496", "37.803251,-122.267506", "37.803998,-122.266981", "37.744683,-122.170901", "37.794865,-122.222970", "37.794641,-122.223056", "37.838473,-122.205706", "37.799185,-122.231001", "37.799353,-122.231331", "37.788360,-122.250853", "37.812221,-122.243336", "37.786198,-122.236133", "37.798948,-122.230585", "37.759130,-122.186928", "37.822080,-122.262268", "37.824686,-122.275571", "37.825315,-122.275215", "37.824901,-122.259826", "37.820971,-122.254428", "37.819975,-122.253961", "37.820591,-122.253300"],
"count_dist": "19",
"count": "42",
"markerNums": []
},
{
"license": "12899D1",
"locations": ["37.840096,-122.261958", "37.781991,-122.233425", "37.805145,-122.249743", "37.805146,-122.249741", "37.816270,-122.286658", "37.807838,-122.240735", "37.809118,-122.284605", "37.812975,-122.268800", "37.812503,-122.273848", "37.794373,-122.252288", "37.788831,-122.244950", "37.803673,-122.271558", "37.796406,-122.243603", "37.796730,-122.254906", "37.785798,-122.239841", "37.829473,-122.266448", "37.829495,-122.266511", "37.825435,-122.269640", "37.793106,-122.219041", "37.791223,-122.219815", "37.805898,-122.287540", "37.806401,-122.286183", "37.786516,-122.236055", "37.785761,-122.221920", "37.785981,-122.221861", "37.806480,-122.286391", "37.806411,-122.286113", "37.806455,-122.286323", "37.806366,-122.285995", "37.768658,-122.219651", "37.765115,-122.188276", "37.760108,-122.170261", "37.816393,-122.267861", "37.794421,-122.252256", "37.746126,-122.166621", "37.747666,-122.195868", "37.753853,-122.197538", "37.753856,-122.197508", "37.755968,-122.180871", "37.754431,-122.208430", "37.808100,-122.268918"],
"count_dist": "23",
"count": "41",
"markerNums": []
},
{
"license": "6RAX421",
"locations": ["37.792500,-122.250111", "37.790363,-122.245028", "37.790510,-122.244796", "37.790511,-122.244815", "37.790536,-122.244701", "37.792263,-122.227561", "37.792495,-122.227443", "37.796356,-122.266121", "37.796070,-122.259291", "37.781790,-122.235226", "37.731350,-122.190753", "37.844770,-122.259145", "37.845238,-122.259723", "37.845278,-122.259191", "37.829188,-122.264243", "37.814316,-122.262568", "37.824101,-122.255500", "37.837033,-122.262311", "37.796030,-122.255856", "37.796056,-122.255833", "37.792508,-122.250246", "37.838253,-122.251181", "37.840206,-122.259780", "37.801541,-122.275088", "37.789120,-122.244308", "37.789381,-122.244931", "37.789413,-122.244936", "37.784443,-122.227483", "37.792800,-122.243865", "37.790036,-122.249061", "37.790518,-122.244808", "37.797083,-122.251948", "37.797121,-122.251870", "37.797403,-122.251580", "37.797691,-122.254400", "37.797691,-122.230171", "37.807438,-122.270120", "37.810260,-122.244671", "37.810170,-122.244243", "37.805975,-122.270113", "37.804941,-122.270681"],
"count_dist": "19",
"count": "41",
"markerNums": []
},
{
"license": "8Z53115",
"locations": ["37.821998,-122.262281", "37.810191,-122.267375", "37.809876,-122.285928", "37.813161,-122.275943", "37.787311,-122.195028", "37.789340,-122.248318", "37.789953,-122.249143", "37.788828,-122.196115", "37.788565,-122.235691", "37.798921,-122.230698", "37.798930,-122.230663", "37.799185,-122.231008", "37.799398,-122.231343", "37.801655,-122.230783", "37.802575,-122.279326", "37.802580,-122.279331", "37.797636,-122.275763", "37.826585,-122.278418", "37.823948,-122.257660", "37.824910,-122.256560", "37.825013,-122.256718", "37.824861,-122.256530", "37.839428,-122.282531", "37.822128,-122.262253", "37.799881,-122.256896", "37.799195,-122.231025", "37.798861,-122.230630", "37.798868,-122.230733", "37.773470,-122.231191", "37.751903,-122.167281", "37.744265,-122.170653", "37.798970,-122.230666", "37.804530,-122.268598", "37.799448,-122.197668", "37.783786,-122.201823", "37.821933,-122.260050", "37.821963,-122.262243", "37.826581,-122.264715", "37.832555,-122.214641", "37.817411,-122.283233", "37.824883,-122.256740"],
"count_dist": "21",
"count": "41",
"markerNums": []
},
{
"license": "8Z53121",
"locations": ["37.779025,-122.216660", "37.776648,-122.163923", "37.774326,-122.169726", "37.770666,-122.190378", "37.769060,-122.171885", "37.798873,-122.230763", "37.798923,-122.230616", "37.799165,-122.230860", "37.799091,-122.229503", "37.801248,-122.228720", "37.801376,-122.228515", "37.799176,-122.230743", "37.802678,-122.230565", "37.799835,-122.275160", "37.799840,-122.275203", "37.828436,-122.279073", "37.834235,-122.251905", "37.814508,-122.274670", "37.821705,-122.262251", "37.821715,-122.262338", "37.816876,-122.253451", "37.740215,-122.155791", "37.741071,-122.158546", "37.757773,-122.211490", "37.817086,-122.267650", "37.783388,-122.235826", "37.822866,-122.256010", "37.837285,-122.262665", "37.837428,-122.262983", "37.823218,-122.256386", "37.807620,-122.286813", "37.737778,-122.168483", "37.759631,-122.186660", "37.762941,-122.165111", "37.749435,-122.167795", "37.754165,-122.164453", "37.767901,-122.205508", "37.837306,-122.262793", "37.782723,-122.187988", "37.799703,-122.214075", "37.784645,-122.237875"],
"count_dist": "25",
"count": "41",
"markerNums": []
},
{
"license": "I275250",
"locations": ["37.852445,-122.271531", "37.799606,-122.277341", "37.800058,-122.251850", "37.805566,-122.256946", "37.788970,-122.234326", "37.810096,-122.296716", "37.808431,-122.265875", "37.808501,-122.266025", "37.808521,-122.265953", "37.820883,-122.254848", "37.799111,-122.275616", "37.799165,-122.196280", "37.798691,-122.275050", "37.798828,-122.275451", "37.798975,-122.275288", "37.799011,-122.275591", "37.798836,-122.275076", "37.798845,-122.275128", "37.798913,-122.275546", "37.798608,-122.276200", "37.799921,-122.253208", "37.799953,-122.207298", "37.801136,-122.246340", "37.789808,-122.245601", "37.796213,-122.242645", "37.799323,-122.275806", "37.818341,-122.281160", "37.767065,-122.169020", "37.846035,-122.251588", "37.831250,-122.246436", "37.800205,-122.278538", "37.775780,-122.164825", "37.831315,-122.195911", "37.799155,-122.275463", "37.798791,-122.274978", "37.823756,-122.206915", "37.824443,-122.256670", "37.825715,-122.261525", "37.833956,-122.251226", "37.854353,-122.225811", "37.799950,-122.277578"],
"count_dist": "23",
"count": "41",
"markerNums": []
},
{
"license": "6PRE365",
"locations": ["37.800140,-122.216270", "37.799616,-122.216385", "37.799643,-122.216481", "37.799806,-122.216320", "37.799673,-122.216413", "37.799718,-122.216328", "37.785676,-122.221906", "37.791900,-122.198910", "37.793860,-122.200743", "37.793115,-122.200036", "37.793136,-122.200035", "37.788233,-122.244036", "37.786081,-122.240295", "37.784295,-122.237523", "37.799758,-122.216350", "37.742311,-122.151698", "37.753500,-122.177421", "37.768730,-122.171543", "37.807810,-122.240866", "37.807906,-122.241023", "37.737580,-122.196988", "37.744888,-122.196203", "37.745065,-122.196203", "37.767838,-122.170215", "37.747088,-122.189080", "37.753688,-122.160646", "37.794913,-122.201888", "37.787025,-122.241905", "37.784493,-122.237760", "37.790343,-122.247681", "37.789536,-122.246518", "37.790975,-122.248481", "37.792993,-122.250650", "37.810618,-122.280140", "37.798703,-122.209655", "37.799953,-122.216345", "37.771118,-122.193291", "37.799576,-122.216455", "37.799718,-122.216365", "37.798303,-122.206918"],
"count_dist": "17",
"count": "40",
"markerNums": []
},
{
"license": "8U40859",
"locations": ["37.808605,-122.268511", "37.799460,-122.275833", "37.816730,-122.267086", "37.833960,-122.263251", "37.816573,-122.266051", "37.836056,-122.262656", "37.816821,-122.267555", "37.816835,-122.267440", "37.781408,-122.223996", "37.794121,-122.271533", "37.790191,-122.249385", "37.816636,-122.266353", "37.816750,-122.267083", "37.814290,-122.277975", "37.821285,-122.266518", "37.806325,-122.270091", "37.834125,-122.250880", "37.830165,-122.273970", "37.829716,-122.268325", "37.801163,-122.289656", "37.794836,-122.218425", "37.791075,-122.221785", "37.800350,-122.273651", "37.763546,-122.208638", "37.798941,-122.255975", "37.803238,-122.271851", "37.780525,-122.224436", "37.780875,-122.231216", "37.775766,-122.230915", "37.784615,-122.222363", "37.773928,-122.224230", "37.815375,-122.274945", "37.839723,-122.274021", "37.834581,-122.262960", "37.822178,-122.255211", "37.828356,-122.268721", "37.814783,-122.290316", "37.771455,-122.216031", "37.818356,-122.285290", "37.769036,-122.182523"],
"count_dist": "23",
"count": "40",
"markerNums": []
},
{
"license": "8Z52873",
"locations": ["37.736338,-122.183311", "37.737886,-122.199386", "37.798815,-122.230653", "37.798851,-122.230728", "37.798853,-122.230726", "37.741726,-122.164685", "37.798981,-122.229525", "37.826578,-122.252145", "37.828016,-122.250356", "37.820056,-122.261430", "37.779910,-122.206525", "37.787948,-122.243615", "37.798953,-122.230703", "37.791111,-122.250266", "37.798871,-122.230703", "37.798766,-122.230701", "37.793793,-122.240111", "37.837523,-122.266701", "37.822075,-122.262275", "37.841863,-122.262821", "37.828763,-122.272773", "37.742885,-122.173741", "37.796073,-122.242475", "37.811550,-122.247876", "37.799146,-122.230845", "37.799163,-122.230643", "37.798750,-122.229410", "37.798870,-122.230693", "37.798923,-122.230568", "37.798935,-122.230768", "37.798943,-122.230748", "37.798958,-122.230655", "37.799173,-122.230713", "37.801446,-122.263286", "37.796390,-122.233558", "37.796426,-122.233750", "37.784700,-122.204013", "37.821708,-122.262241", "37.821710,-122.262355", "37.822010,-122.262293"],
"count_dist": "17",
"count": "40",
"markerNums": []
},
{
"license": "8Z53122",
"locations": ["37.790328,-122.189236", "37.797635,-122.276078", "37.797658,-122.276251", "37.790736,-122.221030", "37.790736,-122.221028", "37.761855,-122.173245", "37.761860,-122.173241", "37.760680,-122.160443", "37.760745,-122.184995", "37.849430,-122.260635", "37.822035,-122.262281", "37.712606,-122.144306", "37.824555,-122.259055", "37.808563,-122.251368", "37.808701,-122.253623", "37.799245,-122.231213", "37.779436,-122.205563", "37.849340,-122.252738", "37.799436,-122.232096", "37.796763,-122.250563", "37.799026,-122.230611", "37.769511,-122.196823", "37.782603,-122.243003", "37.809560,-122.259055", "37.834426,-122.252261", "37.825041,-122.256535", "37.794561,-122.206711", "37.829131,-122.282078", "37.836750,-122.263948", "37.795716,-122.208370", "37.833158,-122.273196", "37.785030,-122.234408", "37.787391,-122.194981", "37.798998,-122.230811", "37.829623,-122.268025", "37.783745,-122.201691", "37.774588,-122.166821", "37.798223,-122.275456", "37.798870,-122.230623", "37.807655,-122.275031"],
"count_dist": "28",
"count": "40",
"markerNums": []
},
{
"license": "26275A1",
"locations": ["37.796278,-122.247788", "37.797233,-122.252095", "37.795521,-122.246845", "37.796576,-122.247056", "37.795558,-122.246991", "37.795896,-122.247391", "37.795963,-122.247326", "37.815770,-122.275043", "37.785358,-122.243566", "37.829625,-122.268025", "37.826206,-122.252641", "37.803288,-122.270791", "37.802588,-122.272245", "37.799020,-122.275143", "37.797296,-122.275716", "37.797346,-122.275651", "37.789950,-122.245485", "37.790066,-122.245823", "37.809885,-122.271746", "37.809240,-122.269613", "37.808811,-122.253420", "37.737546,-122.196945", "37.738725,-122.196748", "37.823180,-122.269998", "37.829868,-122.263585", "37.839946,-122.261981", "37.840301,-122.262246", "37.840343,-122.263028", "37.840360,-122.263065", "37.834723,-122.263028", "37.839046,-122.262091", "37.839391,-122.261971", "37.839526,-122.261970", "37.839530,-122.261948", "37.799428,-122.263335", "37.809201,-122.257846", "37.773565,-122.228900", "37.744331,-122.170628", "37.808678,-122.271641"],
"count_dist": "18",
"count": "39",
"markerNums": []
},
{
"license": "6LWA872",
"locations": ["37.823831,-122.281250", "37.823861,-122.281333", "37.823898,-122.281346", "37.823925,-122.281820", "37.823941,-122.281955", "37.823980,-122.281845", "37.789433,-122.246253", "37.785031,-122.199246", "37.785045,-122.199281", "37.785060,-122.199071", "37.785146,-122.199018", "37.785146,-122.199011", "37.785585,-122.198106", "37.846678,-122.272413", "37.762640,-122.181876", "37.772120,-122.214225", "37.771600,-122.197085", "37.777498,-122.187903", "37.785118,-122.189636", "37.785125,-122.199041", "37.785130,-122.199001", "37.780668,-122.205923", "37.781805,-122.218895", "37.784243,-122.182423", "37.784256,-122.216645", "37.821968,-122.272965", "37.805265,-122.273781", "37.785590,-122.192415", "37.774126,-122.184015", "37.755281,-122.178866", "37.785378,-122.198676", "37.785100,-122.199171", "37.785023,-122.199220", "37.784988,-122.199170", "37.751875,-122.169341", "37.751078,-122.159605", "37.758161,-122.184968", "37.754615,-122.163358", "37.762268,-122.164408"],
"count_dist": "19",
"count": "39",
"markerNums": []
},
{
"license": "14714F1",
"locations": ["37.814215,-122.245935", "37.816720,-122.263330", "37.796035,-122.259131", "37.806880,-122.238595", "37.777396,-122.208996", "37.758975,-122.187108", "37.794041,-122.239868", "37.775556,-122.223058", "37.801525,-122.254306", "37.801120,-122.273123", "37.797615,-122.217176", "37.803471,-122.264255", "37.800735,-122.268940", "37.817788,-122.275548", "37.819120,-122.267570", "37.806810,-122.249736", "37.809143,-122.268341", "37.807763,-122.270073", "37.807891,-122.268938", "37.808033,-122.269995", "37.814651,-122.259538", "37.813125,-122.271998", "37.813386,-122.275906", "37.805065,-122.270816", "37.804596,-122.263631", "37.809203,-122.249738", "37.802161,-122.270826", "37.802720,-122.270490", "37.806910,-122.270246", "37.804933,-122.271008", "37.802971,-122.270358", "37.803490,-122.270040", "37.803563,-122.269955", "37.846376,-122.251928", "37.826493,-122.252103", "37.826503,-122.259838", "37.824901,-122.254436"],
"count_dist": "20",
"count": "38",
"markerNums": []
},
{
"license": "15139C1",
"locations": ["37.824798,-122.275501", "37.829255,-122.264753", "37.791313,-122.219770", "37.845300,-122.251853", "37.824790,-122.275960", "37.801948,-122.280608", "37.822888,-122.277211", "37.819695,-122.276361", "37.824025,-122.275506", "37.824163,-122.275516", "37.824636,-122.275446", "37.824658,-122.275460", "37.824698,-122.275521", "37.824765,-122.275776", "37.825375,-122.277640", "37.831646,-122.263786", "37.835058,-122.273065", "37.848685,-122.252786", "37.839015,-122.269326", "37.841618,-122.281718", "37.821260,-122.270570", "37.786195,-122.236221", "37.831520,-122.215186", "37.829165,-122.264323", "37.824731,-122.275626", "37.809733,-122.259241", "37.846475,-122.251951", "37.843378,-122.257106", "37.848678,-122.252211", "37.849803,-122.252273", "37.787578,-122.243088", "37.802438,-122.272500", "37.823243,-122.265940", "37.824610,-122.275478", "37.824718,-122.275403", "37.833253,-122.264956", "37.833256,-122.265016", "37.775170,-122.192130"],
"count_dist": "16",
"count": "38",
"markerNums": []
},
{
"license": "15250C1",
"locations": ["37.775760,-122.230965", "37.798590,-122.209191", "37.772255,-122.214466", "37.768865,-122.214996", "37.747480,-122.196003", "37.774308,-122.218805", "37.765948,-122.177135", "37.761235,-122.163716", "37.812963,-122.251060", "37.792020,-122.249596", "37.789155,-122.220663", "37.787458,-122.249046", "37.787838,-122.217820", "37.775545,-122.210873", "37.807550,-122.270203", "37.809643,-122.247191", "37.783931,-122.222761", "37.769941,-122.185095", "37.781380,-122.219750", "37.779231,-122.216618", "37.771741,-122.213760", "37.772600,-122.198603", "37.772608,-122.200635", "37.772611,-122.197770", "37.772635,-122.198545", "37.772638,-122.205050", "37.772648,-122.205485", "37.777660,-122.225955", "37.776410,-122.222708", "37.803586,-122.271386", "37.803696,-122.251230", "37.797021,-122.238586", "37.800086,-122.275833", "37.793581,-122.218871", "37.790431,-122.229981", "37.788383,-122.240023", "37.795685,-122.211623", "37.786408,-122.240818"],
"count_dist": "21",
"count": "38",
"markerNums": []
},
{
"license": "63060D1",
"locations": ["37.752166,-122.167498", "37.753571,-122.165765", "37.776505,-122.163956", "37.798936,-122.230628", "37.799133,-122.230863", "37.816243,-122.284910", "37.826050,-122.251171", "37.815986,-122.268016", "37.799125,-122.230655", "37.793506,-122.218788", "37.807473,-122.268193", "37.778406,-122.217293", "37.785025,-122.234400", "37.820078,-122.276291", "37.818908,-122.273805", "37.798981,-122.230635", "37.799000,-122.230788", "37.799006,-122.230628", "37.799013,-122.230815", "37.823030,-122.277506", "37.798950,-122.230663", "37.798971,-122.230696", "37.798973,-122.230660", "37.798978,-122.230670", "37.785145,-122.189668", "37.784893,-122.234203", "37.841828,-122.249170", "37.840936,-122.251418", "37.770693,-122.184410", "37.798963,-122.230635", "37.798968,-122.230595", "37.759650,-122.170366", "37.757826,-122.208083", "37.755326,-122.161206", "37.749640,-122.174961", "37.764830,-122.198973", "37.757128,-122.200288"],
"count_dist": "18",
"count": "38",
"markerNums": []
},
{
"license": "6BTS513",
"locations": ["37.810525,-122.247283", "37.759820,-122.188448", "37.777016,-122.224693", "37.774176,-122.186791", "37.772641,-122.195828", "37.771075,-122.186573", "37.771098,-122.186636", "37.772050,-122.192991", "37.769915,-122.178381", "37.787645,-122.242910", "37.792363,-122.249953", "37.790471,-122.197681", "37.789603,-122.200768", "37.813951,-122.268576", "37.815470,-122.268196", "37.816171,-122.268016", "37.757806,-122.183988", "37.773821,-122.187216", "37.774223,-122.186808", "37.802806,-122.230718", "37.778908,-122.216533", "37.792693,-122.250418", "37.758371,-122.185303", "37.801560,-122.263965", "37.799763,-122.251953", "37.768696,-122.206833", "37.791358,-122.202456", "37.788561,-122.199051", "37.741978,-122.166665", "37.748680,-122.173613", "37.735446,-122.183585", "37.803720,-122.274103", "37.744261,-122.170380", "37.773818,-122.187203", "37.773851,-122.187158", "37.812371,-122.250321", "37.782741,-122.188000", "37.758165,-122.185226"],
"count_dist": "21",
"count": "38",
"markerNums": []
},
{
"license": "6MDT920",
"locations": ["37.817801,-122.265120", "37.820991,-122.273285", "37.816036,-122.278090", "37.790148,-122.246878", "37.790470,-122.246200", "37.771780,-122.206200", "37.781631,-122.205075", "37.782241,-122.204573", "37.776445,-122.226363", "37.792866,-122.257945", "37.790415,-122.197631", "37.814470,-122.278715", "37.821403,-122.273301", "37.821416,-122.273280", "37.821455,-122.273241", "37.821468,-122.273246", "37.821473,-122.273245", "37.821501,-122.273266", "37.821510,-122.273236", "37.821525,-122.273250", "37.821538,-122.273225", "37.820848,-122.273286", "37.820850,-122.273325", "37.820856,-122.273295", "37.820920,-122.273258", "37.820940,-122.273266", "37.820941,-122.273278", "37.820986,-122.273313", "37.820991,-122.273321", "37.797831,-122.281301", "37.796360,-122.279258", "37.798900,-122.275116", "37.794441,-122.267758", "37.760765,-122.181300", "37.752155,-122.195371", "37.798410,-122.266041", "37.799063,-122.251010", "37.780416,-122.206118"],
"count_dist": "16",
"count": "38",
"markerNums": []
},
{
"license": "8S34553",
"locations": ["37.804648,-122.295103", "37.804910,-122.278360", "37.804520,-122.294931", "37.806101,-122.276001", "37.816453,-122.252493", "37.811573,-122.288063", "37.806853,-122.270278", "37.807261,-122.278546", "37.807290,-122.270181", "37.817106,-122.277708", "37.782485,-122.204303", "37.784381,-122.226100", "37.840930,-122.269775", "37.797153,-122.265205", "37.802400,-122.263586", "37.799435,-122.265308", "37.799458,-122.275761", "37.799670,-122.274700", "37.799603,-122.274590", "37.794305,-122.252176", "37.758353,-122.185443", "37.815785,-122.272103", "37.777160,-122.226225", "37.781370,-122.205306", "37.804405,-122.278626", "37.814461,-122.296953", "37.798843,-122.256506", "37.788341,-122.244206", "37.775020,-122.185836", "37.779590,-122.229421", "37.783808,-122.236628", "37.811656,-122.247730", "37.811656,-122.247728", "37.808771,-122.253975", "37.792933,-122.199928", "37.803415,-122.268961", "37.797010,-122.204328", "37.796193,-122.203415"],
"count_dist": "24",
"count": "38",
"markerNums": []
},
{
"license": "8X54949",
"locations": ["37.798440,-122.271461", "37.809760,-122.267653", "37.808876,-122.268280", "37.813945,-122.268551", "37.831143,-122.263911", "37.818910,-122.267235", "37.819578,-122.267136", "37.791871,-122.249398", "37.807878,-122.270046", "37.804068,-122.252478", "37.808765,-122.254301", "37.809021,-122.256855", "37.809500,-122.246811", "37.809700,-122.247270", "37.793740,-122.251580", "37.826466,-122.257491", "37.818823,-122.262095", "37.816631,-122.251876", "37.754048,-122.197763", "37.839498,-122.262090", "37.832508,-122.214666", "37.805210,-122.273591", "37.840743,-122.224191", "37.773071,-122.227726", "37.836361,-122.268076", "37.840083,-122.261898", "37.840216,-122.262086", "37.840373,-122.262735", "37.840451,-122.262938", "37.839950,-122.262013", "37.839323,-122.261958", "37.839226,-122.262120", "37.803345,-122.271035", "37.800153,-122.254918", "37.818345,-122.262418", "37.809180,-122.257641", "37.807975,-122.249310", "37.809071,-122.250245"],
"count_dist": "16",
"count": "38",
"markerNums": []
},
{
"license": "8Z52874",
"locations": ["37.808231,-122.182221", "37.853390,-122.225990", "37.782731,-122.203871", "37.780526,-122.206100", "37.765613,-122.184830", "37.765641,-122.184730", "37.773326,-122.213516", "37.824936,-122.261685", "37.800053,-122.229023", "37.789881,-122.258240", "37.798931,-122.230715", "37.798858,-122.230646", "37.798915,-122.230568", "37.801336,-122.228603", "37.797711,-122.217115", "37.799903,-122.277481", "37.846243,-122.244915", "37.846245,-122.244913", "37.846230,-122.244935", "37.799076,-122.230871", "37.811906,-122.269521", "37.778275,-122.225538", "37.778273,-122.225538", "37.781496,-122.222643", "37.758928,-122.186358", "37.748710,-122.179016", "37.782081,-122.233648", "37.817156,-122.275463", "37.819250,-122.276046", "37.841148,-122.261946", "37.796386,-122.277710", "37.812015,-122.269125", "37.808008,-122.304511", "37.804355,-122.290736", "37.802995,-122.264620", "37.783696,-122.178923", "37.742543,-122.193586"],
"count_dist": "24",
"count": "38",
"markerNums": []
},
{
"license": "8Z52878",
"locations": ["37.839356,-122.262053", "37.824523,-122.255020", "37.831625,-122.259945", "37.785385,-122.231611", "37.790201,-122.211525", "37.798860,-122.230596", "37.798875,-122.230606", "37.798903,-122.230683", "37.799028,-122.273303", "37.798733,-122.273541", "37.798783,-122.229438", "37.799031,-122.230698", "37.787290,-122.242420", "37.786403,-122.246771", "37.793691,-122.211595", "37.776736,-122.209611", "37.781998,-122.233418", "37.823716,-122.259095", "37.825210,-122.278196", "37.836078,-122.251431", "37.798973,-122.230711", "37.799001,-122.230628", "37.799003,-122.230626", "37.798193,-122.229620", "37.805070,-122.272616", "37.820676,-122.254413", "37.764151,-122.209508", "37.764176,-122.209515", "37.837098,-122.260493", "37.811930,-122.242303", "37.732683,-122.186890", "37.764796,-122.179905", "37.794381,-122.252228", "37.837065,-122.261530", "37.798810,-122.230715", "37.798856,-122.230691", "37.793781,-122.253260", "37.791926,-122.251323"],
"count_dist": "19",
"count": "38",
"markerNums": []
},
{
"license": "4RZL846",
"locations": ["37.749248,-122.174000", "37.749628,-122.175075", "37.742268,-122.168968", "37.839396,-122.261998", "37.839408,-122.261996", "37.798910,-122.277195", "37.840118,-122.261976", "37.799701,-122.216438", "37.839950,-122.262010", "37.840010,-122.262010", "37.838925,-122.262028", "37.839583,-122.262036", "37.839618,-122.262055", "37.839440,-122.262006", "37.804845,-122.287895", "37.810591,-122.283381", "37.838815,-122.262126", "37.839155,-122.262075", "37.839065,-122.262126", "37.839120,-122.262116", "37.839236,-122.262080", "37.825721,-122.278095", "37.849231,-122.252441", "37.825631,-122.277990", "37.839120,-122.262090", "37.839343,-122.262040", "37.813673,-122.269845", "37.786880,-122.221531", "37.825605,-122.278085", "37.790018,-122.247213", "37.810695,-122.300840", "37.774755,-122.225736", "37.769641,-122.182478", "37.839460,-122.262006", "37.839888,-122.261981", "37.840396,-122.262000", "37.811831,-122.279580"],
"count_dist": "16",
"count": "37",
"markerNums": []
},
{
"license": "6ECY927",
"locations": ["37.757461,-122.199883", "37.803486,-122.233168", "37.785353,-122.198825", "37.791175,-122.198316", "37.787330,-122.194956", "37.818668,-122.267415", "37.783788,-122.201821", "37.801303,-122.215726", "37.830541,-122.238893", "37.799818,-122.253370", "37.798083,-122.252373", "37.847816,-122.265398", "37.847955,-122.265555", "37.815670,-122.278271", "37.815231,-122.251138", "37.817568,-122.245185", "37.825155,-122.275288", "37.828453,-122.259441", "37.823571,-122.277398", "37.811166,-122.247996", "37.823476,-122.276686", "37.814103,-122.268550", "37.823606,-122.277113", "37.823441,-122.276500", "37.823545,-122.277011", "37.796395,-122.217636", "37.844601,-122.251710", "37.788378,-122.220900", "37.792848,-122.199941", "37.792583,-122.219168", "37.795785,-122.253931", "37.804678,-122.250826", "37.811190,-122.248046", "37.790301,-122.247681", "37.768996,-122.171820", "37.770286,-122.187168", "37.783981,-122.222795"],
"count_dist": "22",
"count": "37",
"markerNums": []
},
{
"license": "6RQF588",
"locations": ["37.779943,-122.224670", "37.783508,-122.235778", "37.825436,-122.269450", "37.797358,-122.204906", "37.797360,-122.204933", "37.797710,-122.217110", "37.797916,-122.206135", "37.798033,-122.206228", "37.798060,-122.206453", "37.797420,-122.204950", "37.797445,-122.205048", "37.785106,-122.233928", "37.788503,-122.244291", "37.788100,-122.243665", "37.787831,-122.243165", "37.790355,-122.247721", "37.774966,-122.220130", "37.783795,-122.222668", "37.780620,-122.224398", "37.771315,-122.188655", "37.751273,-122.175603", "37.794418,-122.252251", "37.793830,-122.207720", "37.793808,-122.207740", "37.794045,-122.208028", "37.796136,-122.206260", "37.799421,-122.216563", "37.765170,-122.199561", "37.798893,-122.210578", "37.747493,-122.172730", "37.745658,-122.171331", "37.744708,-122.170770", "37.749923,-122.174643", "37.749245,-122.174143", "37.742268,-122.168968", "37.755843,-122.180210"],
"count_dist": "17",
"count": "37",
"markerNums": []
},
{
"license": "8Z53133",
"locations": ["37.793843,-122.213233", "37.793855,-122.213260", "37.805183,-122.270728", "37.837081,-122.261870", "37.765875,-122.187290", "37.777221,-122.214848", "37.778225,-122.230216", "37.822025,-122.262285", "37.739395,-122.196343", "37.798961,-122.230713", "37.798810,-122.230715", "37.798841,-122.230708", "37.827781,-122.251098", "37.799188,-122.230990", "37.799040,-122.230650", "37.800293,-122.269465", "37.805460,-122.274248", "37.803433,-122.272136", "37.805443,-122.282031", "37.798851,-122.230503", "37.798948,-122.230550", "37.798966,-122.230500", "37.798970,-122.230818", "37.842448,-122.284035", "37.754036,-122.174255", "37.798916,-122.230708", "37.799101,-122.275131", "37.798988,-122.230706", "37.799000,-122.230661", "37.799000,-122.230695", "37.797603,-122.213291", "37.803546,-122.285955", "37.793731,-122.251578", "37.840058,-122.282875", "37.840120,-122.282860", "37.822286,-122.265825", "37.822050,-122.262270"],
"count_dist": "19",
"count": "37",
"markerNums": []
},
{
"license": "8Z53143",
"locations": ["37.789376,-122.246080", "37.831048,-122.263865", "37.840038,-122.280395", "37.839976,-122.280566", "37.824510,-122.259096", "37.827833,-122.271708", "37.779003,-122.229490", "37.798870,-122.230533", "37.797785,-122.267980", "37.821825,-122.262190", "37.738623,-122.179078", "37.798881,-122.230590", "37.785240,-122.198801", "37.713553,-122.144970", "37.763006,-122.195028", "37.825131,-122.261613", "37.825240,-122.265433", "37.790673,-122.229200", "37.800713,-122.254415", "37.798911,-122.230648", "37.798916,-122.230701", "37.799765,-122.214021", "37.798785,-122.230625", "37.798786,-122.230623", "37.794375,-122.239468", "37.754035,-122.166991", "37.754068,-122.166791", "37.777251,-122.209116", "37.821611,-122.262071", "37.799018,-122.230775", "37.799050,-122.230811", "37.785243,-122.189833", "37.798965,-122.230613", "37.732113,-122.188108", "37.828288,-122.282001", "37.775148,-122.236250"],
"count_dist": "22",
"count": "37",
"markerNums": []
},
{
"license": "6PUF627",
"locations": ["37.762923,-122.194976", "37.840391,-122.263898", "37.839450,-122.261975", "37.840161,-122.261673", "37.840138,-122.261698", "37.795445,-122.202483", "37.839926,-122.261996", "37.839165,-122.262026", "37.838973,-122.261991", "37.800293,-122.229125", "37.744783,-122.150640", "37.744933,-122.150371", "37.788858,-122.226546", "37.810660,-122.244406", "37.811443,-122.247898", "37.809611,-122.295353", "37.769691,-122.182150", "37.781421,-122.224003", "37.792225,-122.203870", "37.815901,-122.278201", "37.815981,-122.271880", "37.817150,-122.272266", "37.817158,-122.272495", "37.817018,-122.271651", "37.817053,-122.271670", "37.817061,-122.272190", "37.817075,-122.272148", "37.817116,-122.272195", "37.817116,-122.272280", "37.817126,-122.272461", "37.808445,-122.275961", "37.808450,-122.275953", "37.799006,-122.220493", "37.816988,-122.271646", "37.839313,-122.262003", "37.816431,-122.271746"],
"count_dist": "16",
"count": "36",
"markerNums": []
},
{
"license": "8S34283",
"locations": ["37.824506,-122.256588", "37.829533,-122.267208", "37.827805,-122.261078", "37.818685,-122.244753", "37.819136,-122.265061", "37.803133,-122.253645", "37.804440,-122.296941", "37.804386,-122.296470", "37.803430,-122.253566", "37.803496,-122.253491", "37.802995,-122.253653", "37.804111,-122.252545", "37.744793,-122.195896", "37.804001,-122.252965", "37.803988,-122.252461", "37.804160,-122.252420", "37.799130,-122.277723", "37.751515,-122.163905", "37.802720,-122.253816", "37.827078,-122.269091", "37.793451,-122.251221", "37.793038,-122.250873", "37.786730,-122.241546", "37.787266,-122.242315", "37.801438,-122.263288", "37.803245,-122.271745", "37.802960,-122.237521", "37.803418,-122.271545", "37.768801,-122.207193", "37.783945,-122.222751", "37.781670,-122.218971", "37.816348,-122.252451", "37.812130,-122.260900", "37.804470,-122.271158", "37.804475,-122.271688", "37.805005,-122.272606"],
"count_dist": "20",
"count": "36",
"markerNums": []
},
{
"license": "8U40841",
"locations": ["37.797233,-122.204788", "37.829071,-122.263171", "37.820468,-122.258268", "37.807848,-122.240960", "37.800678,-122.264686", "37.800900,-122.264750", "37.801308,-122.265886", "37.797348,-122.275646", "37.794755,-122.231680", "37.828716,-122.261271", "37.795958,-122.231961", "37.819453,-122.251998", "37.841163,-122.274298", "37.797521,-122.230673", "37.788658,-122.229708", "37.813305,-122.274240", "37.808850,-122.248023", "37.782151,-122.219221", "37.824906,-122.259776", "37.823048,-122.262053", "37.834716,-122.273060", "37.809115,-122.249878", "37.829355,-122.267408", "37.828513,-122.260633", "37.819711,-122.279820", "37.816840,-122.277780", "37.820331,-122.275308", "37.825715,-122.265361", "37.815435,-122.274658", "37.810066,-122.273551", "37.811931,-122.242926", "37.844960,-122.261366", "37.804133,-122.295443", "37.809643,-122.298711", "37.760898,-122.213883", "37.815013,-122.268321"],
"count_dist": "21",
"count": "36",
"markerNums": []
},
{
"license": "8Z52870",
"locations": ["37.789068,-122.205806", "37.799838,-122.214218", "37.799003,-122.230791", "37.798860,-122.230696", "37.841483,-122.251501", "37.783525,-122.228753", "37.760826,-122.190730", "37.768536,-122.173550", "37.777860,-122.225785", "37.802930,-122.216375", "37.798861,-122.230555", "37.748520,-122.161606", "37.773236,-122.235423", "37.809085,-122.252676", "37.790903,-122.219831", "37.835375,-122.264805", "37.825285,-122.265028", "37.789516,-122.248405", "37.771605,-122.177073", "37.821935,-122.262308", "37.778326,-122.223035", "37.783691,-122.221560", "37.772085,-122.193318", "37.798983,-122.230715", "37.799001,-122.230568", "37.799181,-122.231186", "37.803458,-122.271618", "37.821688,-122.262175", "37.821705,-122.262296", "37.836410,-122.262631", "37.837648,-122.262281", "37.791975,-122.249556", "37.793475,-122.240388", "37.786858,-122.241603", "37.811468,-122.293905"],
"count_dist": "22",
"count": "36",
"markerNums": []
},
{
"license": "8Z53131",
"locations": ["37.800578,-122.276998", "37.828526,-122.259678", "37.822890,-122.256290", "37.798870,-122.230575", "37.799000,-122.230601", "37.797540,-122.210383", "37.796720,-122.254935", "37.797180,-122.180175", "37.797230,-122.180281", "37.800708,-122.273221", "37.814170,-122.246206", "37.813150,-122.246823", "37.769613,-122.182185", "37.777643,-122.221953", "37.850031,-122.238346", "37.783513,-122.209398", "37.787685,-122.204285", "37.800368,-122.273640", "37.799226,-122.231260", "37.765336,-122.177505", "37.828893,-122.274271", "37.827748,-122.264731", "37.799133,-122.230868", "37.799221,-122.231051", "37.843460,-122.283921", "37.735081,-122.180451", "37.741428,-122.162768", "37.821970,-122.262285", "37.830818,-122.254728", "37.797185,-122.231430", "37.798846,-122.230728", "37.798851,-122.230686", "37.799220,-122.231216", "37.812410,-122.272520", "37.811653,-122.247745"],
"count_dist": "20",
"count": "36",
"markerNums": []
},
{
"license": "8Z53147",
"locations": ["37.762698,-122.181708", "37.766115,-122.176833", "37.786223,-122.193615", "37.833475,-122.253175", "37.833486,-122.253170", "37.739993,-122.199235", "37.837571,-122.273416", "37.822123,-122.262251", "37.822180,-122.262346", "37.822316,-122.266208", "37.811908,-122.269201", "37.826610,-122.252113", "37.830965,-122.279896", "37.757398,-122.154863", "37.757398,-122.154861", "37.786320,-122.196623", "37.795928,-122.267521", "37.809141,-122.257653", "37.812111,-122.269638", "37.814120,-122.275415", "37.775313,-122.221166", "37.774218,-122.186855", "37.822251,-122.261898", "37.824985,-122.254203", "37.798921,-122.230698", "37.798928,-122.230591", "37.798980,-122.230718", "37.810985,-122.250756", "37.786723,-122.241426", "37.789851,-122.245736", "37.740120,-122.196398", "37.747156,-122.172508", "37.793866,-122.213258", "37.798821,-122.230661", "37.809445,-122.299113", "37.809498,-122.299048"],
"count_dist": "25",
"count": "36",
"markerNums": []
},
{
"license": "8Z88026",
"locations": ["37.801470,-122.246413", "37.818951,-122.267365", "37.800166,-122.277755", "37.773635,-122.229420", "37.763936,-122.216678", "37.790991,-122.250185", "37.806026,-122.284445", "37.806035,-122.284531", "37.806045,-122.284583", "37.802641,-122.273286", "37.796678,-122.258141", "37.798838,-122.256691", "37.739008,-122.198206", "37.781515,-122.232735", "37.781518,-122.232728", "37.808943,-122.250075", "37.787125,-122.242141", "37.781873,-122.233445", "37.781905,-122.233570", "37.781836,-122.233401", "37.781701,-122.233061", "37.781646,-122.232948", "37.781646,-122.233091", "37.781703,-122.233036", "37.795746,-122.225973", "37.795858,-122.225901", "37.787741,-122.217801", "37.780195,-122.215198", "37.806116,-122.284818", "37.819246,-122.265701", "37.812641,-122.272435", "37.812380,-122.271013", "37.812401,-122.271090", "37.793443,-122.249576", "37.805940,-122.275215", "37.801915,-122.272898"],
"count_dist": "17",
"count": "36",
"markerNums": []
},
{
"license": "12768D1",
"locations": ["37.805580,-122.267058", "37.801866,-122.292845", "37.770773,-122.191081", "37.822410,-122.276181", "37.833661,-122.263156", "37.777808,-122.225765", "37.788686,-122.251115", "37.834025,-122.251463", "37.844628,-122.251813", "37.821866,-122.272226", "37.821916,-122.273100", "37.848578,-122.260798", "37.813548,-122.246513", "37.790366,-122.247750", "37.786901,-122.241735", "37.769483,-122.181748", "37.787371,-122.242596", "37.807698,-122.300583", "37.809728,-122.259186", "37.808805,-122.256155", "37.784263,-122.237313", "37.828643,-122.245301", "37.827593,-122.251001", "37.836566,-122.211426", "37.829630,-122.226401", "37.844570,-122.251993", "37.847040,-122.284635", "37.826305,-122.252480", "37.835400,-122.262721", "37.833253,-122.263363", "37.784086,-122.237180", "37.835810,-122.251638", "37.818910,-122.267366", "37.809093,-122.257030", "37.816201,-122.245575"],
"count_dist": "22",
"count": "35",
"markerNums": []
},
{
"license": "5YCV099",
"locations": ["37.803998,-122.252800", "37.802523,-122.272398", "37.799921,-122.274421", "37.800920,-122.279830", "37.801555,-122.254316", "37.789948,-122.247066", "37.790555,-122.247915", "37.790371,-122.260640", "37.795678,-122.253735", "37.796238,-122.254375", "37.816471,-122.265200", "37.817633,-122.277548", "37.810711,-122.283965", "37.810711,-122.283966", "37.807550,-122.270203", "37.814213,-122.274565", "37.813683,-122.268455", "37.805510,-122.274275", "37.825511,-122.280515", "37.828536,-122.259683", "37.826295,-122.257431", "37.845413,-122.261851", "37.782961,-122.235073", "37.785041,-122.207025", "37.816673,-122.277851", "37.803086,-122.274963", "37.803718,-122.269285", "37.793880,-122.216821", "37.791030,-122.205168", "37.793608,-122.251361", "37.775865,-122.221990", "37.773246,-122.188025", "37.815736,-122.274758", "37.817478,-122.277626", "37.745463,-122.196170"],
"count_dist": "18",
"count": "35",
"markerNums": []
},
{
"license": "8Z53123",
"locations": ["37.810103,-122.262765", "37.799050,-122.230616", "37.798136,-122.269053", "37.803015,-122.267668", "37.734606,-122.184190", "37.729721,-122.194696", "37.786795,-122.241705", "37.772595,-122.188875", "37.822028,-122.262191", "37.822061,-122.262261", "37.828526,-122.255965", "37.799696,-122.275003", "37.799706,-122.214058", "37.799723,-122.275105", "37.798923,-122.229643", "37.799023,-122.230838", "37.799120,-122.230828", "37.799210,-122.230615", "37.798773,-122.230650", "37.785115,-122.237463", "37.796851,-122.206011", "37.757425,-122.192605", "37.757393,-122.192666", "37.748021,-122.173386", "37.798938,-122.230626", "37.813751,-122.265371", "37.798936,-122.230670", "37.842501,-122.273408", "37.798985,-122.230771", "37.798991,-122.230738", "37.773456,-122.212890", "37.808000,-122.272550", "37.808016,-122.274895", "37.821826,-122.262190", "37.821888,-122.262315"],
"count_dist": "16",
"count": "35",
"markerNums": []
},
{
"license": "8Z53148",
"locations": ["37.805585,-122.267061", "37.806221,-122.275578", "37.781830,-122.219203", "37.781860,-122.219188", "37.798831,-122.210285", "37.821736,-122.262198", "37.798931,-122.229506", "37.798988,-122.230696", "37.798996,-122.230686", "37.799086,-122.230898", "37.799878,-122.279931", "37.800045,-122.219866", "37.803533,-122.253285", "37.744770,-122.150716", "37.769690,-122.218446", "37.823486,-122.283443", "37.823193,-122.283566", "37.823138,-122.283553", "37.761265,-122.199340", "37.776951,-122.224255", "37.805246,-122.250548", "37.798940,-122.230548", "37.798920,-122.230711", "37.798971,-122.230611", "37.788791,-122.219551", "37.789448,-122.248505", "37.824035,-122.272556", "37.834425,-122.272726", "37.823673,-122.257153", "37.823206,-122.256355", "37.814063,-122.282530", "37.808911,-122.274358", "37.815181,-122.268261", "37.773253,-122.178720", "37.773255,-122.178718"],
"count_dist": "19",
"count": "35",
"markerNums": []
},
{
"license": "8Z88021",
"locations": ["37.819535,-122.269930", "37.825081,-122.265736", "37.844988,-122.261411", "37.784296,-122.222453", "37.792310,-122.269153", "37.766203,-122.176431", "37.757371,-122.183223", "37.836770,-122.257921", "37.768256,-122.173473", "37.804300,-122.271318", "37.814571,-122.278958", "37.789821,-122.207355", "37.788480,-122.209533", "37.788776,-122.209165", "37.788760,-122.209168", "37.788608,-122.209446", "37.788898,-122.208921", "37.770971,-122.217683", "37.795481,-122.197498", "37.786965,-122.221471", "37.821780,-122.277003", "37.810770,-122.261256", "37.808023,-122.279275", "37.808218,-122.269990", "37.806943,-122.270241", "37.805601,-122.273486", "37.806005,-122.250265", "37.809413,-122.249736", "37.809440,-122.249725", "37.807691,-122.280013", "37.795900,-122.238806", "37.800933,-122.275663", "37.774743,-122.211736", "37.747243,-122.164493", "37.780048,-122.238200"],
"count_dist": "23",
"count": "35",
"markerNums": []
},
{
"license": "6EMR655",
"locations": ["37.785961,-122.242718", "37.785981,-122.242778", "37.778658,-122.216415", "37.779768,-122.171563", "37.771413,-122.190490", "37.814973,-122.274683", "37.820643,-122.266826", "37.751966,-122.157693", "37.753676,-122.165776", "37.764645,-122.198511", "37.764665,-122.198428", "37.764710,-122.198568", "37.765198,-122.199403", "37.795151,-122.202198", "37.795220,-122.202245", "37.788835,-122.248626", "37.786693,-122.236970", "37.823328,-122.272651", "37.764470,-122.186011", "37.754166,-122.164460", "37.764740,-122.198510", "37.748383,-122.173626", "37.751451,-122.157325", "37.765205,-122.199330", "37.765343,-122.199271", "37.765446,-122.199023", "37.766228,-122.201628", "37.751526,-122.180936", "37.793675,-122.261370", "37.786353,-122.196293", "37.786396,-122.196143", "37.808886,-122.255621", "37.842911,-122.261610", "37.842461,-122.261648"],
"count_dist": "18",
"count": "34",
"markerNums": []
},
{
"license": "7Y33772",
"locations": ["37.772638,-122.205903", "37.796468,-122.266406", "37.790610,-122.220048", "37.806136,-122.284970", "37.812553,-122.247211", "37.796580,-122.275365", "37.807943,-122.304730", "37.813086,-122.247001", "37.813711,-122.246646", "37.813863,-122.250578", "37.817150,-122.263195", "37.817413,-122.263210", "37.786476,-122.241116", "37.778343,-122.227248", "37.789250,-122.248331", "37.816810,-122.271650", "37.799736,-122.275475", "37.799868,-122.275478", "37.800323,-122.266246", "37.800015,-122.274068", "37.801288,-122.273283", "37.797005,-122.265581", "37.789635,-122.246628", "37.776725,-122.186888", "37.769621,-122.181781", "37.808230,-122.265813", "37.784343,-122.237466", "37.785315,-122.198645", "37.805735,-122.267306", "37.805815,-122.274913", "37.808733,-122.269681", "37.808753,-122.269835", "37.813460,-122.246763", "37.813810,-122.265170"],
"count_dist": "17",
"count": "34",
"markerNums": []
},
{
"license": "8C16414",
"locations": ["37.789086,-122.245420", "37.826538,-122.259856", "37.823110,-122.256215", "37.743478,-122.172383", "37.788305,-122.244115", "37.780296,-122.229566", "37.763158,-122.195523", "37.770885,-122.211628", "37.785358,-122.190550", "37.820026,-122.270895", "37.742893,-122.173671", "37.846450,-122.282080", "37.784675,-122.222488", "37.774285,-122.219051", "37.783975,-122.222765", "37.775736,-122.213045", "37.788110,-122.243710", "37.788896,-122.254115", "37.793631,-122.251481", "37.793366,-122.251188", "37.789630,-122.258340", "37.790728,-122.248055", "37.794886,-122.252860", "37.795846,-122.253786", "37.799633,-122.274920", "37.786726,-122.167851", "37.832695,-122.263611", "37.827621,-122.272548", "37.827288,-122.270546", "37.834555,-122.262125", "37.781898,-122.157780", "37.784900,-122.238301", "37.737798,-122.198225", "37.827355,-122.270700"],
"count_dist": "22",
"count": "34",
"markerNums": []
},
{
"license": "63058D1",
"locations": ["37.798825,-122.230656", "37.798011,-122.217421", "37.826570,-122.252060", "37.822415,-122.255530", "37.823398,-122.256898", "37.824740,-122.256401", "37.824835,-122.256408", "37.824851,-122.256475", "37.819830,-122.256260", "37.771641,-122.209871", "37.803656,-122.282668", "37.804123,-122.282388", "37.795513,-122.236393", "37.795220,-122.249858", "37.773718,-122.166005", "37.769726,-122.171106", "37.785855,-122.221965", "37.799015,-122.230663", "37.799028,-122.230676", "37.799033,-122.230668", "37.801770,-122.272728", "37.824401,-122.283068", "37.758093,-122.194280", "37.815055,-122.268293", "37.780223,-122.174853", "37.801271,-122.228341", "37.822140,-122.262211", "37.822260,-122.262545", "37.735105,-122.192360", "37.799181,-122.230933", "37.790276,-122.220090", "37.787138,-122.221386", "37.803708,-122.268593"],
"count_dist": "16",
"count": "33",
"markerNums": []
},
{
"license": "6AVE704",
"locations": ["37.849745,-122.252296", "37.769790,-122.220616", "37.831501,-122.263968", "37.822656,-122.261890", "37.776778,-122.224188", "37.764256,-122.197495", "37.771961,-122.213846", "37.767851,-122.205213", "37.779570,-122.229383", "37.758945,-122.187311", "37.842666,-122.261473", "37.788215,-122.195553", "37.804816,-122.272538", "37.793465,-122.256215", "37.784475,-122.227070", "37.784555,-122.228061", "37.796035,-122.269568", "37.816113,-122.278545", "37.816623,-122.255445", "37.813263,-122.289275", "37.810635,-122.275068", "37.808298,-122.281075", "37.814683,-122.280368", "37.837515,-122.264908", "37.779041,-122.228416", "37.779043,-122.228441", "37.851171,-122.260415", "37.773350,-122.223013", "37.792908,-122.252346", "37.795435,-122.253546", "37.802000,-122.265218", "37.797578,-122.262718", "37.799210,-122.256355"],
"count_dist": "20",
"count": "33",
"markerNums": []
},
{
"license": "6JNR777",
"locations": ["37.768476,-122.179121", "37.748510,-122.161968", "37.760128,-122.170275", "37.758676,-122.187588", "37.757498,-122.191438", "37.769331,-122.171698", "37.760795,-122.190583", "37.798386,-122.250111", "37.825685,-122.272275", "37.807053,-122.271618", "37.811630,-122.298620", "37.809023,-122.275233", "37.805056,-122.269790", "37.803606,-122.267196", "37.826835,-122.265116", "37.773825,-122.217896", "37.789455,-122.246161", "37.785001,-122.238571", "37.770538,-122.170091", "37.779433,-122.241938", "37.779435,-122.241841", "37.779443,-122.241726", "37.804441,-122.271676", "37.814646,-122.278576", "37.811961,-122.273606", "37.814200,-122.274573", "37.811505,-122.273903", "37.810193,-122.267468", "37.787893,-122.245466", "37.803528,-122.271473", "37.796728,-122.254931", "37.829643,-122.286891", "37.823401,-122.279390"],
"count_dist": "17",
"count": "33",
"markerNums": []
},
{
"license": "6UND316",
"locations": ["37.796445,-122.208153", "37.796711,-122.207933", "37.786848,-122.194163", "37.757018,-122.182503", "37.755945,-122.161453", "37.767455,-122.184705", "37.768400,-122.194908", "37.763283,-122.165341", "37.761608,-122.180916", "37.764078,-122.183478", "37.761951,-122.192940", "37.740518,-122.192393", "37.741025,-122.148858", "37.797428,-122.245970", "37.775360,-122.187925", "37.775313,-122.187996", "37.808676,-122.252888", "37.804136,-122.252538", "37.804168,-122.252326", "37.762575,-122.199250", "37.762598,-122.199186", "37.770958,-122.211740", "37.787265,-122.242313", "37.786850,-122.247561", "37.795033,-122.249195", "37.781270,-122.232440", "37.772673,-122.214133", "37.785615,-122.239698", "37.826043,-122.263480", "37.833308,-122.260631", "37.804805,-122.234205", "37.808480,-122.253060", "37.803921,-122.269916"],
"count_dist": "21",
"count": "33",
"markerNums": []
},
{
"license": "8S49683",
"locations": ["37.785028,-122.244738", "37.784786,-122.240211", "37.811935,-122.269315", "37.805425,-122.294830", "37.799740,-122.275023", "37.796318,-122.251153", "37.773635,-122.229055", "37.813418,-122.268566", "37.812931,-122.268653", "37.809068,-122.250248", "37.789648,-122.257448", "37.792541,-122.250331", "37.793103,-122.250916", "37.792025,-122.249728", "37.844115,-122.261325", "37.805785,-122.262635", "37.822525,-122.259741", "37.806751,-122.249838", "37.797838,-122.249548", "37.803515,-122.271796", "37.806016,-122.269773", "37.813946,-122.265285", "37.783506,-122.235775", "37.783510,-122.235781", "37.797600,-122.230340", "37.798995,-122.261805", "37.806103,-122.264690", "37.804198,-122.234293", "37.803818,-122.273391", "37.807655,-122.270146", "37.809355,-122.269285", "37.811488,-122.266300", "37.820455,-122.251056"],
"count_dist": "17",
"count": "33",
"markerNums": []
},
{
"license": "8V48137",
"locations": ["37.792395,-122.214343", "37.790180,-122.197481", "37.757506,-122.173531", "37.799076,-122.230893", "37.799076,-122.230888", "37.805385,-122.269110", "37.812510,-122.261246", "37.806580,-122.269838", "37.779815,-122.217458", "37.776163,-122.222940", "37.793530,-122.218795", "37.785080,-122.234136", "37.837401,-122.264951", "37.790480,-122.247918", "37.788293,-122.244020", "37.791160,-122.205095", "37.790860,-122.205230", "37.790903,-122.205216", "37.785361,-122.214953", "37.785363,-122.214951", "37.784128,-122.201150", "37.783780,-122.201808", "37.783816,-122.201701", "37.783825,-122.201800", "37.783871,-122.201485", "37.781366,-122.219776", "37.769803,-122.182946", "37.821435,-122.270526", "37.808705,-122.252396", "37.798581,-122.207561", "37.800243,-122.254758", "37.841541,-122.251538", "37.844625,-122.226933"],
"count_dist": "20",
"count": "33",
"markerNums": []
},
{
"license": "8Z52869",
"locations": ["37.806510,-122.265711", "37.807826,-122.191903", "37.808841,-122.243683", "37.820765,-122.271653", "37.820966,-122.273083", "37.798690,-122.257198", "37.798693,-122.257211", "37.798840,-122.230631", "37.798976,-122.230655", "37.811575,-122.266510", "37.803283,-122.267440", "37.826435,-122.252350", "37.824671,-122.272370", "37.799695,-122.274141", "37.800623,-122.277071", "37.765893,-122.210398", "37.765868,-122.210363", "37.766036,-122.210701", "37.798973,-122.230571", "37.761076,-122.196885", "37.761071,-122.196891", "37.745976,-122.147250", "37.799020,-122.230748", "37.786273,-122.186270", "37.731431,-122.179526", "37.845010,-122.261275", "37.798856,-122.230551", "37.826881,-122.265070", "37.833065,-122.207341", "37.833156,-122.207190", "37.798821,-122.230788", "37.781058,-122.232008", "37.782868,-122.235170"],
"count_dist": "19",
"count": "33",
"markerNums": []
},
{
"license": "8Z53138",
"locations": ["37.795591,-122.236020", "37.799163,-122.230946", "37.799396,-122.231313", "37.803168,-122.271920", "37.806978,-122.297253", "37.798996,-122.230613", "37.799003,-122.230608", "37.800140,-122.224938", "37.800550,-122.276940", "37.797108,-122.210156", "37.796778,-122.210410", "37.810965,-122.294293", "37.806688,-122.272851", "37.823703,-122.257243", "37.830721,-122.264143", "37.839610,-122.271473", "37.789925,-122.259695", "37.789746,-122.259048", "37.807078,-122.299076", "37.807183,-122.299075", "37.799136,-122.231046", "37.799186,-122.230995", "37.801055,-122.206075", "37.801070,-122.206033", "37.786953,-122.232206", "37.754788,-122.178108", "37.811148,-122.238520", "37.811153,-122.238488", "37.846925,-122.278290", "37.846900,-122.278426", "37.789443,-122.220431", "37.783428,-122.235903", "37.756295,-122.202191"],
"count_dist": "20",
"count": "33",
"markerNums": []
},
{
"license": "8Z53139",
"locations": ["37.788433,-122.246683", "37.798948,-122.230760", "37.798968,-122.230608", "37.883011,-122.245685", "37.883111,-122.245743", "37.826451,-122.252460", "37.812638,-122.272696", "37.745996,-122.183048", "37.765366,-122.199226", "37.788253,-122.244010", "37.813658,-122.277108", "37.848906,-122.259201", "37.798980,-122.230625", "37.798990,-122.230698", "37.736541,-122.157380", "37.771646,-122.213248", "37.768750,-122.201461", "37.745290,-122.168566", "37.798950,-122.230703", "37.798841,-122.230575", "37.798888,-122.230610", "37.798911,-122.230648", "37.798920,-122.230653", "37.772860,-122.182636", "37.799005,-122.230770", "37.799020,-122.230800", "37.838121,-122.214163", "37.774185,-122.224111", "37.821410,-122.270591", "37.821680,-122.262291", "37.821708,-122.262223", "37.811230,-122.263803", "37.813143,-122.246823"],
"count_dist": "20",
"count": "33",
"markerNums": []
},
{
"license": "8Z53140",
"locations": ["37.808520,-122.265953", "37.789018,-122.219646", "37.789020,-122.219646", "37.789023,-122.219651", "37.799003,-122.230685", "37.800080,-122.207248", "37.797540,-122.210383", "37.848803,-122.260190", "37.798968,-122.230641", "37.799180,-122.230743", "37.793011,-122.231488", "37.825093,-122.255871", "37.834610,-122.252635", "37.836370,-122.256615", "37.822216,-122.262418", "37.826876,-122.274920", "37.827630,-122.271766", "37.798903,-122.230745", "37.764293,-122.166421", "37.777488,-122.228000", "37.818016,-122.277388", "37.783651,-122.236348", "37.772455,-122.214708", "37.783518,-122.235806", "37.801041,-122.275846", "37.747175,-122.164541", "37.747291,-122.172815", "37.798840,-122.230646", "37.798951,-122.230686", "37.798971,-122.230738", "37.758343,-122.185441", "37.742758,-122.149380", "37.834306,-122.250573"],
"count_dist": "21",
"count": "33",
"markerNums": []
},
{
"license": "8Z53141",
"locations": ["37.798928,-122.230686", "37.740608,-122.167600", "37.746803,-122.169275", "37.746918,-122.169123", "37.798896,-122.230668", "37.799088,-122.230828", "37.828420,-122.260481", "37.825818,-122.276323", "37.791190,-122.221923", "37.804085,-122.278788", "37.799268,-122.231221", "37.802136,-122.265651", "37.798933,-122.230718", "37.799118,-122.230830", "37.777780,-122.225960", "37.811440,-122.241861", "37.798940,-122.230586", "37.814035,-122.268411", "37.816973,-122.275408", "37.769580,-122.208906", "37.769821,-122.170981", "37.824835,-122.260048", "37.798881,-122.230811", "37.798825,-122.230733", "37.785255,-122.198798", "37.787930,-122.177510", "37.787871,-122.177393", "37.787870,-122.177393", "37.825553,-122.262563", "37.799028,-122.230676", "37.799326,-122.231370", "37.828375,-122.281446", "37.828528,-122.281061"],
"count_dist": "17",
"count": "33",
"markerNums": []
},
{
"license": "CA52038",
"locations": ["37.799868,-122.254983", "37.774651,-122.211678", "37.768960,-122.171861", "37.768970,-122.171858", "37.768968,-122.171868", "37.798728,-122.274520", "37.768891,-122.171866", "37.767220,-122.196358", "37.767235,-122.196346", "37.759001,-122.186998", "37.812616,-122.272865", "37.812905,-122.273641", "37.797816,-122.256375", "37.803943,-122.271508", "37.794393,-122.255650", "37.837296,-122.262578", "37.822553,-122.266471", "37.804871,-122.293698", "37.770406,-122.181966", "37.759915,-122.170630", "37.776165,-122.222510", "37.777741,-122.225743", "37.826218,-122.252810", "37.785118,-122.199493", "37.794473,-122.218391", "37.807276,-122.222271", "37.816700,-122.288628", "37.819856,-122.276241", "37.773901,-122.224325", "37.768863,-122.174063", "37.809383,-122.246956", "37.804293,-122.250933", "37.783716,-122.201681"],
"count_dist": "25",
"count": "33",
"markerNums": []
},
{
"license": "5JOY219",
"locations": ["37.789586,-122.246558", "37.747240,-122.172615", "37.784466,-122.237593", "37.781996,-122.233756", "37.814841,-122.274890", "37.753750,-122.177338", "37.797281,-122.184713", "37.766278,-122.201796", "37.761448,-122.191625", "37.753885,-122.177735", "37.746186,-122.171793", "37.764675,-122.198518", "37.793541,-122.251248", "37.767638,-122.169800", "37.789881,-122.247113", "37.825196,-122.277938", "37.790836,-122.248296", "37.798720,-122.207763", "37.787080,-122.242061", "37.773111,-122.216595", "37.774785,-122.219800", "37.770471,-122.181625", "37.770393,-122.180978", "37.784898,-122.238420", "37.753711,-122.177328", "37.814191,-122.274563", "37.815463,-122.275005", "37.806700,-122.249833", "37.824021,-122.277728", "37.824035,-122.277743", "37.825876,-122.278106", "37.826458,-122.278311"],
"count_dist": "18",
"count": "32",
"markerNums": []
},
{
"license": "6DHM764",
"locations": ["37.742761,-122.160365", "37.763186,-122.199975", "37.765708,-122.198673", "37.763560,-122.200378", "37.753656,-122.177270", "37.787330,-122.225833", "37.789465,-122.220571", "37.787495,-122.226145", "37.787665,-122.226110", "37.787825,-122.226010", "37.766588,-122.168365", "37.742693,-122.173933", "37.741275,-122.166586", "37.757425,-122.175815", "37.787808,-122.225973", "37.770613,-122.175325", "37.784776,-122.199700", "37.795685,-122.218010", "37.787755,-122.226001", "37.787723,-122.226018", "37.787960,-122.225798", "37.788078,-122.225715", "37.787811,-122.225955", "37.787870,-122.225920", "37.787880,-122.225841", "37.787410,-122.225916", "37.787556,-122.226111", "37.764185,-122.167678", "37.758676,-122.185753", "37.782896,-122.220306", "37.769955,-122.173733", "37.771736,-122.206140"],
"count_dist": "16",
"count": "32",
"markerNums": []
},
{
"license": "6HQH493",
"locations": ["37.784901,-122.238501", "37.784991,-122.238585", "37.801788,-122.244705", "37.821390,-122.254461", "37.823065,-122.256271", "37.823281,-122.256440", "37.819900,-122.257230", "37.817605,-122.262931", "37.819888,-122.256308", "37.791875,-122.249391", "37.770446,-122.210763", "37.762945,-122.165151", "37.795515,-122.253525", "37.788478,-122.244168", "37.793488,-122.218951", "37.839791,-122.270168", "37.823790,-122.255883", "37.819235,-122.256188", "37.819251,-122.256153", "37.819820,-122.256278", "37.818803,-122.255386", "37.817155,-122.261446", "37.799441,-122.228295", "37.796730,-122.254906", "37.768990,-122.172336", "37.785858,-122.239843", "37.773826,-122.217673", "37.784971,-122.238305", "37.778145,-122.225510", "37.821151,-122.260630", "37.777813,-122.221868", "37.817055,-122.254915"],
"count_dist": "16",
"count": "32",
"markerNums": []
},
{
"license": "6NTE788",
"locations": ["37.793530,-122.251293", "37.795761,-122.255563", "37.795811,-122.255725", "37.795270,-122.256366", "37.822426,-122.265855", "37.772591,-122.198391", "37.741216,-122.177196", "37.783865,-122.223285", "37.784038,-122.223523", "37.756721,-122.161766", "37.814866,-122.274758", "37.770740,-122.184386", "37.796798,-122.251615", "37.797128,-122.251896", "37.784056,-122.237105", "37.754215,-122.177918", "37.762556,-122.182058", "37.748700,-122.179018", "37.822841,-122.270551", "37.822935,-122.270871", "37.778613,-122.207920", "37.772585,-122.225930", "37.793920,-122.222446", "37.794545,-122.249116", "37.795548,-122.246830", "37.796061,-122.247538", "37.806760,-122.240605", "37.805073,-122.272775", "37.805190,-122.273136", "37.805978,-122.273301", "37.799721,-122.253375", "37.796875,-122.251726"],
"count_dist": "17",
"count": "32",
"markerNums": []
},
{
"license": "7Y67871",
"locations": ["37.826128,-122.274091", "37.818970,-122.256546", "37.826583,-122.264721", "37.831843,-122.280080", "37.787948,-122.250645", "37.826656,-122.271406", "37.825658,-122.255113", "37.785096,-122.222286", "37.769961,-122.192711", "37.780180,-122.206421", "37.785855,-122.213950", "37.761985,-122.206776", "37.760151,-122.189355", "37.826533,-122.252100", "37.837891,-122.264313", "37.825258,-122.275220", "37.771573,-122.219095", "37.775446,-122.223305", "37.777773,-122.221823", "37.773340,-122.223013", "37.779995,-122.220470", "37.800831,-122.254146", "37.802460,-122.241138", "37.799126,-122.256675", "37.798850,-122.256900", "37.798953,-122.229628", "37.781986,-122.233421", "37.777126,-122.224926", "37.814378,-122.278735", "37.816896,-122.275476", "37.788976,-122.245263", "37.793755,-122.251550"],
"count_dist": "22",
"count": "32",
"markerNums": []
},
{
"license": "8X55223",
"locations": ["37.778761,-122.187160", "37.787991,-122.250681", "37.759818,-122.170198", "37.829271,-122.264663", "37.816096,-122.252305", "37.835476,-122.263856", "37.835325,-122.263863", "37.817098,-122.267653", "37.816776,-122.275373", "37.826301,-122.252606", "37.778458,-122.187495", "37.804223,-122.271268", "37.803470,-122.271375", "37.809996,-122.246221", "37.835816,-122.262585", "37.832305,-122.263591", "37.846750,-122.261018", "37.813806,-122.265166", "37.807330,-122.249660", "37.774790,-122.220053", "37.838610,-122.273850", "37.846886,-122.278468", "37.846901,-122.278435", "37.846906,-122.278350", "37.846923,-122.278466", "37.846948,-122.278000", "37.742136,-122.158575", "37.744780,-122.169658", "37.806946,-122.270070", "37.800076,-122.255120", "37.811150,-122.263165", "37.793885,-122.251706"],
"count_dist": "20",
"count": "32",
"markerNums": []
},
{
"license": "8Z53142",
"locations": ["37.821733,-122.262361", "37.739743,-122.175508", "37.795546,-122.253748", "37.785221,-122.198800", "37.776585,-122.203551", "37.799365,-122.252878", "37.799213,-122.251216", "37.799468,-122.252643", "37.803821,-122.233873", "37.799168,-122.231066", "37.799390,-122.231341", "37.813521,-122.264800", "37.798928,-122.230798", "37.798981,-122.230578", "37.799111,-122.230838", "37.798843,-122.230600", "37.744878,-122.169408", "37.754378,-122.183243", "37.796395,-122.217636", "37.841166,-122.278195", "37.822896,-122.256310", "37.828463,-122.279928", "37.827555,-122.271155", "37.828036,-122.274448", "37.829605,-122.264273", "37.808568,-122.242750", "37.812648,-122.273750", "37.806276,-122.270533", "37.806553,-122.272865", "37.784763,-122.244010", "37.787896,-122.245470", "37.785578,-122.245215"],
"count_dist": "18",
"count": "32",
"markerNums": []
},
{
"license": "8Z56539",
"locations": ["37.785301,-122.234483", "37.794990,-122.247955", "37.795021,-122.247996", "37.775973,-122.210351", "37.792525,-122.202316", "37.787386,-122.245011", "37.752865,-122.178006", "37.767601,-122.174666", "37.743631,-122.188670", "37.748545,-122.186663", "37.795496,-122.231043", "37.769618,-122.181971", "37.774046,-122.210991", "37.772586,-122.168991", "37.772648,-122.205485", "37.799226,-122.231370", "37.786765,-122.240860", "37.771528,-122.190036", "37.783786,-122.222793", "37.750453,-122.172693", "37.761088,-122.181345", "37.780406,-122.231068", "37.784856,-122.238396", "37.783693,-122.228743", "37.783771,-122.228660", "37.783771,-122.228663", "37.783776,-122.228653", "37.784648,-122.243056", "37.794236,-122.217476", "37.794238,-122.217476", "37.772846,-122.168960"],
"count_dist": "20",
"count": "32",
"markerNums": []
},
{
"license": "6EJD197",
"locations": ["37.773926,-122.224236", "37.791758,-122.197266", "37.770615,-122.191851", "37.761046,-122.184548", "37.759010,-122.187150", "37.777620,-122.208951", "37.769145,-122.171863", "37.771520,-122.190403", "37.784570,-122.200246", "37.791896,-122.242880", "37.770696,-122.183558", "37.776721,-122.209611", "37.743230,-122.193960", "37.789176,-122.246320", "37.773603,-122.228165", "37.755265,-122.161213", "37.738491,-122.180770", "37.748478,-122.180326", "37.787715,-122.194660", "37.787316,-122.209626", "37.780536,-122.206085", "37.777711,-122.208831", "37.798991,-122.210901", "37.791188,-122.194986", "37.791425,-122.194731", "37.790323,-122.196008", "37.761758,-122.166750", "37.748175,-122.180065", "37.748571,-122.180373", "37.748923,-122.185963"],
"count_dist": "21",
"count": "31",
"markerNums": []
},
{
"license": "6KFM778",
"locations": ["37.737720,-122.198251", "37.759233,-122.177940", "37.794315,-122.252171", "37.759226,-122.178010", "37.765136,-122.199473", "37.759226,-122.177971", "37.762400,-122.193768", "37.809203,-122.268301", "37.776141,-122.222950", "37.747426,-122.188545", "37.748010,-122.173403", "37.750986,-122.175390", "37.759441,-122.177555", "37.759466,-122.177575", "37.759491,-122.177530", "37.759498,-122.177441", "37.759281,-122.177868", "37.769146,-122.207886", "37.767978,-122.205380", "37.766236,-122.201706", "37.763945,-122.196840", "37.762746,-122.194355", "37.762960,-122.191521", "37.759461,-122.177508", "37.771525,-122.213015", "37.778925,-122.225170", "37.794128,-122.251995", "37.787830,-122.243353", "37.797130,-122.261683", "37.803633,-122.271681", "37.805346,-122.270418"],
"count_dist": "16",
"count": "31",
"markerNums": []
},
{
"license": "8T12722",
"locations": ["37.804008,-122.271380", "37.811176,-122.273575", "37.801495,-122.266423", "37.800430,-122.273586", "37.799373,-122.222393", "37.733136,-122.198270", "37.775831,-122.222921", "37.822180,-122.262280", "37.819356,-122.267193", "37.775543,-122.223035", "37.781940,-122.233445", "37.782005,-122.233538", "37.783355,-122.202475", "37.768566,-122.214506", "37.817995,-122.275763", "37.789273,-122.245921", "37.824386,-122.258523", "37.823293,-122.256673", "37.804110,-122.252655", "37.804345,-122.278641", "37.782008,-122.233396", "37.773693,-122.223638", "37.842543,-122.264890", "37.848885,-122.265755", "37.806946,-122.274103", "37.773415,-122.222851", "37.777893,-122.221736", "37.777901,-122.221735", "37.794510,-122.274511", "37.796193,-122.277790", "37.795441,-122.255073"],
"count_dist": "19",
"count": "31",
"markerNums": []
},
{
"license": "8T12810",
"locations": ["37.782985,-122.220453", "37.798921,-122.229378", "37.771676,-122.213346", "37.788908,-122.208793", "37.737483,-122.196961", "37.821765,-122.254848", "37.823120,-122.256271", "37.772910,-122.215845", "37.771543,-122.216410", "37.809231,-122.269635", "37.812661,-122.261151", "37.816558,-122.267860", "37.802913,-122.271938", "37.805295,-122.273748", "37.804636,-122.269508", "37.811226,-122.273618", "37.791313,-122.245456", "37.774540,-122.219225", "37.825105,-122.265458", "37.769066,-122.182203", "37.798340,-122.239096", "37.802666,-122.272348", "37.808775,-122.254510", "37.810131,-122.267408", "37.787271,-122.242513", "37.795478,-122.253473", "37.810403,-122.248578", "37.795433,-122.255081", "37.825796,-122.265263", "37.828803,-122.264575"],
"count_dist": "21",
"count": "31",
"markerNums": []
},
{
"license": "8Z52871",
"locations": ["37.812951,-122.259455", "37.812971,-122.259406", "37.812976,-122.259408", "37.799005,-122.230600", "37.796620,-122.186898", "37.799168,-122.230755", "37.799200,-122.231046", "37.799380,-122.231383", "37.790723,-122.201711", "37.787858,-122.195215", "37.814195,-122.274568", "37.808956,-122.218243", "37.808571,-122.251613", "37.808681,-122.291773", "37.808730,-122.291968", "37.808763,-122.292040", "37.806668,-122.277238", "37.810701,-122.291343", "37.825210,-122.278196", "37.815646,-122.271693", "37.823548,-122.256290", "37.825208,-122.261140", "37.778275,-122.225538", "37.754403,-122.191891", "37.739975,-122.167265", "37.813488,-122.258955", "37.782653,-122.223411", "37.781193,-122.242845", "37.781193,-122.242866", "37.778345,-122.225511", "37.780728,-122.242708"],
"count_dist": "18",
"count": "31",
"markerNums": []
},
{
"license": "8Z53120",
"locations": ["37.757858,-122.184143", "37.803308,-122.285466", "37.827628,-122.287118", "37.781561,-122.232928", "37.779828,-122.218318", "37.806401,-122.297946", "37.806420,-122.297926", "37.806458,-122.297895", "37.799056,-122.230586", "37.799175,-122.275583", "37.795738,-122.225965", "37.793130,-122.219048", "37.837121,-122.262405", "37.837133,-122.262415", "37.821906,-122.262241", "37.823223,-122.256411", "37.827330,-122.270483", "37.759985,-122.186281", "37.767715,-122.174731", "37.768020,-122.175011", "37.798981,-122.230710", "37.758250,-122.185110", "37.758250,-122.185111", "37.758251,-122.185115", "37.700595,-121.889103", "37.825683,-122.265431", "37.746995,-122.164951", "37.800313,-122.229076", "37.798906,-122.230680", "37.808825,-122.268411", "37.779301,-122.207168"],
"count_dist": "19",
"count": "31",
"markerNums": []
},
{
"license": "13378D1",
"locations": ["37.819648,-122.270050", "37.817776,-122.277500", "37.802836,-122.269603", "37.800501,-122.273695", "37.765228,-122.167168", "37.804856,-122.250768", "37.808498,-122.268495", "37.825171,-122.269671", "37.822923,-122.266151", "37.835695,-122.271753", "37.829523,-122.267301", "37.829761,-122.267930", "37.826603,-122.252053", "37.846911,-122.278235", "37.846960,-122.278070", "37.846986,-122.278078", "37.844525,-122.275303", "37.831913,-122.263738", "37.814951,-122.251845", "37.773760,-122.229798", "37.816321,-122.263805", "37.805140,-122.272796", "37.810186,-122.267481", "37.807260,-122.270120", "37.807685,-122.270110", "37.806810,-122.249736", "37.806880,-122.293110", "37.796580,-122.277573", "37.804551,-122.271953", "37.805286,-122.270608"],
"count_dist": "17",
"count": "30",
"markerNums": []
},
{
"license": "3PIT524",
"locations": ["37.792845,-122.214511", "37.737168,-122.198011", "37.778546,-122.221405", "37.777825,-122.215266", "37.807995,-122.300266", "37.792941,-122.214745", "37.796083,-122.250913", "37.808036,-122.280686", "37.817666,-122.271566", "37.832125,-122.267800", "37.832200,-122.267795", "37.833528,-122.267336", "37.833866,-122.263108", "37.832253,-122.267776", "37.833931,-122.263046", "37.769251,-122.187786", "37.773000,-122.210115", "37.783866,-122.223298", "37.800336,-122.276391", "37.772880,-122.207986", "37.832275,-122.267766", "37.789131,-122.241098", "37.825575,-122.253608", "37.785255,-122.198808", "37.777701,-122.225786", "37.794595,-122.249283", "37.813136,-122.279126", "37.824385,-122.274326", "37.799265,-122.216791", "37.792840,-122.214535"],
"count_dist": "18",
"count": "30",
"markerNums": []
},
{
"license": "5LLA485",
"locations": ["37.759298,-122.187285", "37.764040,-122.190046", "37.750726,-122.178415", "37.792053,-122.226245", "37.783961,-122.220660", "37.768616,-122.170581", "37.758370,-122.185295", "37.758941,-122.186590", "37.765956,-122.201225", "37.763220,-122.165333", "37.752500,-122.176953", "37.775723,-122.230918", "37.785095,-122.199255", "37.749303,-122.183410", "37.751100,-122.179793", "37.747288,-122.172698", "37.762883,-122.194773", "37.770265,-122.210498", "37.770271,-122.210495", "37.790301,-122.230055", "37.790716,-122.229280", "37.790763,-122.248251", "37.766985,-122.196788", "37.780318,-122.230616", "37.799516,-122.263085", "37.788051,-122.239333", "37.786926,-122.221573", "37.839485,-122.269485", "37.788448,-122.244220", "37.772398,-122.214848"],
"count_dist": "16",
"count": "30",
"markerNums": []
},
{
"license": "6HHZ854",
"locations": ["37.796918,-122.210385", "37.772868,-122.182641", "37.785980,-122.196570", "37.786018,-122.196588", "37.786031,-122.196651", "37.809665,-122.262921", "37.810896,-122.262643", "37.731238,-122.176585", "37.751695,-122.153860", "37.754035,-122.152086", "37.762876,-122.141510", "37.762878,-122.141510", "37.761218,-122.146623", "37.740505,-122.166551", "37.746831,-122.165231", "37.760555,-122.189823", "37.761666,-122.192196", "37.783636,-122.213611", "37.783593,-122.213635", "37.783650,-122.213600", "37.783375,-122.213811", "37.742806,-122.152748", "37.785995,-122.196640", "37.736141,-122.173313", "37.757761,-122.185425", "37.748483,-122.173780", "37.788078,-122.239226", "37.778511,-122.216036", "37.778881,-122.228140", "37.785786,-122.196530"],
"count_dist": "16",
"count": "30",
"markerNums": []
},
{
"license": "6NOE594",
"locations": ["37.839371,-122.262123", "37.787571,-122.221186", "37.788326,-122.217391", "37.792556,-122.214278", "37.792578,-122.214278", "37.792915,-122.213975", "37.756548,-122.177555", "37.749743,-122.174031", "37.749805,-122.173825", "37.747048,-122.164826", "37.756121,-122.180698", "37.741830,-122.157831", "37.737833,-122.159601", "37.774070,-122.167861", "37.809565,-122.286178", "37.801786,-122.244296", "37.784948,-122.222391", "37.784780,-122.220790", "37.772563,-122.195736", "37.772285,-122.169108", "37.771130,-122.190986", "37.770246,-122.192275", "37.783306,-122.226665", "37.776693,-122.214033", "37.790033,-122.230413", "37.756565,-122.190278", "37.749838,-122.159020", "37.766963,-122.185476", "37.776658,-122.209690", "37.839595,-122.269571"],
"count_dist": "18",
"count": "30",
"markerNums": []
},
{
"license": "6RRP004",
"locations": ["37.788400,-122.246533", "37.772575,-122.195900", "37.771373,-122.188828", "37.771403,-122.189175", "37.771440,-122.195018", "37.772213,-122.193803", "37.772236,-122.193900", "37.772950,-122.196426", "37.769786,-122.182863", "37.787453,-122.194858", "37.793951,-122.218701", "37.776763,-122.189828", "37.769578,-122.181725", "37.770696,-122.184410", "37.771500,-122.190366", "37.793790,-122.218785", "37.762256,-122.164460", "37.756555,-122.191225", "37.771798,-122.177153", "37.778101,-122.230008", "37.770125,-122.185441", "37.777861,-122.163418", "37.796715,-122.195865", "37.765478,-122.167186", "37.739355,-122.179626", "37.757050,-122.201141", "37.755298,-122.179026", "37.778143,-122.187805", "37.771806,-122.196366", "37.771826,-122.196363"],
"count_dist": "16",
"count": "30",
"markerNums": []
},
{
"license": "86362B1",
"locations": ["37.818950,-122.267343", "37.836563,-122.262411", "37.822220,-122.274563", "37.829640,-122.267901", "37.812825,-122.274013", "37.799398,-122.275700", "37.765885,-122.201978", "37.770055,-122.216430", "37.770483,-122.217280", "37.784428,-122.237596", "37.786508,-122.236085", "37.745435,-122.168320", "37.830431,-122.264206", "37.814398,-122.278636", "37.844058,-122.256556", "37.808875,-122.255225", "37.803981,-122.271560", "37.809060,-122.250228", "37.815993,-122.252288", "37.816026,-122.252281", "37.811461,-122.267018", "37.787293,-122.235283", "37.772936,-122.226885", "37.825266,-122.261413", "37.822275,-122.274948", "37.822173,-122.274931", "37.822193,-122.274890", "37.829680,-122.268266", "37.826753,-122.265193", "37.812736,-122.252336"],
"count_dist": "17",
"count": "30",
"markerNums": []
},
{
"license": "8Z53119",
"locations": ["37.784823,-122.237640", "37.804031,-122.280725", "37.798918,-122.230688", "37.798920,-122.230688", "37.735790,-122.181146", "37.736251,-122.163656", "37.738926,-122.166203", "37.747345,-122.195938", "37.770711,-122.206705", "37.740205,-122.194233", "37.740761,-122.193313", "37.745891,-122.171328", "37.814141,-122.265063", "37.811430,-122.273701", "37.815306,-122.264330", "37.799001,-122.230565", "37.799070,-122.230295", "37.798885,-122.230670", "37.788533,-122.246546", "37.788456,-122.231748", "37.780243,-122.206358", "37.782518,-122.187971", "37.828328,-122.277291", "37.823525,-122.272743", "37.799023,-122.230638", "37.799025,-122.230636", "37.806066,-122.275640", "37.768465,-122.219858", "37.814791,-122.268221", "37.847171,-122.260961"],
"count_dist": "21",
"count": "30",
"markerNums": []
},
{
"license": "8Z53146",
"locations": ["37.804388,-122.271366", "37.814461,-122.278063", "37.814105,-122.282706", "37.814205,-122.282583", "37.814260,-122.283263", "37.752796,-122.167533", "37.798838,-122.230668", "37.798873,-122.230726", "37.770633,-122.210953", "37.782758,-122.200641", "37.789271,-122.246233", "37.787266,-122.242320", "37.828981,-122.264511", "37.829091,-122.264486", "37.809768,-122.286740", "37.799381,-122.216505", "37.810531,-122.296505", "37.788161,-122.239365", "37.815636,-122.267913", "37.823711,-122.280986", "37.799535,-122.187806", "37.790721,-122.221061", "37.734606,-122.188758", "37.734610,-122.188761", "37.755928,-122.159333", "37.745651,-122.167738", "37.742988,-122.152496", "37.837693,-122.262678", "37.821956,-122.262273", "37.767570,-122.174783"],
"count_dist": "22",
"count": "30",
"markerNums": []
},
{
"license": "8Z87740",
"locations": ["37.799805,-122.270955", "37.772606,-122.202383", "37.762591,-122.164760", "37.758253,-122.185115", "37.774490,-122.180518", "37.774546,-122.180578", "37.752118,-122.195270", "37.750046,-122.184230", "37.781773,-122.204856", "37.800291,-122.229123", "37.766038,-122.201388", "37.775623,-122.165210", "37.765460,-122.177378", "37.753985,-122.197626", "37.746013,-122.156175", "37.760271,-122.180613", "37.756838,-122.207096", "37.758846,-122.187233", "37.822898,-122.256306", "37.757140,-122.189405", "37.775796,-122.185875", "37.780496,-122.238508", "37.779271,-122.238071", "37.778370,-122.237670", "37.769978,-122.178963", "37.785511,-122.192096", "37.774773,-122.219671", "37.773778,-122.179093", "37.773780,-122.179095", "37.772241,-122.194103"],
"count_dist": "19",
"count": "30",
"markerNums": []
},
{
"license": "4AMD942",
"locations": ["37.775785,-122.212975", "37.772811,-122.215630", "37.757391,-122.167056", "37.758015,-122.174730", "37.758308,-122.174120", "37.757851,-122.173691", "37.765381,-122.177476", "37.754340,-122.175668", "37.752413,-122.178898", "37.756710,-122.181778", "37.759915,-122.188423", "37.745043,-122.178006", "37.745255,-122.178191", "37.745310,-122.178205", "37.748585,-122.173790", "37.757601,-122.162058", "37.755300,-122.171591", "37.783343,-122.235803", "37.768911,-122.171860", "37.745831,-122.156251", "37.758068,-122.174466", "37.758275,-122.174206", "37.743931,-122.171435", "37.752970,-122.167200", "37.753620,-122.177178", "37.754016,-122.172588", "37.781415,-122.223993", "37.793046,-122.202201", "37.784903,-122.227575"],
"count_dist": "16",
"count": "29",
"markerNums": []
},
{
"license": "5PQX117",
"locations": ["37.806868,-122.249733", "37.777345,-122.182671", "37.775678,-122.204130", "37.770493,-122.188566", "37.771925,-122.189816", "37.772713,-122.201463", "37.773306,-122.178816", "37.773426,-122.209210", "37.794651,-122.218350", "37.790188,-122.220140", "37.786536,-122.241105", "37.798990,-122.225618", "37.780216,-122.174846", "37.742915,-122.175205", "37.768133,-122.179516", "37.770850,-122.185883", "37.791238,-122.222216", "37.753408,-122.166063", "37.753456,-122.165918", "37.765023,-122.190863", "37.765538,-122.191471", "37.765538,-122.191473", "37.765601,-122.191516", "37.745725,-122.156033", "37.745781,-122.155960", "37.764376,-122.166318", "37.762716,-122.187280", "37.741465,-122.176690", "37.780105,-122.206528"],
"count_dist": "17",
"count": "29",
"markerNums": []
},
{
"license": "6KXP772",
"locations": ["37.723485,-122.153710", "37.745725,-122.167566", "37.771808,-122.203051", "37.752488,-122.165005", "37.776156,-122.222948", "37.749028,-122.162085", "37.774510,-122.219408", "37.774966,-122.220275", "37.783288,-122.224550", "37.741813,-122.164426", "37.761591,-122.183751", "37.756870,-122.181096", "37.757261,-122.180351", "37.749303,-122.160413", "37.749590,-122.184993", "37.749076,-122.162201", "37.803596,-122.271521", "37.804081,-122.270323", "37.809843,-122.276546", "37.750695,-122.177616", "37.751046,-122.177891", "37.742320,-122.162360", "37.793555,-122.204805", "37.795910,-122.253995", "37.774011,-122.169621", "37.774396,-122.169495", "37.785686,-122.239636", "37.772100,-122.215061", "37.783241,-122.202780"],
"count_dist": "16",
"count": "29",
"markerNums": []
},
{
"license": "6LHR599",
"locations": ["37.786908,-122.194363", "37.776158,-122.217598", "37.785616,-122.225745", "37.750428,-122.205535", "37.763906,-122.174591", "37.746445,-122.206621", "37.777696,-122.225911", "37.777828,-122.226433", "37.787888,-122.199003", "37.820153,-122.276545", "37.781135,-122.232256", "37.814241,-122.268446", "37.815843,-122.278196", "37.823528,-122.276901", "37.823585,-122.277340", "37.823975,-122.277680", "37.824031,-122.277686", "37.825775,-122.275910", "37.789570,-122.246455", "37.786161,-122.197188", "37.773181,-122.213745", "37.771096,-122.216593", "37.769528,-122.172763", "37.798630,-122.257093", "37.796720,-122.254933", "37.744618,-122.195931", "37.782313,-122.234131", "37.782736,-122.203873", "37.826318,-122.261438"],
"count_dist": "19",
"count": "29",
"markerNums": []
},
{
"license": "6MAD645",
"locations": ["37.799548,-122.231285", "37.844461,-122.265936", "37.846741,-122.279365", "37.846820,-122.279425", "37.846848,-122.278675", "37.836761,-122.262375", "37.834273,-122.272916", "37.746908,-122.165040", "37.753760,-122.177215", "37.753946,-122.149911", "37.754280,-122.149815", "37.804240,-122.251666", "37.816553,-122.275145", "37.822846,-122.275956", "37.825955,-122.275001", "37.803650,-122.253311", "37.833406,-122.266200", "37.785865,-122.237900", "37.819695,-122.279580", "37.781408,-122.219696", "37.775501,-122.221390", "37.798840,-122.256945", "37.796721,-122.254931", "37.825753,-122.275263", "37.826430,-122.269256", "37.827228,-122.275115", "37.834253,-122.263076", "37.834403,-122.251483", "37.839540,-122.261995"],
"count_dist": "16",
"count": "29",
"markerNums": []
},
{
"license": "6PCR198",
"locations": ["37.773356,-122.183700", "37.768925,-122.171868", "37.777748,-122.225911", "37.800156,-122.216270", "37.799780,-122.216360", "37.799855,-122.216363", "37.800226,-122.216286", "37.800196,-122.216265", "37.745393,-122.155475", "37.742295,-122.151690", "37.783351,-122.202466", "37.776403,-122.183880", "37.772313,-122.214890", "37.776141,-122.222970", "37.741141,-122.149240", "37.741405,-122.196420", "37.755451,-122.161228", "37.755900,-122.161496", "37.790965,-122.219818", "37.790996,-122.198118", "37.787291,-122.195078", "37.799550,-122.216440", "37.799648,-122.214043", "37.799173,-122.216603", "37.770821,-122.191175", "37.772960,-122.184788", "37.790576,-122.197791", "37.790578,-122.197756", "37.790645,-122.197791"],
"count_dist": "16",
"count": "29",
"markerNums": []
},
{
"license": "6VCB170",
"locations": ["37.780211,-122.225950", "37.778868,-122.228316", "37.785226,-122.215053", "37.772361,-122.194478", "37.774141,-122.230660", "37.787463,-122.194973", "37.765240,-122.167166", "37.748873,-122.178660", "37.748703,-122.179003", "37.784593,-122.228216", "37.760781,-122.190555", "37.752538,-122.194780", "37.818183,-122.277311", "37.754833,-122.162953", "37.751160,-122.171011", "37.757466,-122.175920", "37.757716,-122.186796", "37.757730,-122.186726", "37.757991,-122.186355", "37.768935,-122.171716", "37.763216,-122.195626", "37.770655,-122.183858", "37.772973,-122.203020", "37.825850,-122.265245", "37.825120,-122.258273", "37.790168,-122.197496", "37.758070,-122.186426", "37.813391,-122.272638", "37.799496,-122.276440"],
"count_dist": "21",
"count": "29",
"markerNums": []
},
{
"license": "6WAX067",
"locations": ["37.791760,-122.249243", "37.765238,-122.167178", "37.784310,-122.237546", "37.761170,-122.191326", "37.762235,-122.193608", "37.762285,-122.193703", "37.787725,-122.195223", "37.798050,-122.206288", "37.741626,-122.156358", "37.746498,-122.171963", "37.776911,-122.224493", "37.755860,-122.179821", "37.768153,-122.206008", "37.747646,-122.163376", "37.748328,-122.162295", "37.764355,-122.197975", "37.762566,-122.165065", "37.790306,-122.238741", "37.769781,-122.182843", "37.769568,-122.181501", "37.779928,-122.178253", "37.784770,-122.238281", "37.805296,-122.270473", "37.814198,-122.274570", "37.814975,-122.278531", "37.764671,-122.198511", "37.787466,-122.242753", "37.792350,-122.249975", "37.825053,-122.278630"],
"count_dist": "20",
"count": "29",
"markerNums": []
},
{
"license": "7N59141",
"locations": ["37.799260,-122.256300", "37.825461,-122.265493", "37.826093,-122.265175", "37.818120,-122.275628", "37.773418,-122.228521", "37.772581,-122.197051", "37.815858,-122.278246", "37.778848,-122.187166", "37.775605,-122.182496", "37.761890,-122.195385", "37.803091,-122.271976", "37.801931,-122.272545", "37.758153,-122.186071", "37.758448,-122.185765", "37.801450,-122.266081", "37.804693,-122.250735", "37.774643,-122.232185", "37.784085,-122.201120", "37.794905,-122.216638", "37.775991,-122.222361", "37.783355,-122.202471", "37.747695,-122.163363", "37.809095,-122.256946", "37.793918,-122.218766", "37.832743,-122.250930", "37.783283,-122.221445", "37.848203,-122.260748", "37.760111,-122.170396", "37.752853,-122.167185"],
"count_dist": "20",
"count": "29",
"markerNums": []
},
{
"license": "86363B1",
"locations": ["37.806185,-122.270445", "37.810196,-122.267463", "37.807875,-122.270046", "37.816300,-122.267781", "37.803505,-122.270893", "37.822055,-122.266301", "37.823926,-122.265791", "37.795963,-122.277910", "37.794591,-122.270438", "37.794658,-122.270583", "37.794875,-122.276961", "37.772381,-122.225576", "37.792406,-122.199485", "37.825770,-122.265351", "37.797461,-122.275653", "37.826956,-122.251753", "37.833551,-122.252970", "37.805705,-122.291493", "37.805718,-122.291601", "37.798186,-122.244841", "37.828425,-122.260370", "37.817306,-122.262955", "37.805810,-122.292081", "37.822376,-122.266143", "37.826530,-122.265130", "37.805990,-122.293035", "37.836773,-122.262526", "37.835301,-122.276671", "37.815983,-122.267955"],
"count_dist": "16",
"count": "29",
"markerNums": []
},
{
"license": "8U85416",
"locations": ["37.789618,-122.245961", "37.813190,-122.279081", "37.808556,-122.248760", "37.806621,-122.269715", "37.771968,-122.219761", "37.800443,-122.274103", "37.803295,-122.270815", "37.803411,-122.271493", "37.797641,-122.244365", "37.797643,-122.244363", "37.810613,-122.262361", "37.846558,-122.251911", "37.813718,-122.268541", "37.826381,-122.265045", "37.807693,-122.292831", "37.810845,-122.262698", "37.808798,-122.250555", "37.799595,-122.272225", "37.797693,-122.249373", "37.799798,-122.274146", "37.801260,-122.273030", "37.808371,-122.269940", "37.804328,-122.290303", "37.803481,-122.271518", "37.813396,-122.272556", "37.800346,-122.273653", "37.797351,-122.275643", "37.764061,-122.209388", "37.818986,-122.264576"],
"count_dist": "16",
"count": "29",
"markerNums": []
},
{
"license": "8Z53132",
"locations": ["37.799541,-122.216445", "37.798803,-122.230741", "37.798981,-122.230765", "37.785913,-122.240146", "37.786243,-122.197113", "37.802580,-122.253861", "37.778085,-122.208396", "37.770325,-122.217533", "37.785366,-122.191306", "37.848490,-122.285468", "37.819626,-122.261536", "37.818636,-122.262165", "37.818358,-122.262328", "37.759421,-122.187381", "37.781433,-122.234746", "37.782736,-122.203876", "37.799098,-122.230561", "37.799228,-122.231233", "37.798953,-122.230521", "37.811195,-122.247796", "37.794410,-122.252413", "37.827280,-122.260045", "37.827795,-122.259978", "37.775515,-122.213165", "37.774488,-122.211538", "37.806611,-122.269885", "37.806618,-122.269878", "37.822501,-122.257958", "37.798771,-122.230643"],
"count_dist": "18",
"count": "29",
"markerNums": []
},
{
"license": "8Z53145",
"locations": ["37.840333,-122.248661", "37.827380,-122.269883", "37.818303,-122.210668", "37.775383,-122.212670", "37.781363,-122.224001", "37.822913,-122.277233", "37.780425,-122.220351", "37.831116,-122.279973", "37.824353,-122.275465", "37.824520,-122.275488", "37.779886,-122.238240", "37.797608,-122.230243", "37.737986,-122.169201", "37.760133,-122.188758", "37.746570,-122.183466", "37.780753,-122.224268", "37.799518,-122.275816", "37.803605,-122.271910", "37.785143,-122.189853", "37.799245,-122.231210", "37.797480,-122.230743", "37.798936,-122.230765", "37.798828,-122.230715", "37.799326,-122.231380", "37.776138,-122.186410", "37.795655,-122.227246", "37.822781,-122.277198", "37.821605,-122.262226", "37.811341,-122.268766"],
"count_dist": "18",
"count": "29",
"markerNums": []
},
{
"license": "02685B1",
"locations": ["37.768715,-122.171288", "37.783361,-122.221415", "37.798778,-122.256843", "37.771703,-122.213480", "37.774378,-122.219303", "37.777125,-122.214505", "37.769590,-122.182040", "37.789985,-122.259603", "37.801738,-122.264466", "37.798200,-122.254948", "37.782736,-122.203876", "37.779463,-122.224948", "37.784081,-122.223711", "37.765268,-122.165333", "37.764443,-122.164480", "37.764573,-122.164648", "37.764666,-122.164693", "37.764830,-122.198920", "37.764878,-122.164770", "37.764890,-122.164908", "37.762943,-122.164661", "37.750550,-122.196458", "37.773230,-122.216765", "37.793091,-122.250835", "37.788698,-122.244773", "37.807841,-122.240951", "37.775286,-122.227156", "37.798893,-122.256926"],
"count_dist": "17",
"count": "28",
"markerNums": []
},
{
"license": "5XWE787",
"locations": ["37.744521,-122.195340", "37.742213,-122.154370", "37.743665,-122.195373", "37.743685,-122.169960", "37.758838,-122.186436", "37.753808,-122.194286", "37.756335,-122.178123", "37.741791,-122.160916", "37.758251,-122.185106", "37.762233,-122.192581", "37.758146,-122.185040", "37.780206,-122.230503", "37.759270,-122.187403", "37.762431,-122.194045", "37.746080,-122.171683", "37.762800,-122.194678", "37.755701,-122.179503", "37.768908,-122.180166", "37.790963,-122.248353", "37.812765,-122.273520", "37.813011,-122.274108", "37.747651,-122.163403", "37.747988,-122.162695", "37.823260,-122.277243", "37.825680,-122.275903", "37.772890,-122.215866", "37.825198,-122.277456", "37.806961,-122.270313"],
"count_dist": "16",
"count": "28",
"markerNums": []
},
{
"license": "6SFR209",
"locations": ["37.822830,-122.275966", "37.765345,-122.167268", "37.780158,-122.226028", "37.780173,-122.225915", "37.780178,-122.225943", "37.780231,-122.226086", "37.779970,-122.225240", "37.772491,-122.195240", "37.780131,-122.225918", "37.780168,-122.226003", "37.771288,-122.212633", "37.770458,-122.182216", "37.725646,-122.176391", "37.765220,-122.167146", "37.765225,-122.167146", "37.745923,-122.156026", "37.759358,-122.187200", "37.756483,-122.182021", "37.756583,-122.177795", "37.761996,-122.164356", "37.741745,-122.175956", "37.805568,-122.273806", "37.772758,-122.215596", "37.781145,-122.242795", "37.755005,-122.178543", "37.776715,-122.209611", "37.781946,-122.233371", "37.748433,-122.182241"],
"count_dist": "17",
"count": "28",
"markerNums": []
},
{
"license": "8X33033",
"locations": ["37.797596,-122.249453", "37.797088,-122.246490", "37.797423,-122.246003", "37.787148,-122.237816", "37.744213,-122.191451", "37.748881,-122.184331", "37.749255,-122.183546", "37.753985,-122.177490", "37.753265,-122.177356", "37.789770,-122.259181", "37.788070,-122.242755", "37.787880,-122.244650", "37.794590,-122.207658", "37.772611,-122.199553", "37.788386,-122.242541", "37.780168,-122.230428", "37.798293,-122.208853", "37.799553,-122.228941", "37.846556,-122.251910", "37.783698,-122.222686", "37.790226,-122.244071", "37.788290,-122.239831", "37.784500,-122.229553", "37.780441,-122.231155", "37.776873,-122.183208", "37.780110,-122.201566", "37.810050,-122.248645", "37.822026,-122.264218"],
"count_dist": "16",
"count": "28",
"markerNums": []
},
{
"license": "5UTD473",
"locations": ["37.785708,-122.168088", "37.785711,-122.168008", "37.786813,-122.167713", "37.800465,-122.174380", "37.787045,-122.167671", "37.828561,-122.260446", "37.789043,-122.245136", "37.814873,-122.272273", "37.808676,-122.255171", "37.749701,-122.158663", "37.734213,-122.197711", "37.735453,-122.195500", "37.774585,-122.219386", "37.749766,-122.159055", "37.756795,-122.181876", "37.758485,-122.178886", "37.743003,-122.170561", "37.752976,-122.166941", "37.781046,-122.231258", "37.797478,-122.257423", "37.816513,-122.275201", "37.770178,-122.217710", "37.785361,-122.214951", "37.785365,-122.214951", "37.839611,-122.269440", "37.795448,-122.253553", "37.795316,-122.253361"],
"count_dist": "19",
"count": "27",
"markerNums": []
},
{
"license": "6CIP642",
"locations": ["37.782976,-122.221926", "37.753903,-122.208081", "37.765403,-122.209193", "37.769315,-122.200863", "37.774750,-122.211816", "37.745623,-122.167810", "37.742613,-122.174188", "37.791055,-122.198145", "37.791193,-122.198290", "37.790510,-122.220153", "37.753971,-122.177456", "37.774618,-122.192851", "37.799353,-122.252846", "37.800070,-122.275760", "37.809728,-122.246626", "37.808793,-122.248420", "37.800058,-122.253121", "37.799973,-122.253146", "37.775646,-122.191618", "37.775651,-122.191605", "37.803118,-122.274973", "37.804441,-122.268425", "37.769681,-122.182390", "37.768680,-122.199223", "37.777778,-122.221821", "37.805986,-122.267980", "37.797991,-122.254403"],
"count_dist": "17",
"count": "27",
"markerNums": []
},
{
"license": "6TYE214",
"locations": ["37.791838,-122.198831", "37.788016,-122.221110", "37.771460,-122.189836", "37.785326,-122.239108", "37.749896,-122.173766", "37.753468,-122.166036", "37.801576,-122.270661", "37.773563,-122.179190", "37.745145,-122.155036", "37.747326,-122.172823", "37.747483,-122.163835", "37.746091,-122.171913", "37.755863,-122.179821", "37.742995,-122.173470", "37.741728,-122.176238", "37.766818,-122.181495", "37.790060,-122.197191", "37.748790,-122.173625", "37.736893,-122.163110", "37.733233,-122.178390", "37.737095,-122.163075", "37.737098,-122.163068", "37.747085,-122.176705", "37.790123,-122.247581", "37.747876,-122.173283", "37.750125,-122.173318", "37.760238,-122.189040"],
"count_dist": "16",
"count": "27",
"markerNums": []
},
{
"license": "6TYJ128",
"locations": ["37.800375,-122.276563", "37.785163,-122.199040", "37.784621,-122.200110", "37.760315,-122.163095", "37.750020,-122.162295", "37.751926,-122.167370", "37.752993,-122.177861", "37.763456,-122.181506", "37.763486,-122.181568", "37.744625,-122.170851", "37.801741,-122.244533", "37.799328,-122.248756", "37.777693,-122.225956", "37.792235,-122.219326", "37.793555,-122.226683", "37.793610,-122.226660", "37.793613,-122.226613", "37.793626,-122.226703", "37.793628,-122.226625", "37.793658,-122.226683", "37.793745,-122.226656", "37.794243,-122.226520", "37.785263,-122.239220", "37.799921,-122.252460", "37.821231,-122.257178", "37.773793,-122.179475", "37.768980,-122.172251"],
"count_dist": "18",
"count": "27",
"markerNums": []
},
{
"license": "8G71440",
"locations": ["37.816656,-122.263603", "37.798008,-122.217138", "37.816861,-122.263491", "37.818865,-122.262236", "37.825945,-122.257810", "37.738566,-122.156833", "37.846113,-122.256290", "37.758928,-122.187145", "37.742213,-122.154363", "37.744518,-122.154191", "37.756233,-122.190271", "37.840443,-122.265025", "37.840381,-122.265338", "37.769885,-122.192595", "37.788473,-122.239966", "37.785266,-122.238988", "37.785911,-122.240105", "37.822576,-122.266325", "37.766678,-122.168318", "37.815206,-122.272105", "37.770208,-122.179876", "37.782471,-122.223468", "37.804445,-122.285893", "37.784393,-122.200608", "37.823228,-122.281203", "37.788716,-122.209223", "37.787698,-122.232065"],
"count_dist": "19",
"count": "27",
"markerNums": []
},
{
"license": "8U40622",
"locations": ["37.783963,-122.243180", "37.767861,-122.205613", "37.790285,-122.197418", "37.792681,-122.219248", "37.786973,-122.221278", "37.787556,-122.221208", "37.790776,-122.219855", "37.791995,-122.219401", "37.798231,-122.273415", "37.823351,-122.256375", "37.775261,-122.226555", "37.787403,-122.211286", "37.848616,-122.243986", "37.775443,-122.223301", "37.784873,-122.189035", "37.778100,-122.225515", "37.781361,-122.219773", "37.781365,-122.219771", "37.801176,-122.270270", "37.788178,-122.244025", "37.804943,-122.288368", "37.805075,-122.288908", "37.805091,-122.288931", "37.811483,-122.266023", "37.794005,-122.251788", "37.790450,-122.192966", "37.789560,-122.258358"],
"count_dist": "18",
"count": "27",
"markerNums": []
},
{
"license": "8W77365",
"locations": ["37.768620,-122.172636", "37.861008,-122.243091", "37.846835,-122.278651", "37.846853,-122.278390", "37.846871,-122.278633", "37.846883,-122.278305", "37.846885,-122.278286", "37.846958,-122.278035", "37.811418,-122.266748", "37.803528,-122.271473", "37.826663,-122.252153", "37.839783,-122.270176", "37.840528,-122.264570", "37.823470,-122.287185", "37.811420,-122.260298", "37.814196,-122.274575", "37.808091,-122.270006", "37.766863,-122.171913", "37.771230,-122.176493", "37.760340,-122.170505", "37.737516,-122.196881", "37.736561,-122.192540", "37.826256,-122.257588", "37.833253,-122.263443", "37.790535,-122.220038", "37.789981,-122.220221", "37.772500,-122.228951"],
"count_dist": "17",
"count": "27",
"markerNums": []
},
{
"license": "8Z52875",
"locations": ["37.769573,-122.182110", "37.781905,-122.233443", "37.821150,-122.276771", "37.819308,-122.266400", "37.803745,-122.284810", "37.845330,-122.285401", "37.808066,-122.293246", "37.817425,-122.267505", "37.770623,-122.217071", "37.770646,-122.211160", "37.782720,-122.220051", "37.783243,-122.221421", "37.824115,-122.257855", "37.829675,-122.253333", "37.748750,-122.162246", "37.748658,-122.162178", "37.761528,-122.181923", "37.752418,-122.168223", "37.824050,-122.257253", "37.840571,-122.264526", "37.790648,-122.192710", "37.790650,-122.192708", "37.798911,-122.230758", "37.798920,-122.230771", "37.810143,-122.251531", "37.808628,-122.251725"],
"count_dist": "19",
"count": "27",
"markerNums": []
},
{
"license": "8Z53134",
"locations": ["37.824826,-122.259443", "37.821981,-122.262271", "37.822001,-122.262260", "37.820543,-122.261158", "37.820545,-122.261158", "37.798908,-122.230681", "37.791511,-122.250638", "37.799205,-122.231160", "37.812305,-122.266345", "37.786716,-122.241378", "37.786983,-122.194385", "37.770850,-122.185726", "37.798855,-122.230700", "37.799531,-122.275715", "37.813626,-122.242828", "37.804441,-122.271766", "37.819490,-122.275963", "37.810160,-122.297696", "37.755305,-122.161888", "37.830671,-122.273498", "37.767105,-122.169211", "37.770026,-122.178548", "37.795298,-122.236785", "37.750691,-122.178351", "37.750698,-122.178375", "37.766850,-122.198951", "37.766898,-122.198980"],
"count_dist": "19",
"count": "27",
"markerNums": []
},
{
"license": "8Z87742",
"locations": ["37.799906,-122.214030", "37.808833,-122.268201", "37.836783,-122.281776", "37.811923,-122.273795", "37.807236,-122.269308", "37.808893,-122.255273", "37.811383,-122.265610", "37.805063,-122.270803", "37.806618,-122.269736", "37.828518,-122.249655", "37.838446,-122.264261", "37.838453,-122.264263", "37.825923,-122.265396", "37.794915,-122.252883", "37.812968,-122.268688", "37.795131,-122.276110", "37.803823,-122.271793", "37.799765,-122.234933", "37.781121,-122.224031", "37.789543,-122.244161", "37.783646,-122.236273", "37.809075,-122.256673", "37.818356,-122.267335", "37.839030,-122.262056", "37.834346,-122.263151", "37.814271,-122.268371", "37.826056,-122.251190"],
"count_dist": "16",
"count": "27",
"markerNums": []
},
{
"license": "AAAAA",
"locations": ["37.802773,-122.272320", "37.837506,-122.268940", "37.814823,-122.275331", "37.784421,-122.237573", "37.745823,-122.156260", "37.820641,-122.276473", "37.810788,-122.266633", "37.804326,-122.260905", "37.795183,-122.237010", "37.837458,-122.279721", "37.787613,-122.239653", "37.787618,-122.239668", "37.787645,-122.239663", "37.756553,-122.201246", "37.824891,-122.272616", "37.829995,-122.252996", "37.829615,-122.279456", "37.794426,-122.252410", "37.756103,-122.191978", "37.741820,-122.175896", "37.744905,-122.167990", "37.751550,-122.184811", "37.781731,-122.223720", "37.783805,-122.222723", "37.773285,-122.211521", "37.798935,-122.190230", "37.841276,-122.261833"],
"count_dist": "24",
"count": "27",
"markerNums": []
},
{
"license": "CA51163",
"locations": ["37.827601,-122.222283", "37.795900,-122.203576", "37.815636,-122.257088", "37.800281,-122.216190", "37.751376,-122.159731", "37.791433,-122.267395", "37.825973,-122.283035", "37.819156,-122.244710", "37.747363,-122.208561", "37.821370,-122.279558", "37.799795,-122.277320", "37.787508,-122.203361", "37.787688,-122.204278", "37.799940,-122.251068", "37.766418,-122.209008", "37.778898,-122.216760", "37.783468,-122.217868", "37.778168,-122.225481", "37.747106,-122.208791", "37.741741,-122.168521", "37.791190,-122.191751", "37.837061,-122.261515", "37.837038,-122.261488", "37.837036,-122.261488", "37.837028,-122.261520", "37.770686,-122.184405", "37.770693,-122.184410"],
"count_dist": "20",
"count": "27",
"markerNums": []
},
{
"license": "12852D1",
"locations": ["37.778070,-122.208476", "37.809146,-122.250183", "37.831501,-122.263968", "37.775261,-122.226548", "37.752681,-122.194553", "37.774743,-122.227271", "37.763853,-122.201453", "37.755258,-122.198578", "37.747570,-122.196058", "37.758810,-122.198413", "37.751866,-122.202373", "37.768048,-122.205851", "37.787791,-122.243246", "37.802608,-122.268893", "37.800078,-122.273823", "37.800303,-122.215858", "37.800316,-122.222456", "37.830163,-122.271340", "37.825801,-122.265268", "37.825885,-122.265233", "37.807703,-122.270040", "37.806243,-122.276091", "37.809085,-122.269808", "37.816323,-122.263805", "37.776903,-122.224173", "37.778726,-122.216433"],
"count_dist": "17",
"count": "26",
"markerNums": []
},
{
"license": "14681F1",
"locations": ["37.814240,-122.274565", "37.763946,-122.216993", "37.772885,-122.235565", "37.782423,-122.233421", "37.765520,-122.177265", "37.809765,-122.294073", "37.816353,-122.290030", "37.799510,-122.274163", "37.813440,-122.246825", "37.803158,-122.263115", "37.803605,-122.271585", "37.809535,-122.273071", "37.801315,-122.273036", "37.794268,-122.257150", "37.761115,-122.211185", "37.797016,-122.275698", "37.797343,-122.275653", "37.798818,-122.277055", "37.806800,-122.287755", "37.810833,-122.280015", "37.819055,-122.273815", "37.807305,-122.269361", "37.810661,-122.261411", "37.804496,-122.263680", "37.804113,-122.263868", "37.800103,-122.284906"],
"count_dist": "16",
"count": "26",
"markerNums": []
},
{
"license": "6MVX240",
"locations": ["37.797240,-122.252126", "37.799516,-122.223040", "37.810200,-122.243575", "37.809746,-122.245283", "37.784580,-122.228410", "37.825166,-122.277588", "37.828101,-122.275730", "37.782198,-122.223478", "37.809168,-122.244913", "37.810353,-122.248875", "37.811325,-122.277123", "37.789730,-122.258978", "37.779261,-122.216943", "37.775375,-122.212566", "37.734428,-122.195478", "37.750445,-122.181790", "37.801641,-122.264141", "37.759860,-122.196853", "37.832831,-122.280528", "37.786393,-122.213225", "37.790813,-122.219976", "37.785891,-122.214028", "37.753895,-122.177731", "37.786220,-122.219073", "37.784940,-122.233573", "37.771681,-122.199740"],
"count_dist": "17",
"count": "26",
"markerNums": []
},
{
"license": "6PFS441",
"locations": ["37.853391,-122.225988", "37.853393,-122.225991", "37.773536,-122.227990", "37.793108,-122.158086", "37.798045,-122.183393", "37.814496,-122.282060", "37.793741,-122.253351", "37.752648,-122.167820", "37.765028,-122.165820", "37.751121,-122.175561", "37.740476,-122.192358", "37.761253,-122.205956", "37.756593,-122.177491", "37.771295,-122.216341", "37.757006,-122.190615", "37.769548,-122.177481", "37.768468,-122.178443", "37.833985,-122.263295", "37.824521,-122.258748", "37.824503,-122.258811", "37.764073,-122.217336", "37.821898,-122.301111", "37.818636,-122.262155", "37.741513,-122.195370", "37.730361,-122.174878", "37.794331,-122.217991"],
"count_dist": "22",
"count": "26",
"markerNums": []
},
{
"license": "7Z66443",
"locations": ["37.801251,-122.232885", "37.754561,-122.150448", "37.767348,-122.213115", "37.782961,-122.218341", "37.791846,-122.203943", "37.786670,-122.221613", "37.784416,-122.226055", "37.790180,-122.206700", "37.824691,-122.209308", "37.825366,-122.209621", "37.774246,-122.210753", "37.776030,-122.226688", "37.781731,-122.235206", "37.765395,-122.199181", "37.800660,-122.268996", "37.787643,-122.242903", "37.775235,-122.227018", "37.770506,-122.207908", "37.778103,-122.208368", "37.775446,-122.223303", "37.777008,-122.224311", "37.785616,-122.239696", "37.828553,-122.271086", "37.844291,-122.255368", "37.828406,-122.270003", "37.829108,-122.264516"],
"count_dist": "18",
"count": "26",
"markerNums": []
},
{
"license": "8H11615",
"locations": ["37.772183,-122.224268", "37.780711,-122.220115", "37.784341,-122.241408", "37.827493,-122.289363", "37.827506,-122.289351", "37.837581,-122.262376", "37.832381,-122.266823", "37.840093,-122.286531", "37.839973,-122.261473", "37.786968,-122.241658", "37.796013,-122.217850", "37.789656,-122.246811", "37.789240,-122.245996", "37.825820,-122.274830", "37.839298,-122.273623", "37.839893,-122.270056", "37.851848,-122.286506", "37.778026,-122.226646", "37.771388,-122.218436", "37.772735,-122.215885", "37.770671,-122.217341", "37.837963,-122.264098", "37.834778,-122.252203", "37.834873,-122.252151", "37.767866,-122.205596", "37.799523,-122.256066"],
"count_dist": "16",
"count": "26",
"markerNums": []
},
{
"license": "8T12709",
"locations": ["37.779170,-122.216963", "37.765451,-122.177535", "37.808140,-122.269923", "37.816006,-122.253111", "37.791315,-122.248698", "37.800048,-122.228946", "37.788581,-122.217175", "37.810896,-122.285623", "37.809535,-122.302603", "37.809861,-122.302391", "37.837365,-122.281915", "37.784233,-122.200901", "37.747666,-122.196250", "37.743411,-122.157928", "37.741308,-122.156640", "37.778508,-122.227593", "37.789716,-122.258865", "37.788313,-122.244171", "37.796400,-122.217630", "37.772828,-122.207831", "37.774420,-122.211398", "37.782526,-122.219600", "37.775446,-122.223305", "37.777641,-122.221946", "37.777710,-122.202320", "37.769713,-122.171101"],
"count_dist": "19",
"count": "26",
"markerNums": []
},
{
"license": "8Z53135",
"locations": ["37.750193,-122.162225", "37.820296,-122.261183", "37.802631,-122.266696", "37.826613,-122.252111", "37.798801,-122.230663", "37.799170,-122.211216", "37.799171,-122.211216", "37.799086,-122.219935", "37.758158,-122.185035", "37.799581,-122.255870", "37.798956,-122.230590", "37.846935,-122.278160", "37.845375,-122.265226", "37.822890,-122.256290", "37.781191,-122.173573", "37.785863,-122.237900", "37.793016,-122.205508", "37.793016,-122.205513", "37.796085,-122.265451", "37.803863,-122.288195", "37.805196,-122.287681", "37.821943,-122.262288", "37.798835,-122.230668", "37.798910,-122.230723", "37.798955,-122.230665", "37.842358,-122.278768"],
"count_dist": "17",
"count": "26",
"markerNums": []
},
{
"license": "8Z53136",
"locations": ["37.822703,-122.284610", "37.793605,-122.251430", "37.804615,-122.271851", "37.791368,-122.167741", "37.785676,-122.167951", "37.826610,-122.252786", "37.798948,-122.229681", "37.798970,-122.230691", "37.796715,-122.195865", "37.772401,-122.194930", "37.769096,-122.208083", "37.783685,-122.236385", "37.798871,-122.230740", "37.798791,-122.230625", "37.810103,-122.248915", "37.802893,-122.253688", "37.803263,-122.230356", "37.798960,-122.230551", "37.799005,-122.230680", "37.749288,-122.176558", "37.822025,-122.262265", "37.817946,-122.266208", "37.817975,-122.266238", "37.798855,-122.230700", "37.799110,-122.230608", "37.800071,-122.221110"],
"count_dist": "16",
"count": "26",
"markerNums": []
},
{
"license": "26222A1",
"locations": ["37.792803,-122.257908", "37.787195,-122.247205", "37.813730,-122.267416", "37.845158,-122.261185", "37.841386,-122.283143", "37.826556,-122.252111", "37.826158,-122.265340", "37.829665,-122.268068", "37.837593,-122.262195", "37.817321,-122.262363", "37.745833,-122.167366", "37.778636,-122.227886", "37.804051,-122.270245", "37.811201,-122.247788", "37.808820,-122.269725", "37.808893,-122.256085", "37.807475,-122.270000", "37.820025,-122.261276", "37.822320,-122.275193", "37.822381,-122.276225", "37.820118,-122.266850", "37.817510,-122.262936", "37.817765,-122.274146", "37.817113,-122.267603", "37.818281,-122.280830"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "5897D",
"locations": ["37.782170,-122.236320", "37.777313,-122.230941", "37.791493,-122.245656", "37.804408,-122.285905", "37.804475,-122.271738", "37.805131,-122.272748", "37.794235,-122.245493", "37.792078,-122.247880", "37.791578,-122.245678", "37.790575,-122.244215", "37.770486,-122.182171", "37.835791,-122.262573", "37.799150,-122.275916", "37.825088,-122.282861", "37.817271,-122.271601", "37.826933,-122.254908", "37.828496,-122.264576", "37.794251,-122.252125", "37.805245,-122.273740", "37.803975,-122.270185", "37.804805,-122.272173", "37.807201,-122.249706", "37.818525,-122.271265", "37.768398,-122.206700", "37.770826,-122.185045"],
"count_dist": "17",
"count": "25",
"markerNums": []
},
{
"license": "5EHN983",
"locations": ["37.781991,-122.233373", "37.766015,-122.176906", "37.744626,-122.170811", "37.758290,-122.185228", "37.755311,-122.178701", "37.762486,-122.163081", "37.801950,-122.231948", "37.777446,-122.182458", "37.771346,-122.176796", "37.785586,-122.219543", "37.773083,-122.175191", "37.774716,-122.166453", "37.766830,-122.176621", "37.779903,-122.230026", "37.754913,-122.178198", "37.759603,-122.186641", "37.796173,-122.216345", "37.785965,-122.193348", "37.763628,-122.165603", "37.787733,-122.194476", "37.750200,-122.174691", "37.756710,-122.161768", "37.770073,-122.185230", "37.750990,-122.175388", "37.760775,-122.190636"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "63051D1",
"locations": ["37.770488,-122.210855", "37.786736,-122.232463", "37.826590,-122.252823", "37.821208,-122.254505", "37.710181,-122.120378", "37.781818,-122.222500", "37.798903,-122.230646", "37.756473,-122.148515", "37.794558,-122.239075", "37.752896,-122.158063", "37.752905,-122.158085", "37.748208,-122.184753", "37.754545,-122.178775", "37.752945,-122.181485", "37.810196,-122.267463", "37.812530,-122.280516", "37.758491,-122.185466", "37.764215,-122.185700", "37.791575,-122.226295", "37.804233,-122.271295", "37.798938,-122.230548", "37.798785,-122.230840", "37.799148,-122.230983", "37.798925,-122.230705", "37.799238,-122.278020"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "6GEU616",
"locations": ["37.773518,-122.213380", "37.787490,-122.195653", "37.787228,-122.195356", "37.780241,-122.214996", "37.799726,-122.274901", "37.786568,-122.212910", "37.803046,-122.264638", "37.787443,-122.242690", "37.789320,-122.200305", "37.795700,-122.208228", "37.796300,-122.203556", "37.787188,-122.194638", "37.808916,-122.247566", "37.744613,-122.154313", "37.732000,-122.188233", "37.783718,-122.208326", "37.773751,-122.213116", "37.770958,-122.184318", "37.771780,-122.190086", "37.784548,-122.244255", "37.785315,-122.238926", "37.775273,-122.211141", "37.799030,-122.250760", "37.804080,-122.252295", "37.804100,-122.252288"],
"count_dist": "17",
"count": "25",
"markerNums": []
},
{
"license": "6HHZ849",
"locations": ["37.754431,-122.162931", "37.738488,-122.180721", "37.754398,-122.162936", "37.739395,-122.179511", "37.837171,-122.249360", "37.754353,-122.162958", "37.828701,-122.249315", "37.828833,-122.249213", "37.768245,-122.153106", "37.743076,-122.173278", "37.797658,-122.163608", "37.795648,-122.253931", "37.791280,-122.233133", "37.813278,-122.233910", "37.828723,-122.249385", "37.814896,-122.245993", "37.772555,-122.196256", "37.735201,-122.185870", "37.774465,-122.211528", "37.772865,-122.182630", "37.770438,-122.170308", "37.828285,-122.249990", "37.828701,-122.249441", "37.833091,-122.250040", "37.836651,-122.251101"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "6LJG878",
"locations": ["37.776995,-122.223705", "37.808990,-122.268220", "37.812666,-122.261478", "37.812201,-122.260940", "37.792093,-122.249620", "37.791598,-122.232785", "37.793678,-122.230080", "37.799341,-122.275738", "37.804056,-122.252878", "37.826306,-122.265156", "37.775650,-122.210775", "37.784911,-122.238473", "37.777010,-122.224711", "37.771603,-122.190748", "37.784708,-122.238246", "37.787185,-122.242400", "37.782973,-122.235173", "37.808658,-122.251998", "37.809131,-122.249440", "37.806025,-122.250120", "37.790428,-122.247780", "37.758568,-122.185958", "37.759326,-122.186893", "37.766443,-122.168173", "37.747493,-122.157196"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "6VEH215",
"locations": ["37.783755,-122.222878", "37.782966,-122.235075", "37.770171,-122.192336", "37.783013,-122.218353", "37.775830,-122.182816", "37.787490,-122.231878", "37.790525,-122.205946", "37.790771,-122.198020", "37.791356,-122.236338", "37.791031,-122.248511", "37.793448,-122.251253", "37.765243,-122.167160", "37.787000,-122.212036", "37.770425,-122.182071", "37.765558,-122.200663", "37.793313,-122.200308", "37.760090,-122.163041", "37.760901,-122.160990", "37.767321,-122.169446", "37.781485,-122.232621", "37.772930,-122.215988", "37.760210,-122.170500", "37.764573,-122.198173", "37.765036,-122.199145", "37.765108,-122.199311"],
"count_dist": "17",
"count": "25",
"markerNums": []
},
{
"license": "6VMM097",
"locations": ["37.782153,-122.219088", "37.769848,-122.177356", "37.771106,-122.193443", "37.771261,-122.190788", "37.785826,-122.221846", "37.764560,-122.198498", "37.768390,-122.174456", "37.749328,-122.174125", "37.784418,-122.237620", "37.778691,-122.225350", "37.752616,-122.160931", "37.751040,-122.162506", "37.751111,-122.169825", "37.778431,-122.225375", "37.817188,-122.252816", "37.817458,-122.263403", "37.765201,-122.195383", "37.775960,-122.164496", "37.776316,-122.164343", "37.773593,-122.169378", "37.785535,-122.222068", "37.770395,-122.170341", "37.769528,-122.181438", "37.795390,-122.252425", "37.786936,-122.241900"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "8H16692",
"locations": ["37.850970,-122.252528", "37.844661,-122.248280", "37.848516,-122.272868", "37.790228,-122.247540", "37.812201,-122.247470", "37.808866,-122.250461", "37.834733,-122.262948", "37.826535,-122.252095", "37.828745,-122.264648", "37.816850,-122.289250", "37.829613,-122.268030", "37.815551,-122.264211", "37.811781,-122.259513", "37.814548,-122.275218", "37.786530,-122.236675", "37.798036,-122.217438", "37.784451,-122.237638", "37.845356,-122.261086", "37.819400,-122.271043", "37.823425,-122.256303", "37.826823,-122.252998", "37.832760,-122.263446", "37.836540,-122.268090", "37.837240,-122.268420", "37.809131,-122.256810"],
"count_dist": "18",
"count": "25",
"markerNums": []
},
{
"license": "8Z53149",
"locations": ["37.784266,-122.235241", "37.805691,-122.293265", "37.798940,-122.230741", "37.821710,-122.262241", "37.821268,-122.276630", "37.793836,-122.200540", "37.824806,-122.272356", "37.824806,-122.272350", "37.824808,-122.272355", "37.824810,-122.272360", "37.824815,-122.272363", "37.831238,-122.279956", "37.826648,-122.252128", "37.808610,-122.269721", "37.798891,-122.230630", "37.825565,-122.269431", "37.819246,-122.290276", "37.799465,-122.214113", "37.698306,-122.088765", "37.798920,-122.230686", "37.814200,-122.265630", "37.760656,-122.145091", "37.760655,-122.145115", "37.846023,-122.251565", "37.846016,-122.251563"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "I275254",
"locations": ["37.848365,-122.228641", "37.799091,-122.275603", "37.830551,-122.258180", "37.820976,-122.199341", "37.821571,-122.264785", "37.817930,-122.273848", "37.812456,-122.268735", "37.834515,-122.212263", "37.834461,-122.212183", "37.798636,-122.275678", "37.799066,-122.275676", "37.799281,-122.275238", "37.831341,-122.246561", "37.831410,-122.246378", "37.799013,-122.275505", "37.820078,-122.199548", "37.808201,-122.256216", "37.850525,-122.258323", "37.825591,-122.202425", "37.830556,-122.186783", "37.834565,-122.212350", "37.834576,-122.212286", "37.841776,-122.208521", "37.835626,-122.248323", "37.748258,-122.203775"],
"count_dist": "16",
"count": "25",
"markerNums": []
},
{
"license": "6RSM200",
"locations": ["37.787148,-122.242316", "37.789300,-122.245823", "37.790050,-122.247273", "37.792478,-122.258505", "37.774786,-122.219670", "37.785891,-122.240156", "37.796485,-122.258450", "37.819458,-122.201055", "37.770243,-122.192135", "37.750735,-122.175220", "37.757675,-122.184056", "37.789336,-122.241535", "37.759186,-122.186911", "37.758350,-122.185438", "37.741360,-122.195265", "37.741398,-122.168266", "37.745928,-122.171323", "37.747856,-122.170150", "37.747896,-122.170158", "37.747898,-122.170198", "37.764898,-122.199168", "37.748081,-122.170856", "37.778111,-122.221723", "37.771386,-122.212766"],
"count_dist": "16",
"count": "24",
"markerNums": []
},
{
"license": "6SED069",
"locations": ["37.768960,-122.171936", "37.770100,-122.185395", "37.753368,-122.185123", "37.753500,-122.177425", "37.747560,-122.172936", "37.789123,-122.196468", "37.758793,-122.173061", "37.749861,-122.174553", "37.749051,-122.173858", "37.748505,-122.186711", "37.765271,-122.177643", "37.753396,-122.166256", "37.753766,-122.165468", "37.753825,-122.165373", "37.755123,-122.178475", "37.785695,-122.221988", "37.820866,-122.276336", "37.820943,-122.276388", "37.838773,-122.262155", "37.788278,-122.243990", "37.772378,-122.214826", "37.781146,-122.232066", "37.803738,-122.269596", "37.774405,-122.167101"],
"count_dist": "16",
"count": "24",
"markerNums": []
},
{
"license": "6SFS536",
"locations": ["37.765221,-122.167148", "37.763171,-122.195435", "37.756133,-122.167471", "37.757620,-122.201848", "37.765456,-122.200481", "37.755756,-122.203375", "37.764586,-122.201520", "37.762778,-122.194855", "37.756261,-122.180928", "37.765518,-122.200450", "37.759680,-122.189108", "37.752036,-122.179981", "37.744281,-122.168906", "37.749935,-122.158761", "37.772851,-122.215755", "37.772871,-122.215815", "37.769633,-122.209155", "37.769870,-122.177520", "37.769738,-122.192893", "37.792348,-122.249973", "37.765860,-122.201226", "37.786981,-122.241921", "37.787021,-122.242005", "37.815588,-122.278295"],
"count_dist": "16",
"count": "24",
"markerNums": []
},
{
"license": "86555B1",
"locations": ["37.811151,-122.255151", "37.787380,-122.242608", "37.823413,-122.269958", "37.817540,-122.262983", "37.795615,-122.279508", "37.796501,-122.277688", "37.782020,-122.233533", "37.782631,-122.234645", "37.788858,-122.244855", "37.789983,-122.259010", "37.827690,-122.256783", "37.839706,-122.281975", "37.789493,-122.255916", "37.795198,-122.266171", "37.820773,-122.258611", "37.820870,-122.258631", "37.821173,-122.257696", "37.811093,-122.273648", "37.773716,-122.180020", "37.785233,-122.239048", "37.815608,-122.284408", "37.795703,-122.253920", "37.767673,-122.174406", "37.746530,-122.208241"],
"count_dist": "16",
"count": "24",
"markerNums": []
},
{
"license": "8J52938",
"locations": ["37.778221,-122.208146", "37.779396,-122.207061", "37.773335,-122.212675", "37.765220,-122.199568", "37.760040,-122.178403", "37.774896,-122.211423", "37.739131,-122.166628", "37.780281,-122.218191", "37.754448,-122.179013", "37.773098,-122.213025", "37.784050,-122.223526", "37.794658,-122.255360", "37.749233,-122.173993", "37.756823,-122.167911", "37.781810,-122.233246", "37.773275,-122.212781", "37.765446,-122.187001", "37.822898,-122.256303", "37.803008,-122.288428", "37.771075,-122.211883", "37.784598,-122.230720", "37.774066,-122.230596", "37.773090,-122.212813", "37.769558,-122.181230"],
"count_dist": "16",
"count": "24",
"markerNums": []
},
{
"license": "8U85415",
"locations": ["37.803226,-122.271838", "37.799058,-122.275281", "37.829270,-122.264486", "37.804395,-122.293931", "37.798946,-122.267196", "37.815253,-122.258308", "37.815766,-122.268090", "37.792945,-122.257836", "37.754656,-122.206053", "37.797821,-122.205855", "37.803553,-122.271681", "37.840813,-122.282945", "37.809983,-122.276680", "37.816016,-122.277070", "37.806176,-122.270435", "37.805681,-122.274561", "37.804495,-122.262126", "37.814486,-122.274450", "37.793920,-122.268735", "37.811631,-122.259810", "37.803405,-122.294240", "37.803253,-122.271885", "37.801481,-122.283285", "37.795081,-122.273841"],
"count_dist": "16",
"count": "24",
"markerNums": []
},
{
"license": "8X54532",
"locations": ["37.771996,-122.169230", "37.747820,-122.196298", "37.744403,-122.170391", "37.743625,-122.191441", "37.749028,-122.162513", "37.756593,-122.177501", "37.752026,-122.179971", "37.758251,-122.185103", "37.735191,-122.183790", "37.734456,-122.197915", "37.767590,-122.169833", "37.765056,-122.199618", "37.765993,-122.177036", "37.754351,-122.206828", "37.756046,-122.202606", "37.772160,-122.169161", "37.772200,-122.177463", "37.785058,-122.189835", "37.770018,-122.170820", "37.769368,-122.171503", "37.839021,-122.262133", "37.798333,-122.253341", "37.798405,-122.253573", "37.797471,-122.257055"],
"count_dist": "18",
"count": "24",
"markerNums": []
},
{
"license": "26628A1",
"locations": ["37.752301,-122.195151", "37.761645,-122.193950", "37.740778,-122.177616", "37.760221,-122.170075", "37.768100,-122.183861", "37.765215,-122.185541", "37.809343,-122.191436", "37.789051,-122.196455", "37.743750,-122.171865", "37.752225,-122.195355", "37.756155,-122.202398", "37.739376,-122.179820", "37.727880,-122.198700", "37.742840,-122.173905", "37.769030,-122.178118", "37.759245,-122.155521", "37.818156,-122.253090", "37.783413,-122.236041", "37.768970,-122.171858", "37.765656,-122.177183", "37.757585,-122.188118", "37.774483,-122.169261", "37.741511,-122.156820"],
"count_dist": "16",
"count": "23",
"markerNums": []
},
{
"license": "4PPD059",
"locations": ["37.833201,-122.267533", "37.760158,-122.196311", "37.763530,-122.180441", "37.805345,-122.250408", "37.759138,-122.178525", "37.771063,-122.186926", "37.781413,-122.223991", "37.775616,-122.182345", "37.793085,-122.219070", "37.793783,-122.213313", "37.788228,-122.195550", "37.790028,-122.220246", "37.791180,-122.248748", "37.791193,-122.248743", "37.789606,-122.233106", "37.779808,-122.206858", "37.789580,-122.245853", "37.786750,-122.241645", "37.787620,-122.194473", "37.767353,-122.180630", "37.759316,-122.187420", "37.759278,-122.187320", "37.767290,-122.178150"],
"count_dist": "17",
"count": "23",
"markerNums": []
},
{
"license": "5YOZ723",
"locations": ["37.798031,-122.183191", "37.798005,-122.183166", "37.798050,-122.183158", "37.736566,-122.183555", "37.755188,-122.178600", "37.745680,-122.167816", "37.762658,-122.164991", "37.760780,-122.190353", "37.772481,-122.155113", "37.772488,-122.155578", "37.798023,-122.183213", "37.801000,-122.228901", "37.765238,-122.176283", "37.800685,-122.217258", "37.777728,-122.166668", "37.745923,-122.158223", "37.745901,-122.158195", "37.745653,-122.157916", "37.797915,-122.183081", "37.795495,-122.236143", "37.789278,-122.246140", "37.774465,-122.211528", "37.744246,-122.170793"],
"count_dist": "16",
"count": "23",
"markerNums": []
},
{
"license": "6ESU030",
"locations": ["37.751331,-122.170768", "37.758391,-122.169138", "37.758478,-122.169291", "37.757521,-122.175683", "37.753001,-122.181550", "37.762068,-122.168083", "37.746028,-122.178920", "37.735518,-122.174448", "37.842238,-122.264725", "37.802276,-122.281225", "37.769541,-122.172776", "37.772415,-122.214798", "37.759930,-122.170633", "37.780328,-122.230616", "37.783791,-122.236610", "37.797736,-122.263196", "37.791420,-122.198443", "37.795928,-122.266033", "37.794203,-122.217743", "37.771421,-122.169590", "37.767300,-122.178150", "37.773191,-122.178661", "37.786791,-122.241518"],
"count_dist": "17",
"count": "23",
"markerNums": []
},
{
"license": "6HHW671",
"locations": ["37.800611,-122.217285", "37.800778,-122.217871", "37.786406,-122.240886", "37.821438,-122.257485", "37.767396,-122.196371", "37.765311,-122.210795", "37.800373,-122.238148", "37.791851,-122.249400", "37.753556,-122.177445", "37.740631,-122.167620", "37.799171,-122.251150", "37.825260,-122.277980", "37.787780,-122.243316", "37.778115,-122.230355", "37.761408,-122.191756", "37.772165,-122.214305", "37.782105,-122.233883", "37.773680,-122.179351", "37.784658,-122.238093", "37.785616,-122.239696", "37.785638,-122.239701", "37.777636,-122.226111", "37.759568,-122.173605"],
"count_dist": "16",
"count": "23",
"markerNums": []
},
{
"license": "6JFG643",
"locations": ["37.837356,-122.262188", "37.795433,-122.254310", "37.792286,-122.224111", "37.788655,-122.252940", "37.736461,-122.183301", "37.738776,-122.192103", "37.735938,-122.181388", "37.799595,-122.216475", "37.740386,-122.196298", "37.748085,-122.190341", "37.751435,-122.196043", "37.749626,-122.159208", "37.759083,-122.186748", "37.791515,-122.245748", "37.770578,-122.182811", "37.774853,-122.220261", "37.784623,-122.238085", "37.796576,-122.252815", "37.801425,-122.279240", "37.814211,-122.274563", "37.787640,-122.242906", "37.789553,-122.246565", "37.792353,-122.249971"],
"count_dist": "18",
"count": "23",
"markerNums": []
},
{
"license": "6KGH042",
"locations": ["37.816558,-122.275216", "37.808450,-122.275951", "37.799800,-122.275095", "37.791528,-122.236183", "37.797171,-122.255375", "37.793471,-122.218958", "37.796191,-122.225821", "37.796201,-122.225818", "37.790098,-122.197223", "37.737893,-122.159548", "37.805213,-122.289411", "37.824630,-122.259311", "37.801966,-122.265315", "37.789725,-122.245730", "37.812408,-122.293098", "37.793495,-122.249571", "37.792133,-122.243081", "37.805055,-122.272688", "37.798705,-122.209526", "37.798705,-122.209538", "37.798720,-122.209618", "37.799685,-122.213410", "37.798085,-122.252371"],
"count_dist": "16",
"count": "23",
"markerNums": []
},
{
"license": "6VCB387",
"locations": ["37.791413,-122.222408", "37.790856,-122.248250", "37.790296,-122.230051", "37.789358,-122.220551", "37.754991,-122.178405", "37.776300,-122.226418", "37.790873,-122.248320", "37.751781,-122.171756", "37.758255,-122.185101", "37.768545,-122.174191", "37.791540,-122.245780", "37.796831,-122.217493", "37.775923,-122.213215", "37.793411,-122.256273", "37.790723,-122.220663", "37.791556,-122.236235", "37.770551,-122.217155", "37.752386,-122.168063", "37.793168,-122.208928", "37.794886,-122.212413", "37.784196,-122.222648", "37.786301,-122.221636", "37.779075,-122.187091"],
"count_dist": "16",
"count": "23",
"markerNums": []
},
{
"license": "15301C1",
"locations": ["37.838641,-122.270996", "37.825601,-122.265393", "37.849683,-122.264653", "37.845336,-122.251883", "37.820063,-122.276520", "37.846025,-122.270763", "37.846018,-122.270801", "37.795250,-122.218238", "37.803076,-122.285066", "37.748598,-122.173771", "37.804861,-122.272705", "37.789730,-122.258873", "37.790660,-122.205788", "37.803950,-122.270373", "37.814363,-122.278785", "37.846343,-122.276923", "37.837103,-122.268965", "37.799728,-122.277330", "37.845448,-122.271076", "37.826528,-122.251751", "37.821295,-122.266595", "37.808755,-122.254420"],
"count_dist": "18",
"count": "22",
"markerNums": []
},
{
"license": "26294A1",
"locations": ["37.777438,-122.225855", "37.815851,-122.275015", "37.806641,-122.263035", "37.804045,-122.294700", "37.787836,-122.238826", "37.783696,-122.228755", "37.798261,-122.254073", "37.798265,-122.254070", "37.798290,-122.254020", "37.798215,-122.225411", "37.799145,-122.256610", "37.771216,-122.188098", "37.836368,-122.256513", "37.809956,-122.273056", "37.769365,-122.171655", "37.769498,-122.171501", "37.775806,-122.164796", "37.752021,-122.179966", "37.766623,-122.171701", "37.740080,-122.167473", "37.741550,-122.176435", "37.754575,-122.198350"],
"count_dist": "17",
"count": "22",
"markerNums": []
},
{
"license": "4AWK243",
"locations": ["37.801280,-122.278986", "37.795610,-122.255398", "37.733295,-122.178353", "37.791565,-122.228216", "37.828608,-122.272040", "37.814526,-122.273695", "37.820630,-122.266845", "37.841616,-122.258493", "37.831933,-122.263613", "37.797048,-122.194908", "37.786925,-122.232360", "37.794761,-122.212575", "37.837631,-122.273698", "37.790836,-122.248385", "37.789565,-122.246648", "37.809553,-122.269616", "37.789465,-122.248505", "37.790758,-122.260810", "37.792526,-122.252886", "37.784048,-122.235281", "37.779561,-122.219605", "37.776443,-122.222578"],
"count_dist": "16",
"count": "22",
"markerNums": []
},
{
"license": "4ZHL118",
"locations": ["37.814255,-122.292085", "37.799315,-122.214908", "37.811563,-122.285338", "37.811780,-122.283120", "37.739271,-122.179603", "37.798761,-122.250608", "37.767108,-122.176131", "37.777096,-122.224753", "37.789075,-122.255161", "37.757025,-122.191978", "37.799243,-122.251290", "37.803156,-122.237515", "37.798381,-122.260875", "37.826665,-122.269148", "37.837845,-122.270660", "37.805278,-122.294868", "37.805298,-122.294888", "37.805310,-122.294893", "37.799906,-122.278388", "37.792848,-122.248863", "37.806955,-122.268040", "37.815968,-122.268050"],
"count_dist": "17",
"count": "22",
"markerNums": []
},
{
"license": "6GGU547",
"locations": ["37.787353,-122.242598", "37.793495,-122.218951", "37.812623,-122.273466", "37.810103,-122.259663", "37.783685,-122.222793", "37.782828,-122.243040", "37.775353,-122.237820", "37.781600,-122.223840", "37.770815,-122.211520", "37.772870,-122.235625", "37.744906,-122.196118", "37.775081,-122.226333", "37.841011,-122.262108", "37.756425,-122.181256", "37.777138,-122.224705", "37.760901,-122.179103", "37.761215,-122.206018", "37.759896,-122.188648", "37.760010,-122.188823", "37.756653,-122.201166", "37.743366,-122.169633", "37.760593,-122.190175"],
"count_dist": "16",
"count": "22",
"markerNums": []
},
{
"license": "8C66198",
"locations": ["37.752520,-122.174361", "37.818316,-122.276696", "37.787908,-122.244668", "37.789346,-122.256866", "37.798593,-122.208791", "37.797873,-122.225280", "37.785186,-122.234093", "37.781105,-122.221661", "37.781505,-122.241263", "37.783200,-122.220893", "37.764040,-122.209893", "37.757645,-122.183651", "37.741651,-122.156688", "37.770331,-122.181665", "37.818266,-122.262393", "37.805473,-122.239301", "37.786971,-122.243916", "37.792150,-122.227693", "37.789476,-122.257691", "37.763675,-122.196781", "37.809963,-122.251531", "37.810141,-122.251550"],
"count_dist": "17",
"count": "22",
"markerNums": []
},
{
"license": "8U40835",
"locations": ["37.796985,-122.277400", "37.769661,-122.213133", "37.817185,-122.263053", "37.817238,-122.263013", "37.818851,-122.262051", "37.839720,-122.270420", "37.841683,-122.281485", "37.781460,-122.218901", "37.779291,-122.187113", "37.785203,-122.189841", "37.785205,-122.189846", "37.810188,-122.273266", "37.792565,-122.199641", "37.788315,-122.244090", "37.826640,-122.252131", "37.825540,-122.253623", "37.781996,-122.233420", "37.847073,-122.260938", "37.784775,-122.238203", "37.800921,-122.252066", "37.777445,-122.225445", "37.838465,-122.262205"],
"count_dist": "17",
"count": "22",
"markerNums": []
},
{
"license": "6GSJ046",
"locations": ["37.779783,-122.217516", "37.797561,-122.267926", "37.807460,-122.286906", "37.793853,-122.255118", "37.794045,-122.255350", "37.805355,-122.273965", "37.805816,-122.274693", "37.806228,-122.276233", "37.786248,-122.221881", "37.828726,-122.268666", "37.772875,-122.208240", "37.783650,-122.217636", "37.777755,-122.225930", "37.815963,-122.273696", "37.827115,-122.269081", "37.837206,-122.261533", "37.796303,-122.217811", "37.784966,-122.189068", "37.787246,-122.194670", "37.781801,-122.218910", "37.757601,-122.183866"],
"count_dist": "16",
"count": "21",
"markerNums": []
},
{
"license": "6JMF547",
"locations": ["37.740083,-122.178625", "37.763961,-122.197025", "37.755296,-122.161880", "37.793263,-122.209230", "37.789778,-122.190268", "37.749171,-122.179850", "37.789668,-122.190395", "37.793371,-122.209431", "37.764420,-122.149605", "37.740501,-122.166546", "37.737395,-122.182156", "37.738923,-122.174670", "37.734905,-122.174585", "37.734906,-122.174583", "37.738340,-122.187063", "37.732995,-122.186715", "37.791353,-122.228548", "37.772596,-122.197871", "37.784641,-122.229496", "37.804838,-122.280110", "37.757458,-122.180005"],
"count_dist": "16",
"count": "21",
"markerNums": []
},
{
"license": "6KJT362",
"locations": ["37.807196,-122.299018", "37.791435,-122.249061", "37.813325,-122.272560", "37.784801,-122.238403", "37.846678,-122.244815", "37.825206,-122.278991", "37.815860,-122.290433", "37.751545,-122.175666", "37.819536,-122.276111", "37.777638,-122.226108", "37.788188,-122.244020", "37.788203,-122.243866", "37.833680,-122.258856", "37.826480,-122.209380", "37.822911,-122.277251", "37.759993,-122.188821", "37.834853,-122.256536", "37.796891,-122.255250", "37.794415,-122.255650", "37.819693,-122.276186", "37.827676,-122.268978"],
"count_dist": "17",
"count": "21",
"markerNums": []
},
{
"license": "6LHR556",
"locations": ["37.790066,-122.247263", "37.800233,-122.215805", "37.776960,-122.224293", "37.771458,-122.189811", "37.785951,-122.240281", "37.746518,-122.165948", "37.745438,-122.196130", "37.818676,-122.275970", "37.817143,-122.252116", "37.817426,-122.277490", "37.817426,-122.277488", "37.767385,-122.196373", "37.763185,-122.195618", "37.770111,-122.210093", "37.833245,-122.281120", "37.822100,-122.273018", "37.822628,-122.275910", "37.822646,-122.275936", "37.822896,-122.275886", "37.742241,-122.154521", "37.807753,-122.281183"],
"count_dist": "16",
"count": "21",
"markerNums": []
},
{
"license": "6PBE478",
"locations": ["37.807570,-122.249458", "37.768003,-122.183960", "37.767106,-122.185461", "37.735695,-122.175571", "37.746965,-122.156956", "37.781300,-122.234336", "37.775731,-122.230910", "37.800336,-122.215986", "37.732683,-122.186888", "37.772591,-122.197393", "37.742645,-122.152965", "37.797361,-122.204973", "37.793281,-122.229115", "37.795403,-122.226173", "37.793286,-122.229163", "37.791306,-122.228605", "37.788090,-122.232010", "37.786445,-122.232641", "37.771093,-122.217905", "37.783813,-122.222778", "37.783245,-122.202776"],
"count_dist": "16",
"count": "21",
"markerNums": []
},
{
"license": "8J03796",
"locations": ["37.766140,-122.208593", "37.775210,-122.226608", "37.787641,-122.242903", "37.784318,-122.225845", "37.801848,-122.263908", "37.799223,-122.231366", "37.829491,-122.267166", "37.767830,-122.205546", "37.773483,-122.217066", "37.783288,-122.224550", "37.783343,-122.202450", "37.753398,-122.160486", "37.776325,-122.222613", "37.790790,-122.246490", "37.789176,-122.231108", "37.803723,-122.269286", "37.805095,-122.269965", "37.796740,-122.276056", "37.785365,-122.198828", "37.812886,-122.250821", "37.814768,-122.251240"],
"count_dist": "17",
"count": "21",
"markerNums": []
},
{
"license": "8P70067",
"locations": ["37.803350,-122.271723", "37.815283,-122.279528", "37.790203,-122.197495", "37.772406,-122.214936", "37.850738,-122.260393", "37.839303,-122.273658", "37.839678,-122.269603", "37.828008,-122.287211", "37.842195,-122.274521", "37.814870,-122.270218", "37.808436,-122.276061", "37.805556,-122.250341", "37.805220,-122.270648", "37.802015,-122.272721", "37.840326,-122.263180", "37.839236,-122.252096", "37.827090,-122.274913", "37.781010,-122.231925", "37.849711,-122.265858", "37.801825,-122.280268", "37.792351,-122.249966"],
"count_dist": "17",
"count": "21",
"markerNums": []
},
{
"license": "8Z28055",
"locations": ["37.794640,-122.238506", "37.787641,-122.242901", "37.781408,-122.218921", "37.788613,-122.251343", "37.800523,-122.273511", "37.788716,-122.251710", "37.801313,-122.246148", "37.769476,-122.171458", "37.785158,-122.233953", "37.784711,-122.234600", "37.837206,-122.261538", "37.833071,-122.270195", "37.815853,-122.270965", "37.815855,-122.278248", "37.793965,-122.250791", "37.793480,-122.251276", "37.796501,-122.277340", "37.811793,-122.268775", "37.800721,-122.228806", "37.786463,-122.240781", "37.789481,-122.256680"],
"count_dist": "16",
"count": "21",
"markerNums": []
},
{
"license": "8Z53107",
"locations": ["37.822826,-122.256248", "37.826043,-122.252856", "37.798941,-122.230758", "37.798918,-122.230781", "37.821788,-122.276138", "37.786285,-122.240616", "37.773631,-122.213196", "37.753265,-122.177126", "37.836703,-122.272181", "37.798840,-122.230616", "37.774966,-122.220168", "37.797586,-122.247630", "37.785675,-122.192235", "37.785811,-122.206500", "37.786031,-122.206228", "37.786656,-122.196251", "37.787545,-122.194916", "37.805030,-122.293788", "37.788616,-122.228540", "37.778088,-122.242378", "37.727383,-122.181516"],
"count_dist": "17",
"count": "21",
"markerNums": []
},
{
"license": "6DGP228",
"locations": ["37.782683,-122.237008", "37.782816,-122.158605", "37.777870,-122.153416", "37.774098,-122.168283", "37.780618,-122.156720", "37.825695,-122.280926", "37.824421,-122.270776", "37.831128,-122.279545", "37.775873,-122.138998", "37.812296,-122.284966", "37.794170,-122.252003", "37.797195,-122.225638", "37.744808,-122.150143", "37.745015,-122.150483", "37.800773,-122.217610", "37.785193,-122.189921", "37.799621,-122.224353", "37.767370,-122.196385", "37.742035,-122.175566", "37.753553,-122.150321"],
"count_dist": "16",
"count": "20",
"markerNums": []
},
{
"license": "6DRP278",
"locations": ["37.847570,-122.287946", "37.766591,-122.213486", "37.773958,-122.229491", "37.827928,-122.250325", "37.809330,-122.211293", "37.818780,-122.203495", "37.812775,-122.247091", "37.818548,-122.262261", "37.738938,-122.200386", "37.739083,-122.179805", "37.823303,-122.256450", "37.808373,-122.276043", "37.758673,-122.187573", "37.847043,-122.247391", "37.807668,-122.205511", "37.809648,-122.211691", "37.741493,-122.176631", "37.759118,-122.147688", "37.824103,-122.208746", "37.815880,-122.291670"],
"count_dist": "16",
"count": "20",
"markerNums": []
},
{
"license": "6JMF265",
"locations": ["37.772446,-122.214830", "37.780781,-122.231663", "37.805681,-122.274646", "37.798960,-122.235628", "37.793530,-122.251338", "37.795058,-122.253106", "37.810866,-122.279056", "37.811471,-122.265448", "37.833046,-122.270198", "37.795856,-122.225903", "37.749581,-122.158576", "37.798475,-122.215985", "37.788640,-122.195696", "37.745643,-122.182628", "37.790966,-122.248370", "37.770268,-122.181173", "37.828750,-122.249255", "37.783371,-122.210375", "37.797158,-122.257558", "37.732668,-122.187136"],
"count_dist": "18",
"count": "20",
"markerNums": []
},
{
"license": "6UDU342",
"locations": ["37.790978,-122.248386", "37.797991,-122.206403", "37.792348,-122.249973", "37.788335,-122.244041", "37.787981,-122.210265", "37.788700,-122.244718", "37.783935,-122.222761", "37.779721,-122.229923", "37.817446,-122.277525", "37.808260,-122.241081", "37.781595,-122.232900", "37.780435,-122.230796", "37.827310,-122.270353", "37.785001,-122.199211", "37.816941,-122.267686", "37.784903,-122.238306", "37.755766,-122.177318", "37.805095,-122.269996", "37.763655,-122.196388", "37.761201,-122.191210"],
"count_dist": "16",
"count": "20",
"markerNums": []
},
{
"license": "8S34285",
"locations": ["37.776065,-122.183250", "37.826973,-122.265023", "37.807220,-122.278500", "37.808806,-122.269723", "37.809863,-122.271151", "37.796891,-122.182748", "37.848748,-122.243705", "37.829216,-122.250365", "37.827255,-122.252926", "37.839011,-122.262018", "37.803825,-122.271663", "37.802468,-122.262060", "37.787658,-122.242920", "37.793781,-122.251620", "37.807861,-122.268946", "37.808061,-122.270016", "37.844505,-122.251390", "37.848801,-122.285490", "37.836261,-122.265921", "37.774488,-122.211536"],
"count_dist": "16",
"count": "20",
"markerNums": []
},
{
"license": "7N31652",
"locations": ["37.780058,-122.206470", "37.760261,-122.163091", "37.762651,-122.173303", "37.769428,-122.171530", "37.768673,-122.208230", "37.768946,-122.207951", "37.768616,-122.208225", "37.806078,-122.276053", "37.798081,-122.206575", "37.795381,-122.254420", "37.764848,-122.216225", "37.748581,-122.173793", "37.739310,-122.168341", "37.790608,-122.248033", "37.763206,-122.202310", "37.743988,-122.154481", "37.762901,-122.181331", "37.786330,-122.240956", "37.768981,-122.207895"],
"count_dist": "16",
"count": "19",
"markerNums": []
},
{
"license": "8Z53114",
"locations": ["37.738036,-122.178203", "37.788368,-122.250865", "37.826590,-122.252125", "37.775998,-122.219021", "37.822018,-122.262281", "37.798928,-122.230711", "37.766878,-122.176893", "37.822018,-122.262291", "37.784458,-122.226690", "37.826830,-122.267646", "37.818371,-122.267440", "37.832433,-122.263483", "37.838275,-122.246703", "37.810150,-122.255633", "37.821926,-122.262290", "37.834460,-122.252448", "37.826133,-122.277491", "37.748081,-122.173340", "37.771546,-122.173820"],
"count_dist": "16",
"count": "19",
"markerNums": []
},
{
"license": "12792D1",
"locations": ["37.829561,-122.267375", "37.831126,-122.279546", "37.771081,-122.218031", "37.777336,-122.209055", "37.803295,-122.270776", "37.796635,-122.182443", "37.774471,-122.225263", "37.810931,-122.279970", "37.796101,-122.196951", "37.824206,-122.267156", "37.772853,-122.207951", "37.776995,-122.222415", "37.806126,-122.270091", "37.803555,-122.271690", "37.801195,-122.274001", "37.793375,-122.251151", "37.839491,-122.262068", "37.775080,-122.226335"],
"count_dist": "16",
"count": "18",
"markerNums": []
},
{
"license": "5HLM077",
"locations": ["37.740886,-122.148768", "37.773081,-122.156808", "37.784891,-122.238341", "37.790150,-122.206568", "37.791091,-122.221830", "37.789701,-122.196656", "37.788655,-122.231743", "37.801688,-122.229130", "37.752090,-122.162120", "37.755486,-122.166895", "37.749675,-122.168578", "37.767830,-122.205548", "37.744403,-122.170511", "37.771460,-122.190111", "37.756628,-122.177583", "37.775615,-122.185208", "37.770060,-122.185238", "37.766361,-122.176538"],
"count_dist": "17",
"count": "18",
"markerNums": []
}]
@ix4
Copy link

ix4 commented May 16, 2019

Nice. I'd be interested to see what I can glean from NYC's Open Parking and Camera Violations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment