Point clustering with the constraint that points should only be clustered within borders.
- Use supercluster to cluster the points within each boundary.
- Use a force simulation to avoid collisions between points along the borders.
Point clustering with the constraint that points should only be clustered within borders.
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
path { | |
fill: #f4f4f4; | |
stroke: #666; | |
stroke-width: 1px; | |
} | |
circle { | |
stroke: none; | |
} | |
text { | |
fill: #444; | |
font-size: 12px; | |
font-family: sans-serif; | |
text-anchor: middle; | |
} | |
</style> | |
<body> | |
<script src="//d3js.org/d3.v5.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/supercluster.min.js"></script> | |
<script> | |
const width = 480, | |
height = 500; | |
const color = d3 | |
.scaleOrdinal() | |
.range(["#ef9a9a", "#9fa8da", "#ffe082", "#80cbc4"]); | |
const projection = d3.geoMercator(); | |
const path = d3.geoPath().projection(projection); | |
const svg = d3 | |
.select("body") | |
.append("svg") | |
.attr("width", width * 2) | |
.attr("height", height); | |
Promise.all([ | |
d3.json("four-corners.geo.json"), | |
d3.json("random-points.geo.json") | |
]).then(([states, points]) => { | |
projection.fitExtent([[10, 10], [width - 10, height - 10]], states); | |
const left = svg.append("g"); | |
const right = svg.append("g").attr("transform", "translate(" + width + ")"); | |
// Draw background | |
[left, right].forEach(g => | |
g | |
.selectAll("path") | |
.data(states.features) | |
.enter() | |
.append("path") | |
.attr("d", path) | |
); | |
// Original points on left | |
left | |
.selectAll("circle") | |
.data(points.features) | |
.enter() | |
.append("circle") | |
.attr("r", 2) | |
.attr( | |
"transform", | |
d => "translate(" + projection(d.geometry.coordinates) + ")" | |
) | |
.attr("fill", d => color(d.properties.state)); | |
// Get a flat list of clusters within each state | |
// Each one is GeoJSON plus x, y, and r properties | |
const clusters = getClusters(points.features); | |
// Draw the clusters | |
const clustered = right | |
.selectAll("g") | |
.data(clusters) | |
.enter() | |
.append("g") | |
.attr("transform", d => "translate(" + d.x + " " + d.y + ")"); | |
clustered | |
.append("circle") | |
.attr("r", d => d.r) | |
.attr("fill", d => color(d.properties.state)); | |
// Label the clusters | |
clustered | |
.append("text") | |
.text(d => d.properties.point_count || 1) | |
.attr("dy", "0.35em"); | |
// Clusters on the border might overlap, nudge them apart with a collision force | |
d3.forceSimulation(clusters) | |
.force( | |
"collide", | |
d3 | |
.forceCollide() | |
.strength(0.8) | |
.radius(d => d.r) | |
) | |
.on("tick", () => | |
clustered.attr("transform", d => "translate(" + d.x + " " + d.y + ")") | |
); | |
}); | |
function getClusters(points) { | |
const allClusters = []; | |
// Group points by state | |
const byState = d3 | |
.nest() | |
.key(d => d.properties.state) | |
.entries(points); | |
// Cluster each group individually | |
byState.forEach(entry => { | |
const index = supercluster({ | |
radius: 50, | |
maxZoom: 5 | |
}); | |
index.load(entry.values); | |
index.getClusters([-180, -90, 180, 90], 5).forEach(cluster => { | |
// Add x, y, r, and state properties to each cluster | |
const [x, y] = projection(cluster.geometry.coordinates); | |
cluster.properties.state = entry.key; | |
cluster.x = x; | |
cluster.y = y; | |
cluster.r = cluster.properties.point_count ? 14 : 10; | |
allClusters.push(cluster); | |
}); | |
}); | |
return allClusters; | |
} | |
</script> |
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1494914576, | |
33.8086789634 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8272471842, | |
34.1261137164 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8951363214, | |
32.220290112 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2040341899, | |
34.2539503978 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2906932456, | |
36.8664040237 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4029513129, | |
32.75063149 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6599077757, | |
34.8071109952 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4880744931, | |
33.6578846982 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3658360425, | |
36.0706251919 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4944321157, | |
32.2830354017 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0883787136, | |
33.7666541848 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6980680681, | |
35.2558976248 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.858418046, | |
33.8751905953 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7430604719, | |
32.6387471053 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7538387356, | |
34.7312219907 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1627838494, | |
35.5573046367 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8834089737, | |
36.0082793714 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.635744072, | |
36.5529036268 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1566470103, | |
33.5088394526 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9953490633, | |
36.6462367117 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9731627588, | |
36.9716294765 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5585246704, | |
36.7509162384 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2599418562, | |
32.0867787513 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2616062042, | |
32.0639429059 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8400531075, | |
34.332006931 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5839795332, | |
34.4924694958 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.07400221, | |
36.7792865998 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4540791795, | |
35.7459621445 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5475720971, | |
36.3350545431 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1723576043, | |
33.7569992168 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5637505714, | |
34.8014015884 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0162641006, | |
34.664792448 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9283667105, | |
36.4826466878 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6827039756, | |
32.6640434622 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3523186405, | |
36.8110389533 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1224395397, | |
35.9019674884 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5356995603, | |
36.1906473231 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7652558211, | |
31.8480173887 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1088813322, | |
33.0271587846 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2841678873, | |
33.5388348858 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9743850961, | |
33.540677072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9514702354, | |
31.7301722776 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0911473504, | |
35.0465988953 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4902279344, | |
36.9196917527 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1214821347, | |
34.4779837334 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5863335545, | |
34.5753044731 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8549214625, | |
32.5575636005 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1322824308, | |
32.5001918126 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9072511992, | |
33.3966754328 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3820086307, | |
32.7820062954 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2513859657, | |
36.0378955494 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5330119955, | |
35.1192994989 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6091139712, | |
36.62476017 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0408799156, | |
35.202802067 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8724111883, | |
34.4588383256 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3926146681, | |
33.7764142895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8763745838, | |
32.74801785 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6839935205, | |
31.4199611264 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3165105918, | |
33.5744380855 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8470764119, | |
33.0421116124 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.133863768, | |
33.6411462201 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3215028805, | |
34.4845611779 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6113417156, | |
35.4421733836 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4072307019, | |
34.0683495241 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2590262149, | |
34.5611760601 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1346286632, | |
34.8805461058 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2325581446, | |
35.8192755713 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3177012919, | |
33.441498583 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8353530368, | |
36.5241815839 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1219149226, | |
35.2614852169 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0505501631, | |
33.6167789473 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.026991137, | |
34.6463663798 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.674315635, | |
32.6386475097 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2899246278, | |
34.1056002836 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4422148721, | |
33.5374880943 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8819291142, | |
35.1724012325 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7214873096, | |
33.9860167312 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1517493316, | |
32.279823694 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0318946795, | |
34.4577078363 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4822255465, | |
36.8991686514 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4975101705, | |
33.4105738218 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6598740925, | |
34.0631368024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2047295851, | |
34.8852868982 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3992946092, | |
35.7972075336 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9879057277, | |
32.9117004051 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4438469412, | |
34.5427377449 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.754454293, | |
36.1975148548 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9883070546, | |
32.7115792406 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2395874964, | |
35.5751494519 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4022248755, | |
32.327034544 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3342669574, | |
34.9933762895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.003260178, | |
31.8798393833 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8678311812, | |
34.5085782694 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7987206942, | |
32.9129321039 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1451332521, | |
36.8754457024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2998643887, | |
32.973658064 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0684088345, | |
33.3468721455 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5836544791, | |
35.7872398474 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3165716299, | |
35.8106463945 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0200356651, | |
33.0661033958 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.835930211, | |
32.2439663891 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5590236605, | |
33.6496814656 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0838669689, | |
32.9142720317 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0684071639, | |
36.6311839045 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3588841283, | |
34.1402810368 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9667917738, | |
36.9926599836 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3353514307, | |
34.0871415785 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4934785187, | |
33.2998763948 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9984741483, | |
35.682480922 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7978231969, | |
35.1739743495 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3348455583, | |
36.6810402755 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6180757618, | |
33.0680311148 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.657013464, | |
36.2869323555 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6960910562, | |
35.7304582504 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9415968006, | |
35.4989210303 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2487086979, | |
33.2037468529 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8923297069, | |
34.2153871055 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5298892247, | |
33.1966388715 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5990674108, | |
32.7350677826 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5176907248, | |
35.3181492589 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2068036024, | |
34.5029934892 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0137417768, | |
33.2800350959 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3792966106, | |
35.2427794987 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5825339011, | |
36.9623221802 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.079031243, | |
35.5833748749 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2936446726, | |
33.1993573667 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.477481219, | |
32.149387832 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0276788686, | |
33.5777676025 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0644020248, | |
36.8620688964 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7834491216, | |
33.2295967443 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8973582686, | |
33.7021256298 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0074573681, | |
36.4447026494 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8627979738, | |
35.6953073 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5352621379, | |
36.1281383879 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2513926512, | |
33.0130542517 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1164648525, | |
32.4849804434 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5714881078, | |
33.1701451242 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0920717555, | |
35.9156431721 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0779572914, | |
34.0272317708 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3081309606, | |
36.400098534 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2397261312, | |
32.3595117757 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8147956409, | |
35.2417600705 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1718417182, | |
35.2304349214 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6869582906, | |
36.432361226 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4941002117, | |
36.6174470129 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2733181865, | |
35.8973350574 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3483732764, | |
33.8973807277 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3576071787, | |
35.4671735577 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.335851803, | |
35.8451410675 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7818980503, | |
35.3603273218 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.155477064, | |
32.6967568578 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4714361862, | |
34.1399746674 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1298186989, | |
32.4009860557 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7288703787, | |
34.9391027223 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2980288996, | |
34.5615350401 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1573911147, | |
34.194237527 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5217458266, | |
32.6305046667 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5420864834, | |
33.4164768024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5333360993, | |
33.3500618484 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2290433638, | |
36.6282306195 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4260823844, | |
35.5615876937 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5602339234, | |
32.6416386647 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1963491675, | |
32.8995834325 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5837115757, | |
36.4943355374 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8940550475, | |
36.9166339647 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.924201341, | |
36.9955832325 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9636105771, | |
36.8220486797 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5662826277, | |
35.5576496835 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9449097631, | |
36.6858683927 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2092337874, | |
35.5106887943 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6761613087, | |
36.1148827669 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6920019016, | |
33.1095956591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8265512605, | |
34.3362496896 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3415602444, | |
33.7513294517 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.326620657, | |
36.6792120517 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6519955813, | |
33.747519353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9586683389, | |
35.1719082829 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6152933336, | |
36.8879103197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4416875313, | |
32.8205642714 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1800998961, | |
33.9769204588 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6340788533, | |
33.6242814354 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1756834994, | |
32.9862820941 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1095641036, | |
36.2982071052 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6354295091, | |
36.5490112412 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3946365832, | |
34.5506469005 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5236219955, | |
32.3424740308 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7529944983, | |
35.3572658985 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6086517441, | |
36.6329657354 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8562362407, | |
35.4440313205 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5844834549, | |
32.0315328723 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4996891949, | |
35.7957642124 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9637711701, | |
32.3385933024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5778404502, | |
35.8856675602 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3602235742, | |
33.9806920795 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9502516648, | |
36.1152566661 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5286283397, | |
36.2150194097 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0708383089, | |
34.7839551902 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2987614926, | |
31.6715488022 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1447716204, | |
34.4842582915 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3180556297, | |
34.3782288035 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9718825797, | |
34.9571898087 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1273817129, | |
36.213032637 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7767444224, | |
32.848719164 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3006026013, | |
35.7776552872 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3178352496, | |
32.7408006951 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7404940278, | |
34.8063956552 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1093831144, | |
32.4547994282 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.629793195, | |
34.2786573899 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4274074524, | |
36.9354055336 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9372189382, | |
35.51065917 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5786964418, | |
36.4764526018 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.429174781, | |
36.3589708156 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7328592869, | |
34.9383936086 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.971470439, | |
35.3391243998 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0450536942, | |
34.5104136014 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4414195309, | |
36.5908521826 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.313826414, | |
35.0405552938 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0671219934, | |
35.6785490279 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.918875645, | |
35.0967378192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4707645846, | |
33.841611257 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3294741457, | |
36.0122498356 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.577235075, | |
34.2424210895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7159521145, | |
36.1637071386 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2677119048, | |
32.2011401125 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1748088705, | |
34.1415117718 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5557134155, | |
33.2837135872 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5716981083, | |
35.6656317913 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0142796317, | |
32.4662360421 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4050245739, | |
34.1104340488 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7877519141, | |
34.3145377623 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5382629653, | |
34.9003065504 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2202530375, | |
35.6738410664 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3790611911, | |
33.693116426 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6407357442, | |
35.2341450869 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7052108642, | |
36.2267885325 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2937895312, | |
32.422001663 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2529462392, | |
32.8691490197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.851866261, | |
34.993610414 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0245166331, | |
36.752965219 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2632660739, | |
32.6857743197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3737383444, | |
36.4407716504 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2870957859, | |
32.0420348568 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9849344118, | |
34.613389248 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.951384195, | |
32.6514861797 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7450276091, | |
32.0491559784 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9161077436, | |
33.8035790417 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0376602786, | |
34.6908755845 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9071829648, | |
32.9624220191 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3588640559, | |
34.0528152442 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0024353412, | |
32.670901883 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.567967508, | |
32.2000024154 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8065807886, | |
36.2070595251 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0100829892, | |
32.4002247305 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6072665222, | |
32.9991542633 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5524641742, | |
33.452229649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.664680698, | |
32.6197219111 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2767537002, | |
36.1363786925 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3013641375, | |
33.2190079165 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1871004043, | |
34.4361182826 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5586747479, | |
35.4171446923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3671375276, | |
33.0671118962 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4603228143, | |
34.4569805872 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9150862233, | |
36.5762027382 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6473321779, | |
34.4600777906 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1496287446, | |
35.3330192177 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2255802588, | |
33.5460244217 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.852240264, | |
33.4220184653 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4562581205, | |
34.2430224209 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.67542744, | |
34.1060421164 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8136374897, | |
36.3416554092 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3988536234, | |
33.9620758273 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7534445624, | |
35.3801300747 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1004713675, | |
32.6157814192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1880080484, | |
36.6916578084 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2700028987, | |
34.3756782778 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9095392715, | |
35.4683566851 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4190700597, | |
34.4015449938 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7971886604, | |
36.251193357 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2102397149, | |
32.4072242452 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7185158173, | |
32.5916857256 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2784834628, | |
35.8689829557 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3087588788, | |
34.156026834 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3472195065, | |
35.3975323197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4859480517, | |
32.1102199701 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7758357372, | |
32.636888862 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4437535157, | |
36.5521210894 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0790422839, | |
32.5297811215 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2360220618, | |
35.9584895391 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2741061114, | |
33.4533935353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7306958375, | |
33.1230711007 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9119094449, | |
33.2545764088 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3298567314, | |
34.2304800627 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2979422287, | |
33.0186869429 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8401170656, | |
34.3223431799 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2665380015, | |
35.7755190353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3766685761, | |
35.1028855757 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.810049848, | |
32.0654451662 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7741590308, | |
36.0467509115 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8102149713, | |
35.5277099151 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1320020746, | |
34.7407885396 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.37361165, | |
34.0559579801 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2517041127, | |
35.5691979858 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1226341836, | |
33.3036188137 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4736495233, | |
32.4272951031 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5388462817, | |
34.2109286876 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1782375177, | |
34.7322231259 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1296227045, | |
34.6365401353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5956604821, | |
35.4423202467 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5874921309, | |
35.4923148013 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8686636039, | |
36.1847268633 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2834888575, | |
34.3310815719 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7472733813, | |
33.6019418732 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4826011538, | |
36.79964619 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2251384772, | |
33.0172917653 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7951398505, | |
34.3433587358 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1971096422, | |
35.7860330108 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9685757233, | |
34.570048378 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3750130596, | |
33.8142778355 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6384095712, | |
33.0301230481 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2752305082, | |
32.5235609342 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9064920983, | |
36.2568123428 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9456950346, | |
35.2085344386 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5602553361, | |
32.5763249533 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6411638715, | |
34.874275021 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1178158525, | |
33.5933935968 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1324248823, | |
34.4928379709 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0005079992, | |
34.4753218661 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6374865752, | |
34.4510630914 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1156075283, | |
33.7601773249 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3626251785, | |
36.2333835019 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8106732817, | |
35.6023898014 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1225685958, | |
34.1134846592 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.865614314, | |
33.120224079 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.916277277, | |
32.563661105 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3317927629, | |
36.2102539236 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9735512477, | |
33.2500351848 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7367707631, | |
35.7273221776 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.877836144, | |
33.742934753 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8967835507, | |
33.0430016889 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5345950246, | |
31.9578494415 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3393114014, | |
36.6222611992 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3432161676, | |
33.5021470204 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6381853442, | |
33.0628710983 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.525084984, | |
33.1581863793 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8720508668, | |
32.931828373 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.112226799, | |
31.9072752372 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6886050959, | |
35.433684709 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0735257139, | |
32.7414401112 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1544713569, | |
33.4995893857 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.889897979, | |
32.4334820804 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0521257949, | |
35.7298391927 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4557039002, | |
32.7898885834 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4271284627, | |
35.2059779708 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6424426554, | |
32.9219795204 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0287720174, | |
35.4695469145 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4961976605, | |
32.9171764302 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3752273229, | |
36.8571752107 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8618670608, | |
36.4609663741 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0672558582, | |
35.4396156551 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2855523893, | |
32.1223630022 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4291441768, | |
32.0668609717 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5560784737, | |
34.5802538323 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.610983622, | |
32.4953951175 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9656205792, | |
34.0216937466 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.675281549, | |
36.4565008803 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8452640097, | |
33.2408646497 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1156565403, | |
32.4330097986 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.883903917, | |
34.8923199258 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7895873665, | |
33.5180742084 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8602396384, | |
31.7357130932 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9444339156, | |
34.3415639426 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0954669597, | |
36.7300329386 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6835126265, | |
32.3163349653 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3633089273, | |
34.7121648333 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1318998036, | |
35.5402350777 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1267269988, | |
32.4121876108 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1818629808, | |
35.794959164 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1287161764, | |
32.9309056702 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4377029684, | |
35.458555963 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1879844373, | |
32.9154644699 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8539440901, | |
32.9958002766 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3032147269, | |
32.6308425813 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7203880992, | |
33.2700525698 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2277952753, | |
36.097632184 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3693045311, | |
35.7363501765 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4232819837, | |
32.3082599294 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2488659465, | |
34.4286691689 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9689540424, | |
34.0168846501 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5239539171, | |
34.8520412204 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2737466022, | |
35.8299325332 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5205026389, | |
32.3103628895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.77525189, | |
35.9382871323 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2988318825, | |
34.6360613988 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.094199625, | |
36.2365530052 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8481392272, | |
35.1268565291 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1769358754, | |
32.4683051966 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6051759007, | |
32.993417107 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4364663459, | |
33.8819696782 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2732049186, | |
32.1639706284 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7152701532, | |
33.2335121312 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8995282694, | |
32.5945972635 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6543376717, | |
35.2038054691 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8623698119, | |
34.765502623 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4252053734, | |
35.3044307806 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5638315916, | |
34.1026516766 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1258698349, | |
36.1332221166 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1230823152, | |
33.3914312546 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0799778757, | |
34.0265741854 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2466856104, | |
34.5530943428 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4368371924, | |
36.6986147668 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5987664086, | |
32.8549024723 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2832877095, | |
34.9213333252 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1421874383, | |
34.0403244664 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9532027835, | |
35.2717152 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9877154075, | |
31.4428240775 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.632963405, | |
36.9909751968 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6548466364, | |
32.2412151076 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5436812014, | |
34.9597914459 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3143641927, | |
34.7340228258 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1200104829, | |
36.8298629379 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6776355095, | |
33.7635002576 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7595691137, | |
34.7136471186 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5471565153, | |
35.0662227899 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8205252509, | |
33.9861449773 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6432108908, | |
34.7098066644 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1135930332, | |
32.8831975822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9866746042, | |
33.5727141822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4604959665, | |
33.4944251343 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5635273345, | |
33.5181325076 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0908304357, | |
35.0985206872 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8503136328, | |
35.6344854901 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7959524454, | |
35.2515374192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3453918166, | |
36.2445335164 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1824989387, | |
32.2282814357 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1145445865, | |
36.2574086659 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9519662672, | |
35.0506369643 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8649997188, | |
35.0483523251 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3197617597, | |
33.7826973285 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2035144372, | |
32.1460907246 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6132354899, | |
33.4953379695 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2007333373, | |
34.8576556277 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3128536223, | |
36.8894967373 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0996360784, | |
35.5293986456 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6740578736, | |
32.9475307416 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5600408764, | |
31.8295428466 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0242159479, | |
32.0396397262 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2697520964, | |
32.4773057318 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1088396705, | |
33.435013087 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6955193015, | |
34.2066688179 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.721685066, | |
33.4858374998 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7480301812, | |
35.4783253181 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7505799783, | |
36.7362508356 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5034304702, | |
35.9187390115 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9205648502, | |
33.9807923158 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5540400071, | |
36.4946515255 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.514456584, | |
32.8089971735 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.35314241, | |
34.3671771338 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6242700326, | |
33.1588870302 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3455695345, | |
34.1979442718 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7317627076, | |
35.6071475545 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4776119944, | |
35.1546828737 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9266156525, | |
34.0435517172 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7135483421, | |
32.0452534719 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7061458515, | |
34.4445574267 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6669593313, | |
36.7730807241 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2987310999, | |
34.1948369583 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9537153756, | |
36.0678564175 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9774214258, | |
32.3029524713 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7597209875, | |
34.1719098643 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4623992266, | |
32.5611936947 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6689210282, | |
34.334963434 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.455049351, | |
34.2333803407 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2620077065, | |
36.4747921841 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2886786546, | |
33.6383157035 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3462481901, | |
35.5802582823 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0877833669, | |
33.2726100024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5088330718, | |
36.5904314574 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8576846596, | |
34.2046481935 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3474294847, | |
36.9283346098 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8653304178, | |
36.9874011568 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0325098108, | |
34.0466212169 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9379639031, | |
33.7726878464 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0184405029, | |
32.7817469761 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3079949286, | |
32.5601093604 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4333287673, | |
32.5955316074 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5909220868, | |
33.8343712021 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1186051954, | |
32.0267709973 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6582567241, | |
35.0111136824 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9494100343, | |
36.6668818708 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4346661868, | |
34.3884229206 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.074565719, | |
35.8920744815 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2760753587, | |
36.7016355466 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2527850979, | |
35.6803737198 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4194434915, | |
35.6759735514 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2330093834, | |
36.801170453 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1736113127, | |
32.4927673872 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.871756798, | |
33.1171054062 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9171417112, | |
35.8870195011 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2514296184, | |
35.644082879 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "NM" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3339772033, | |
36.6314350948 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5373093351, | |
36.6284394768 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3235527984, | |
32.1239667155 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7094384329, | |
36.1930415429 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6961901298, | |
32.0075564678 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3186351458, | |
36.6543614411 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2942928591, | |
36.0640126717 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9133529202, | |
33.8845605402 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9899766443, | |
36.2225425046 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4573113474, | |
34.8486411412 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9664576046, | |
36.6356034685 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5036777506, | |
32.3153648166 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0019311677, | |
32.8424633952 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1965926265, | |
32.8897465237 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1104807667, | |
33.1548618176 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6434128745, | |
31.8424025976 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5297061966, | |
31.4141536088 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9925298419, | |
32.3804460172 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1170966804, | |
33.4800438078 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0188264139, | |
31.3882815588 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4214256114, | |
36.7927693029 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9833869526, | |
32.099880615 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6982559273, | |
31.8074255969 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3511141611, | |
32.7705018338 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6718869918, | |
34.5824365779 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4640502141, | |
33.5541365398 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.654914989, | |
34.1520274717 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4607102011, | |
34.1841994895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2028082359, | |
32.3241369004 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1916667713, | |
34.6219390346 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5888636229, | |
35.3149106666 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6672933999, | |
36.1130958819 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8963104065, | |
35.1963408689 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1805477255, | |
33.6334514043 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3230439928, | |
34.1342683462 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1226748346, | |
32.7083354339 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9256467957, | |
33.361802659 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1604486961, | |
33.0566852925 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5303794173, | |
31.6750197076 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8425852821, | |
34.6972013461 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9455875333, | |
36.5094940695 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.469462754, | |
32.869854367 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5463565019, | |
36.5976007902 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9514410302, | |
33.8241157747 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6979487233, | |
34.5128420096 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0501445714, | |
35.945475754 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7399958067, | |
32.6839234992 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9754904325, | |
36.2082833051 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.078942317, | |
34.5565635767 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7116747923, | |
35.8628939161 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5151056753, | |
35.9708810293 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.2596646239, | |
32.5233457314 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.299330507, | |
33.9184186619 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1230798553, | |
32.8789147861 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2718269761, | |
33.6607536384 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3369972133, | |
35.2191589717 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.134871786, | |
34.3234026578 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8809355332, | |
35.2112399643 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9277145625, | |
34.6339719025 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.5639345905, | |
34.9408928963 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3309148798, | |
35.2538392236 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0327469364, | |
34.0028591156 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.225124389, | |
35.2150986753 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4502566652, | |
33.470149865 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6622588899, | |
35.656524654 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3583839248, | |
35.264625592 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5659271323, | |
33.2919748547 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4063093587, | |
34.8836705197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.111675869, | |
32.545049867 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8205053354, | |
35.7866674077 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.879633813, | |
33.192743017 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3821377237, | |
32.5229346135 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.2773339353, | |
32.4853548562 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7070869405, | |
34.0056765273 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2570792535, | |
35.5974251028 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4460068079, | |
34.8693594191 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9033566454, | |
34.1705066185 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7778535036, | |
32.808846158 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7304754289, | |
34.8016028124 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9537911725, | |
35.013884463 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3556453716, | |
35.4600686907 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2304061786, | |
35.0385471948 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.958007059, | |
36.0831084905 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4205237991, | |
34.5096515079 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2878039407, | |
31.7051979956 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.716941099, | |
33.6793823027 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1919146715, | |
31.7710305028 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9918264917, | |
33.662452668 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1101311309, | |
34.4153912359 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1107482775, | |
35.7215274402 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0745589829, | |
35.3514756019 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.183631055, | |
33.5002765341 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9771415276, | |
34.0816390925 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0050695032, | |
35.3535723817 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3442785091, | |
34.2335419247 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0475057774, | |
36.576260339 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0364596416, | |
32.381122643 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.415382287, | |
31.8488218678 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2785687127, | |
31.4108802223 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5910534105, | |
36.7234923301 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6041081548, | |
34.5194310482 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9963534671, | |
33.626390356 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2683711469, | |
33.0151403869 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1700700621, | |
36.8897691011 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6921949075, | |
36.4112288554 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2721559034, | |
35.2837444232 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4575700311, | |
32.9226919316 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8913347552, | |
34.5665031182 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5824051481, | |
35.6276263822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3706084008, | |
36.5403518172 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9717243103, | |
36.1344049954 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6305372722, | |
34.767222131 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2049801104, | |
32.8080819035 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4069580341, | |
34.1586328052 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2774089979, | |
32.2154994201 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6671703579, | |
31.8379029261 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9254458803, | |
32.1182341209 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6547677396, | |
36.0379751627 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3906825476, | |
31.4523402805 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.1268986384, | |
35.3294888827 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0707705512, | |
32.5515767646 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4538540143, | |
33.6810666116 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6651372069, | |
35.2826772406 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4187324373, | |
35.869953392 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6898160418, | |
36.8655443542 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.477215146, | |
36.4050705545 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.731106211, | |
36.6133645192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4123559542, | |
35.0234569423 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0007601066, | |
32.4464797557 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6731488082, | |
33.9957322546 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2382635944, | |
33.6912008046 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.424662376, | |
34.916322487 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4683715129, | |
34.8569339553 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0741863965, | |
35.5474330031 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7782568131, | |
32.7698149175 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1654814975, | |
32.366078663 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0358385804, | |
35.1635546276 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7497303424, | |
33.7766340917 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4152446234, | |
33.4498317498 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4844501419, | |
36.1276873658 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9247274205, | |
33.1533215963 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2620305713, | |
36.2330096856 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7228816203, | |
34.7656584734 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7501500781, | |
35.1305394359 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8320261046, | |
33.6042776169 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0732664272, | |
35.4055338024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9244961651, | |
34.4592659252 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.1143620749, | |
35.2162817048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3098138889, | |
34.4034379072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4676632574, | |
34.6422552808 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1076914414, | |
34.0383269565 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0541511537, | |
34.419874593 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6996841801, | |
32.5796420928 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4795168939, | |
31.612920945 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5897126852, | |
36.2289616979 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5568438981, | |
36.7278926808 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0893740319, | |
35.4118891734 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1168021943, | |
31.3876800246 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3007068481, | |
35.9542488459 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5628757688, | |
31.5367402136 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2507297213, | |
35.334987505 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0691374883, | |
32.614028634 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4793170103, | |
32.4549194353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9562760249, | |
35.0825805562 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9627952595, | |
34.8843224762 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4425416536, | |
34.3340416993 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.898765975, | |
35.9240472403 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4204735179, | |
33.8029533873 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6912852061, | |
36.2355067042 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7356784758, | |
33.8802345557 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9871578954, | |
35.3903157755 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9656236832, | |
33.4022747524 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.1888275297, | |
35.1521099745 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0780541754, | |
33.0303372108 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9413590678, | |
33.842573303 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1434119451, | |
33.8828236061 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9600864186, | |
33.77522958 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3008208362, | |
31.5784821821 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6856991275, | |
36.3769109346 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.74752041, | |
36.0531494145 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.5194631804, | |
32.7679390261 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2897990393, | |
31.6523939642 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0390916909, | |
36.5041880037 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1205934944, | |
33.5505516083 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.606714201, | |
34.1640875983 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5451615734, | |
33.5478785158 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.994369748, | |
35.4825841159 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0619667292, | |
34.9783312905 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4247533815, | |
35.836045918 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9852304551, | |
32.3319356221 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4372131935, | |
33.0198595277 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8162019519, | |
33.2398134988 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9210848782, | |
32.8477673197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0536232084, | |
34.8354418737 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6558793043, | |
34.5809233683 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.991977494, | |
33.0115989217 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1075922654, | |
36.2699242731 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7181011424, | |
32.1319413349 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3927541771, | |
33.9150176043 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.876500779, | |
35.9846626741 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4259323666, | |
36.6797164393 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6518714207, | |
36.0450506676 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5059748315, | |
33.8600280192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9186283749, | |
34.9711165629 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7792295188, | |
36.6336157795 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9736897273, | |
36.8289968251 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3071852737, | |
31.765968551 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9474575797, | |
35.6835955728 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6848264779, | |
34.0854125757 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7756572947, | |
32.1255056888 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3022010755, | |
32.9871326846 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1156362137, | |
31.9309313938 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3549927793, | |
32.0674339215 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3882372316, | |
36.931562802 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7915691209, | |
34.4101825306 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1257751739, | |
33.8055110615 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.697979634, | |
33.4144594474 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4206659697, | |
31.7924180562 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6831147512, | |
35.1357158369 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.30916692, | |
33.2461101943 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2806636536, | |
35.7953564751 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4035643979, | |
33.5855999266 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1233799858, | |
35.4145830012 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5194729761, | |
36.9077830234 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0233025172, | |
35.6464357854 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.911399767, | |
35.7446133032 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0315847953, | |
36.932816259 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0674737743, | |
35.4988009824 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.853652851, | |
32.9757660616 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2299036779, | |
36.2354787522 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1556212787, | |
32.7703888689 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5188221238, | |
34.8181359205 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7515805314, | |
33.3107789679 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5645398833, | |
32.2016912219 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4899806238, | |
32.0536751526 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3475242299, | |
35.71657148 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3706271944, | |
34.846392114 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.2803569674, | |
32.5274631963 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0405426109, | |
34.9821341727 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0404201165, | |
35.9738187682 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0079960535, | |
34.6901580371 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0588625376, | |
36.2361941423 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1962691826, | |
34.1148092269 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1489931681, | |
36.9311431796 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4001723789, | |
36.1528964719 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9653934217, | |
33.8964643344 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6250384455, | |
36.4810595127 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8007841668, | |
33.2373443245 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6899256937, | |
33.8467578627 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0265156405, | |
33.275572517 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1056218158, | |
36.0259442538 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5340155349, | |
31.7989432489 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.939405949, | |
36.6915143424 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.404789889, | |
32.1168642683 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0253556703, | |
32.9251202097 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9588341287, | |
32.7005763337 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3099662294, | |
33.8259669934 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1283546178, | |
36.6421215146 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8778149354, | |
33.5981216357 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1514221576, | |
31.4372934145 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5438553821, | |
36.2653004357 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1523149666, | |
31.4480701967 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.84089563, | |
33.478799099 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8255174317, | |
32.5064254517 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1511597771, | |
35.1483105059 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2239965017, | |
34.3754042184 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7395580863, | |
35.4789202827 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7440876945, | |
32.6143840999 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8479082673, | |
36.7880234417 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4024751649, | |
35.5172432494 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9117393466, | |
33.2902435569 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3492061637, | |
36.7041842908 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1478555343, | |
32.3883625163 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6819351489, | |
36.7219496489 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.427994384, | |
35.9028107881 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0660797009, | |
36.4191681162 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0948990104, | |
35.4380013605 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0142452065, | |
34.5724284743 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.002709113, | |
32.4493020897 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.581068414, | |
35.3660838915 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0771175172, | |
32.6289639858 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3313026136, | |
36.1844641197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5667627945, | |
36.9085666688 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5205616339, | |
32.4780872187 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4954121404, | |
35.1872106201 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.857551081, | |
34.6871776346 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4971711179, | |
36.9855057227 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9912339524, | |
32.819256255 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0113148582, | |
35.9144703559 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5430529061, | |
36.582417063 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.5414640737, | |
32.5189372393 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.2128670369, | |
33.3653570461 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9577582326, | |
33.3799539627 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7612569832, | |
34.8860521874 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.2787534165, | |
35.6014011475 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0912745644, | |
35.4112821839 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0945096973, | |
35.691343262 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5143508654, | |
36.1972590114 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4729916151, | |
35.9897759244 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5913782527, | |
36.0170957385 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9159084418, | |
34.7918829374 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5578038011, | |
35.2730729789 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1207541027, | |
32.5570033903 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8759672128, | |
32.8298156684 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0708250099, | |
33.1355388099 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8868957102, | |
32.5153821937 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.2894578269, | |
34.815073348 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8302892057, | |
36.4618886072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8813091366, | |
33.3842520328 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.155842634, | |
34.6548557173 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7652102449, | |
33.1183395152 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9396096406, | |
33.216576809 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4895837806, | |
35.625888705 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4894860617, | |
34.8279859614 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6006276672, | |
32.3760438041 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1038079998, | |
34.1384652269 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7149917915, | |
36.2655392221 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0726201471, | |
31.7792891688 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8608612641, | |
33.3696266071 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6475856682, | |
34.8773970251 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4554893162, | |
32.3990013345 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4984158533, | |
35.006171284 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8750064669, | |
32.3954410447 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3055757916, | |
36.4206837513 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3127621244, | |
34.1227526361 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3482164037, | |
34.2852418478 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2466967441, | |
34.2377559471 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6471406019, | |
31.9278756984 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7439559723, | |
36.1840136089 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0226132919, | |
32.3559600697 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.71008608, | |
33.8905061916 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3246358011, | |
32.3128271174 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5280925645, | |
32.7497514944 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7944542123, | |
32.7048977268 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9563228355, | |
35.5461303361 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7162780359, | |
32.3559376572 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.730971448, | |
33.1388242985 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7297356813, | |
35.3808546101 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8101645328, | |
34.9493236206 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4776944422, | |
33.3875549613 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.822970541, | |
34.5245610824 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8465138093, | |
35.4975109267 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6615676407, | |
36.4966632605 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0608206729, | |
35.888311674 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2928062167, | |
34.6650126257 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.061406276, | |
35.3569567099 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4827627956, | |
32.2899884884 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9463400823, | |
32.3800832072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.3710184852, | |
33.2616920215 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.204454436, | |
35.3599037444 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.839454698, | |
31.9249973971 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4552239882, | |
35.562786543 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.023753001, | |
32.141761183 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0734607517, | |
35.3340428594 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5787553646, | |
35.0432060277 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.684691971, | |
35.0708290841 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3120550841, | |
31.4423787706 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4357002757, | |
36.6644042714 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6511491135, | |
36.1927401956 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3224819484, | |
35.2022486126 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4561873231, | |
35.9258947664 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9855569364, | |
36.0011671002 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5329102699, | |
36.5205964479 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5393885377, | |
31.9025859166 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.568875611, | |
35.7924191456 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4910255419, | |
36.7544413649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6633992245, | |
34.4975955135 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9353359551, | |
32.8285884312 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5266222521, | |
34.2059920333 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.169226984, | |
32.5190660614 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0996374462, | |
33.0570293823 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1971143707, | |
33.8296795511 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5745098011, | |
36.8782904061 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6262464138, | |
32.286423826 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.3353292127, | |
34.0169284534 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3691477742, | |
35.2824580165 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7708669638, | |
33.3587258174 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9112269285, | |
32.1550271599 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9965379567, | |
32.2399703018 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6529754745, | |
36.1371463722 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4452726649, | |
33.86157797 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7980747957, | |
34.7722734222 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6816155053, | |
32.4445047813 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.488714225, | |
36.7254291673 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8036740736, | |
36.1306966685 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1542571456, | |
32.206803306 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7732388709, | |
33.7445813847 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3937366469, | |
32.8325225374 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5241348005, | |
35.3657952923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3414515422, | |
33.0890705768 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.934599338, | |
33.3229868785 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8261616303, | |
35.5961466667 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3287893863, | |
36.2980516361 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0213109275, | |
32.492302649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1977497354, | |
35.7841993305 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.2721385228, | |
33.2210535404 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5174944121, | |
34.8705660345 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4617891367, | |
35.3308301147 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.6172342365, | |
34.8573010807 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1610013124, | |
34.19055234 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7499736242, | |
34.4572451954 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4229678552, | |
35.4162176499 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1349337679, | |
32.8236364026 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9711759242, | |
36.8606060499 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1463716307, | |
34.7136533732 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5796964326, | |
35.6299406981 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0117888575, | |
35.4353037178 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0195433307, | |
34.4847400354 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1960550147, | |
35.3737943168 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.960708028, | |
36.4872173453 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0816860493, | |
35.699098848 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.999985495, | |
31.4259496122 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9715775312, | |
36.5821358601 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9607692255, | |
31.6344221684 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0527476124, | |
36.5779121522 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8006159678, | |
32.1162797947 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1111737445, | |
34.8173511515 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1647192633, | |
36.7213053193 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5169614494, | |
35.004091043 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3713391195, | |
31.7108526652 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9477976619, | |
32.3263971691 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.144610858, | |
32.8065942787 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9334507765, | |
34.4940275143 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5810432251, | |
31.5003431682 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.068812571, | |
36.1070976307 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2926718225, | |
32.1988672039 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7614076167, | |
31.5386093784 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6443603801, | |
36.4374081439 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2328942195, | |
35.8463107544 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9568002442, | |
34.0557047946 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5113912516, | |
36.1174099112 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2007844875, | |
36.700858718 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4583044056, | |
32.8933274945 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8294065163, | |
32.735806489 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7642239897, | |
34.549321626 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6443778175, | |
32.2366967054 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9095091075, | |
32.6728667085 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9616234264, | |
36.9309380591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.664839827, | |
34.6769803357 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8650586985, | |
34.9741656904 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7167319432, | |
35.4159451166 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0179918329, | |
35.4231912655 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6762124223, | |
33.73909594 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6694754431, | |
32.3176445079 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.5024146321, | |
32.4892910142 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2588907619, | |
31.4404910106 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4179105615, | |
32.481952796 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.901159279, | |
33.8267831792 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5256800623, | |
36.8670340725 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2960699725, | |
33.7723138289 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3452025236, | |
35.6563074249 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8385989004, | |
33.0101753555 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1819891717, | |
34.5643971367 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0446646191, | |
35.9675839951 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.4005976107, | |
33.403027609 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0408939117, | |
36.6691371676 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7788481336, | |
36.3089269656 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9442387165, | |
33.3110375214 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5884024339, | |
35.9633295524 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8345327379, | |
35.9810480987 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9788357862, | |
33.3375205862 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9612253625, | |
34.0147671052 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6329698911, | |
33.6256963334 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9070358881, | |
32.6480938466 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9010040117, | |
33.7491938044 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8712908932, | |
36.1112569618 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9667620765, | |
35.6583144239 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9402504408, | |
36.8910637623 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6436484876, | |
31.6201830192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9419136033, | |
32.0269201668 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5364345974, | |
33.2897079782 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.79548317, | |
35.4323659792 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0035853652, | |
32.3549913611 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7843885442, | |
31.8454499536 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1741756641, | |
36.419438706 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2019443384, | |
33.0610602678 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4460081184, | |
33.5750706421 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2550996622, | |
32.9283896437 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9960470172, | |
33.3650434358 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.395379784, | |
35.4026130975 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8418526711, | |
36.7952560615 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.382226369, | |
31.9973945254 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2196246187, | |
33.2918883068 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1349710452, | |
34.9335776446 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8753838512, | |
36.8787690423 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.176263854, | |
34.6598580644 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5443011771, | |
33.3364364845 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9382234547, | |
32.464123951 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0669253108, | |
35.8290774293 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7024510926, | |
32.8466451939 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.524671795, | |
35.1441792887 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0839767728, | |
32.5560816554 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.264257392, | |
35.6824570975 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0868407779, | |
36.3506428799 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9245492057, | |
33.7744196942 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0776306704, | |
33.8859874959 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8452385796, | |
36.9504527602 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4356071083, | |
34.2395233256 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1017211908, | |
35.3362245287 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0049690549, | |
34.2105357284 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "AZ" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1193222922, | |
35.7457774822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0097605918, | |
40.742038869 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1215097686, | |
37.5113372252 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.088254951, | |
40.4886244794 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9736316047, | |
38.6229086326 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3216963104, | |
37.8607766227 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1036688881, | |
40.9022919844 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2178728232, | |
39.27801909 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6041512878, | |
39.2649591964 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6709833391, | |
38.2679225349 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4998902318, | |
39.4189543233 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6678897665, | |
40.5236732918 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1158517128, | |
37.3523891837 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.7789695455, | |
39.3695047478 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3155420066, | |
39.8522548685 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.046347591, | |
40.3645502831 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6982899213, | |
38.91200209 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2313750959, | |
38.5512905602 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7739203773, | |
38.352100739 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.4983484295, | |
40.1133181732 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4138103907, | |
37.7469265789 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3268393147, | |
40.1694463866 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.789817304, | |
39.3763809429 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6910627077, | |
39.7262996223 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2436695292, | |
40.5034470362 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9448958171, | |
37.3225086231 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5433869857, | |
40.767408448 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3731033016, | |
39.9457277338 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1790121586, | |
38.7655352935 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.4831233863, | |
37.193132584 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2471343049, | |
40.9227405512 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4473506415, | |
37.5344609241 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6306301968, | |
38.5039407867 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6249820645, | |
37.0909210373 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5829995147, | |
39.1145490394 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1265245785, | |
39.7527940452 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6173381082, | |
39.5789173234 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8693046965, | |
39.392742864 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.589260722, | |
39.2455840521 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2442853664, | |
39.1936700282 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9679663096, | |
39.8030151427 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2409770123, | |
38.1775671702 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3946616036, | |
37.5171457463 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1625633734, | |
39.1931525511 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8755427006, | |
39.0642973103 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0808400784, | |
40.653658112 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.3610551549, | |
39.4056259424 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4596921598, | |
39.3828631823 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.993962431, | |
40.6232711189 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3271014012, | |
37.2311388873 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1893243771, | |
40.2374529464 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7957464833, | |
37.1359413119 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.318008478, | |
40.0726034072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0135378124, | |
39.8790629113 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6170534724, | |
37.7930566237 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7340627349, | |
38.983592752 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3522333875, | |
39.5642583032 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5034472981, | |
39.0280040538 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5188169002, | |
38.1525515732 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7058972286, | |
38.5295861949 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3274620011, | |
38.7654472563 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1484264524, | |
37.0039797568 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7240924871, | |
37.7144708615 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1228365557, | |
37.038766528 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.7410856967, | |
40.985248653 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8211986437, | |
37.9113633734 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.536633044, | |
39.8453363413 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2015706065, | |
37.8577201689 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0264748649, | |
40.3900299974 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3358815265, | |
38.7386059864 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4223136891, | |
39.0714138308 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.62461824, | |
38.369206154 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2865666712, | |
38.8438498623 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9266409799, | |
39.7269004842 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2101350265, | |
39.0134354744 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9007846376, | |
38.6602238014 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0044438344, | |
38.6360153066 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7746101575, | |
40.1546012668 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1206742743, | |
39.1587155707 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6341941325, | |
39.3604156177 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3083653624, | |
37.3584600448 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8437716361, | |
40.5508408272 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8793822247, | |
38.6106386179 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.856959769, | |
39.9850819869 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7910185335, | |
40.5109007393 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4837554665, | |
38.5866842191 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.7028967016, | |
39.9317643425 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3896226148, | |
38.0582488258 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6322679263, | |
38.8443480852 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1183221369, | |
37.514052255 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9747689091, | |
39.2345893723 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8864023602, | |
39.6252150673 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8461229666, | |
37.0273054775 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2171074357, | |
40.6870701076 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5976450773, | |
39.951070832 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5132935044, | |
40.6734257109 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0152177934, | |
39.0180544834 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8908397448, | |
37.5344332443 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.413010731, | |
38.8949998375 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2078136025, | |
38.2466889993 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2923295094, | |
38.0577228606 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5095212217, | |
38.8075286346 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6757529019, | |
39.3275980237 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8252661711, | |
39.1210925856 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9731036452, | |
38.4393334429 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1128308595, | |
38.4032302193 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8138975025, | |
40.3522763681 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4545139021, | |
40.8715526845 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4928948059, | |
39.8776983873 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1670375786, | |
40.6920862148 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0819261382, | |
38.2633646189 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1115621357, | |
39.4696944022 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8721047073, | |
38.6544159934 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8140996268, | |
38.5589215615 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0109443052, | |
40.7353247239 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0177188064, | |
39.5940807223 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3538183513, | |
40.7794072009 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1143042576, | |
37.8534517882 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.376301182, | |
37.7925747126 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8060957762, | |
40.3748362225 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.298195467, | |
37.3327483202 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8742678798, | |
39.5363713348 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2341758657, | |
37.2100607214 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6456634498, | |
40.040249343 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4452197304, | |
40.8715776426 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1570045261, | |
39.9072227156 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.4751805066, | |
39.9979346831 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6353621696, | |
39.3686012665 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5262678976, | |
39.5630355462 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0340454304, | |
39.626246105 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2131680771, | |
40.3212753964 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2507322733, | |
37.8923763804 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1472611608, | |
39.2986879202 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8818098096, | |
40.4943775348 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6410687043, | |
37.2445282316 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9155082573, | |
37.5393485105 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2097366535, | |
39.815287518 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9091534847, | |
40.1878264777 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4640740799, | |
38.2406179317 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9976527106, | |
40.5986043308 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.260232936, | |
39.9638931571 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3111286847, | |
39.2672410618 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.6788394932, | |
40.9303327826 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2534445836, | |
40.780188599 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9152916009, | |
37.3999645077 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2460400237, | |
37.383727949 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9880126732, | |
39.3181244641 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4744288344, | |
40.4640354899 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5282739235, | |
40.7446220818 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2354444903, | |
37.0736504773 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7846830902, | |
38.6770770581 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5147640657, | |
38.4724330204 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9419069035, | |
40.4316619353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1311485228, | |
39.7085385356 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5093658064, | |
39.6100683669 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.5289576936, | |
38.5828442272 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3053790371, | |
38.4344340967 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3666045281, | |
37.8499441918 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8633978778, | |
40.764013464 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8311049885, | |
40.3654067791 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9483866987, | |
39.2237240111 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0042850183, | |
38.1092921748 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8830798418, | |
40.5465420452 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9174846068, | |
37.3230721904 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9156585619, | |
40.6617758469 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8837661954, | |
40.6431996327 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0188731683, | |
38.8959494048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8814266409, | |
39.7492728708 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2486199623, | |
37.4565494048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2319802946, | |
37.8593910351 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2778513892, | |
38.762737506 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1673818398, | |
39.517888598 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1032618821, | |
37.5464386193 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0504741781, | |
39.9531433946 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7774150825, | |
40.9038890008 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1537092423, | |
37.1562142445 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9804894935, | |
37.1840733479 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5129381204, | |
40.933389838 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5487763343, | |
40.9473809006 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.7656168314, | |
38.2892798619 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0683962103, | |
38.4969202692 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1140983043, | |
37.6104281224 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1897877547, | |
39.7615463683 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2579097583, | |
38.4778666906 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9153410132, | |
37.1166053867 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3948927878, | |
38.5709077267 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8170167904, | |
37.0985834613 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5290065296, | |
38.9351991245 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1459135989, | |
40.3987951677 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8732720722, | |
40.8031188473 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8461239155, | |
37.2594827002 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4123022463, | |
39.8155098462 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.910740248, | |
39.7856829309 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3131089159, | |
40.3231410158 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2937329754, | |
39.9333009004 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4039757154, | |
37.5281994612 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3107591838, | |
40.7270263342 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2920083352, | |
38.8290828951 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5024058315, | |
40.9562547622 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0006451248, | |
40.8343493099 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8168143525, | |
40.1501602922 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4544817888, | |
39.94366346 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5459709674, | |
39.6424653706 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1059965801, | |
39.9091199951 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0627684426, | |
37.3131259716 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6676458674, | |
40.9289806266 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4967121736, | |
40.349087437 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8686331901, | |
39.2907981834 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.853276388, | |
40.4194418833 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5879182667, | |
39.5667580832 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.992728002, | |
37.5553098613 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4190235471, | |
39.7837182966 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6592389848, | |
40.5539008598 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2137539948, | |
39.2647360986 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.584360924, | |
40.5849646277 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3137853505, | |
40.9515852964 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9863720646, | |
38.9500154169 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9868972336, | |
38.9630823592 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5112050685, | |
37.127177171 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0306665315, | |
37.039980994 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6067947041, | |
37.2721254119 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.77160972, | |
39.3943004482 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3995681459, | |
38.8910244065 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3887771846, | |
37.6658142421 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.6462440493, | |
39.0706457095 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3014479805, | |
39.5499251172 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4534050649, | |
38.6406835855 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1937159788, | |
37.6236459101 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.094309107, | |
39.3024886043 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.53439508, | |
40.3775968751 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8017913931, | |
38.4124648347 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3256678926, | |
37.2545550298 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5537035171, | |
37.6388598955 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4047931299, | |
39.9543236091 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7309037567, | |
38.4930396093 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8194598356, | |
37.758843895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8282865332, | |
40.6492680052 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3968821101, | |
38.059790118 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.050189795, | |
37.2184077514 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.0580721902, | |
37.6367039448 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8476862692, | |
37.8651823595 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6533379369, | |
40.5048589147 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8308167981, | |
40.534384607 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0286004241, | |
38.8031394986 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1953928317, | |
40.6425712193 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1701631897, | |
37.9663194449 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5233353927, | |
39.018256348 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7960151953, | |
38.8930210964 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5383285426, | |
37.8405783922 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0079794478, | |
38.3589735887 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9122488676, | |
39.5239904192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.5289678092, | |
40.7646489724 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5887918302, | |
39.6917674466 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2733645855, | |
40.8098902182 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2610168462, | |
37.1737875927 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5386610562, | |
39.5391881987 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.8841924745, | |
40.3267509006 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3619398868, | |
39.7689291473 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9900210345, | |
38.3721021215 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1430641008, | |
39.9021271521 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8545443885, | |
39.9598091698 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4912815677, | |
37.7591547565 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8716233405, | |
37.0364413136 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9223749488, | |
38.4902309427 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7068302185, | |
39.2505863184 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7922505943, | |
38.5116445486 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4839162703, | |
37.1904749933 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8833187976, | |
38.8412630163 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0017655559, | |
40.6164812274 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.6290084317, | |
37.829793326 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5951714538, | |
40.0896131541 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4662724433, | |
38.0343266881 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9232019237, | |
39.7181787641 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6807557883, | |
39.7210203925 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9355556757, | |
39.1911588097 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8538181516, | |
40.1506271643 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7253593075, | |
37.385115769 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7593298923, | |
37.4209273157 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2960237595, | |
40.8249016422 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3491080241, | |
37.8431881679 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.6934356154, | |
37.626306465 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2917125254, | |
37.036056332 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.6599968657, | |
40.0276443174 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3958262905, | |
39.3481267441 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.445787037, | |
38.6703364109 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2516119711, | |
38.6827622992 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3623829552, | |
37.3396499162 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2283551992, | |
38.6123713896 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.5072599667, | |
37.4117094577 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9376392153, | |
40.697617313 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7576500771, | |
38.3931990225 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9483281176, | |
37.3942283511 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2760956353, | |
39.2716153699 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.9846679934, | |
39.1949181113 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.163644195, | |
38.8689363205 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7389481463, | |
38.2253895639 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9854315483, | |
37.2141013815 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5859974625, | |
37.2678944032 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.158705028, | |
39.2820263621 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5251035234, | |
38.0773623591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4524078434, | |
38.8128476139 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.064507187, | |
40.3146483567 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4531531919, | |
40.9516590463 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.0992925439, | |
40.4565517594 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1912326806, | |
40.0942558382 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1663124473, | |
38.1179501843 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0164663854, | |
40.3686508621 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.3198090725, | |
37.3707372763 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.882495239, | |
37.5331247636 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3170259508, | |
37.1043858746 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.26513544, | |
39.9885106457 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5484693899, | |
40.0696376052 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3014488702, | |
40.0153243924 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5892592555, | |
38.7561996922 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5891722432, | |
38.5054676807 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7959531401, | |
39.5508336051 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.2779929375, | |
40.0403274479 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8990818204, | |
38.2918658162 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2087715527, | |
40.4577079035 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.535150073, | |
39.8652850207 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5761056014, | |
37.2028202762 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4704910632, | |
39.5352847055 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.406758439, | |
38.2829856706 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1567612807, | |
37.5500555262 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2847881196, | |
40.2429645798 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2826884128, | |
38.1777430216 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1474678187, | |
37.5113032293 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6162495962, | |
38.7436539988 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1104867583, | |
39.2099359821 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6752578199, | |
37.4322111976 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0364595653, | |
39.2974490933 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2407942485, | |
38.5607284822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0734459722, | |
38.7212975126 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2682324349, | |
40.2741128641 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4468794725, | |
37.748467071 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.263044088, | |
38.7179752742 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5113806886, | |
40.22681825 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.5222599194, | |
40.1237096141 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5931784332, | |
38.5497436272 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8101336246, | |
38.8017344593 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9730710396, | |
40.1887503048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.542303378, | |
37.1670930431 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0127953073, | |
38.7660841311 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.8544709867, | |
39.1889434224 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3595459264, | |
40.0235799081 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6011054694, | |
38.0675227923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7485507277, | |
39.4092333313 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0929346863, | |
40.481272186 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3219178361, | |
38.3699758631 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6721220326, | |
39.0799221198 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.380513366, | |
40.6335716089 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0859957006, | |
39.4434637001 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.2431186105, | |
37.9069847496 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4384799745, | |
38.3819785517 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0876773932, | |
37.6052418484 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3878446815, | |
39.4378576007 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8961069369, | |
39.9971373413 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5321598227, | |
39.4613495639 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9266867366, | |
40.928793006 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1300041911, | |
38.6040350728 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.4537223534, | |
39.1578189207 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5852697301, | |
39.9542818773 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2786509903, | |
38.3375225642 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.6042761723, | |
37.0347396071 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.7608158353, | |
37.1342974262 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0532765671, | |
37.1051041136 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5156484712, | |
37.7336198629 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.543603986, | |
39.9980547069 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5955939199, | |
40.1106143937 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.241016499, | |
39.4832020187 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3431159283, | |
40.5293961915 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3448553345, | |
40.2266994828 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5616270101, | |
38.8406407349 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0388695304, | |
40.3876795481 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8043261955, | |
37.3113702699 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7673820025, | |
40.0014281294 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0524580359, | |
40.1496353512 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9262603292, | |
39.5369180866 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5121267341, | |
38.6240960125 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8274175017, | |
39.0845437 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1330842594, | |
40.1865586685 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1544363513, | |
38.4038136358 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1195430613, | |
38.4241548967 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.2048113062, | |
38.2962141797 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1757489742, | |
37.0758649232 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7400401289, | |
40.6000331901 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8359040228, | |
40.2502571725 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3405863, | |
40.6601612772 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3693848698, | |
37.4774360415 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.7290250905, | |
37.7883253768 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2218159235, | |
38.329037883 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1600846812, | |
40.2067662508 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0474894509, | |
37.6231041115 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2753035179, | |
37.3801166781 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2106794092, | |
37.3774709659 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.0842477819, | |
39.7887177075 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.5433818576, | |
38.0261623327 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.1951023422, | |
39.3977487278 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5488443796, | |
38.5904881233 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7683315165, | |
37.2026568164 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.1207658868, | |
40.4657266448 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.1883239971, | |
40.8685137053 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8122894994, | |
40.965665902 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1515738182, | |
40.6952023703 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1069539272, | |
38.6452460842 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.1259248405, | |
38.4994356024 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.8147349096, | |
39.8445679248 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.6342783675, | |
38.5104034983 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7742785855, | |
40.76748499 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1412677195, | |
39.0784101516 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9019178918, | |
38.4139137383 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1201459887, | |
39.592170088 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.4620689861, | |
37.0861431181 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3791966288, | |
39.2981588441 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3506926772, | |
38.6577978562 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8136181705, | |
37.4806343389 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5935338249, | |
38.5427865733 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.2945009666, | |
40.3531140375 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9636629436, | |
39.5932986533 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.362708569, | |
40.775057599 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6217665644, | |
37.4124789513 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.6560411321, | |
37.0557335675 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.3091544457, | |
37.8836276745 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.1392451558, | |
37.9711183705 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1536780414, | |
37.5057805804 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0573570132, | |
38.4086430449 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0113925122, | |
39.638002272 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.980044159, | |
38.6636133868 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2090020697, | |
38.9410479467 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.7850023883, | |
37.8579431343 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.4737787367, | |
38.9731097435 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8583234493, | |
37.1182962686 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.3891590426, | |
40.1495102684 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7158013981, | |
40.4113389063 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.476409212, | |
37.9426987973 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.1196963451, | |
39.1736794768 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.412349849, | |
40.9128383059 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.780663478, | |
38.1263772192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7581381251, | |
38.0099558534 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0251040905, | |
37.4672843749 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4083027136, | |
37.3858942616 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5650739606, | |
38.8103681923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0543384152, | |
37.4572185192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.9819462327, | |
40.8577383388 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3805686781, | |
39.4460568755 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0526489139, | |
37.734569041 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9013595892, | |
37.2240668982 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.5661209071, | |
38.3035783657 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2601834387, | |
40.9571753696 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.2326499531, | |
38.1204718903 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.5788015396, | |
40.2081221974 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.9829211517, | |
37.3472434671 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.0108210945, | |
37.715028007 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8372244342, | |
37.4734535014 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6449533928, | |
38.1880320253 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.9708140016, | |
38.0301906958 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.5914147539, | |
37.1061549231 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9806837744, | |
38.6880398982 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.5949183979, | |
40.5399309628 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.4419909738, | |
37.8634276953 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7161880417, | |
40.1094394878 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.2819997633, | |
40.8191384513 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.8084318102, | |
39.052999403 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0584623411, | |
41.0023613041 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8457263898, | |
37.8620241605 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.2035262689, | |
39.4527987068 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.4378721373, | |
38.7974898343 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.4097764931, | |
37.4190860135 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-108.0289392869, | |
37.3187645938 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.4422547466, | |
40.404241464 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.3046187983, | |
39.9746051106 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.5534015616, | |
37.673446675 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.0812794429, | |
38.0566140015 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7146207926, | |
38.775311547 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7478070563, | |
39.7753126197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.4596279989, | |
40.9470539399 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.8649919646, | |
37.0092214868 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9286073878, | |
39.6032445849 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.3021149238, | |
37.491735547 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.1102873356, | |
37.5247202657 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.0849261637, | |
37.4650628411 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.7356330933, | |
37.5361502493 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.7984155931, | |
39.1304289311 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.308817398, | |
37.6538620135 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.6561308926, | |
39.1281283797 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-103.9505790097, | |
39.1907875442 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.9893087607, | |
39.7832004084 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7276076947, | |
40.6871859954 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.6304089898, | |
37.9484254181 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.0731094047, | |
39.212231721 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-106.8186293005, | |
38.5079401943 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.7863538252, | |
39.2256903628 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3467705258, | |
39.3207357328 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4260497945, | |
39.1178845254 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.6115686275, | |
37.4352058228 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.7250039498, | |
40.3871589754 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-102.9266821561, | |
40.2808162145 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.3593578316, | |
38.9860944754 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-104.4575044374, | |
39.0019536173 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.8058461677, | |
38.4406533897 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "CO" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-107.3841145639, | |
37.7106567474 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5425899085, | |
37.3007822373 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2131292698, | |
37.9099389379 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9203438805, | |
37.1465531098 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8731508997, | |
37.1134963958 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1356213313, | |
40.1402202124 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8435717014, | |
38.0623921705 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3767375834, | |
37.4673611772 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0056015454, | |
38.5268376136 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3143401702, | |
37.5453659923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8614581616, | |
39.402607651 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1042380568, | |
39.4255547082 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5011575601, | |
40.0444817856 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9572328798, | |
37.3255484661 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7117348969, | |
41.117479524 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4232998571, | |
40.9121115334 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.312261893, | |
38.8800924022 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2828716238, | |
41.8213036425 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1306804408, | |
38.7203402149 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8258158669, | |
39.7362326303 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4018868462, | |
39.7662938458 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8511589942, | |
39.1262042754 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6272898886, | |
38.2150361271 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2203062409, | |
40.2804036906 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8175506845, | |
39.4584725277 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1380251982, | |
37.8853793726 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6351331055, | |
38.4474883445 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0448109804, | |
39.7636346944 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.569066132, | |
38.4987084938 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4797771317, | |
40.2327211325 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9213792163, | |
39.0646451634 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1478896978, | |
40.7040552271 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5766916461, | |
38.2413881776 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1732715485, | |
40.8478639426 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2469042324, | |
38.2439414457 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7287337375, | |
40.8544589873 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7758161959, | |
37.4540572444 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6249596085, | |
41.5293194468 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6000897617, | |
39.2544595189 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2663891469, | |
39.4417523503 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6624000894, | |
40.7199501084 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8654497713, | |
37.5395845091 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0794093527, | |
37.0900520515 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3486089291, | |
39.9210038733 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3544536885, | |
39.8988398648 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6481832669, | |
38.0601894858 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5654533223, | |
38.0561674497 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3442612591, | |
37.2672756603 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5600641934, | |
40.4866944372 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5631998781, | |
41.6492611601 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3107931675, | |
37.2940507236 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1487421662, | |
38.7270022737 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.25082036, | |
38.9827712009 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2577755302, | |
37.4083162359 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.237298723, | |
38.9482845232 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6121468864, | |
38.1594113381 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4522131986, | |
41.3558058966 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6054988178, | |
41.5916935145 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3741401164, | |
38.3736159605 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8141620838, | |
38.1974182989 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7502603457, | |
41.5763266823 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4432121781, | |
39.3575370719 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7260291916, | |
37.6649382192 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5415619414, | |
37.0720932162 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8806124591, | |
37.0474813304 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4308287979, | |
40.7468491352 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8848423955, | |
37.102236288 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8825297417, | |
39.1019744663 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9848383059, | |
38.2291013571 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8996626828, | |
40.584952059 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5096476109, | |
38.2134788214 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9517292239, | |
39.5332410368 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3665986624, | |
38.5853425823 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.606735712, | |
38.7975706821 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5063784043, | |
40.8694956203 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0866843422, | |
39.7553606101 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.317504607, | |
38.6099400307 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6837165561, | |
37.3560487311 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3779770482, | |
39.2011303108 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4167167332, | |
39.6602376472 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1966254133, | |
37.5080288805 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9826754952, | |
39.6802715859 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6887069229, | |
39.8194725199 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3182657477, | |
41.4020380778 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8366096836, | |
40.9534812286 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4917776954, | |
38.7072516596 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8708088992, | |
37.2026623784 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3040429179, | |
37.8940283249 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9810871642, | |
38.6591521404 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0495966483, | |
39.4545372592 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5817075109, | |
37.6218298858 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.2073856064, | |
38.0505977331 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3502536388, | |
39.8816447132 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0317501524, | |
38.2004651768 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6769398422, | |
41.4879539479 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9539342076, | |
41.6333024424 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3295750745, | |
39.7627699194 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8032252331, | |
39.8930676973 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3515113927, | |
41.9268437125 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0190316855, | |
37.9482919062 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9636690327, | |
37.9618369281 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4466694387, | |
40.0816355453 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4642549311, | |
38.3981108559 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5569502211, | |
38.5661645922 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7498299638, | |
40.4565019537 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3727074121, | |
40.2017146757 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8302324794, | |
38.4342961605 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.533183832, | |
37.4324381662 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8627844839, | |
39.8583769715 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9634448902, | |
39.5729485243 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2779612609, | |
41.3656357894 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4585145065, | |
38.5087482073 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.151666322, | |
40.0594321273 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9534126418, | |
40.0052475469 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7372920128, | |
41.8946684506 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9386505443, | |
41.1080460846 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2133418499, | |
37.0831875291 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0157869167, | |
38.6482260939 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4238686674, | |
39.8897803783 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0898142287, | |
37.9164949222 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6413268368, | |
39.5048863123 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7279159099, | |
39.2674535825 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0861830958, | |
39.4957675549 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5657385865, | |
38.5499699071 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1883069451, | |
37.2363261361 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1145820079, | |
37.0065736844 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5781237118, | |
39.512978893 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5949991267, | |
40.7916135645 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0462063037, | |
38.4582090832 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7744654951, | |
37.6609240714 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4547996104, | |
40.3625053263 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8970885353, | |
40.9292812422 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9163863801, | |
38.5208181204 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5536560167, | |
38.6377514727 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8405636882, | |
39.5159266714 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0833895615, | |
39.4680997652 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6194657354, | |
38.2568433309 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.477591132, | |
40.1272244511 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6377425793, | |
40.5326194161 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1736135504, | |
39.4599114059 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7579645091, | |
37.0070147242 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2372741359, | |
41.4921111388 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1403811842, | |
40.7011228723 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4176583415, | |
39.1507140409 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9245576953, | |
41.1087784407 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8388840306, | |
40.3350382116 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.163661586, | |
38.4016915987 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9560326402, | |
39.4161684961 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.915210429, | |
37.0246355247 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1289849034, | |
41.5190539919 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0125408157, | |
39.4169107284 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5402088963, | |
37.5097465282 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3257272325, | |
39.3153084626 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9958279501, | |
39.7071073163 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3612047884, | |
41.1408212304 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.346937667, | |
39.1780538923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2413399409, | |
39.6547395923 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.315841362, | |
41.2601378693 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3162850287, | |
38.031002383 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5615434481, | |
38.4923311674 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8324823568, | |
40.6468047373 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3150751951, | |
41.8726337938 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6869601974, | |
41.0013686831 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3651872425, | |
38.1708800248 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2210787029, | |
39.3888985914 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.784518045, | |
37.1843266251 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5624748361, | |
38.4901058376 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7387356596, | |
38.5641258952 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3436919594, | |
39.6371464269 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7924227494, | |
37.785869852 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8665973843, | |
41.0941661458 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8065732281, | |
38.4349628307 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7394555008, | |
40.472565822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1396882464, | |
38.0047329866 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9196991514, | |
39.8151900744 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8109907001, | |
40.1237892786 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8762779051, | |
39.278727452 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9066111838, | |
39.342956471 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0547350418, | |
37.0197328473 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5466671716, | |
39.9892179204 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7063044847, | |
37.0582103866 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7851573954, | |
40.8997277346 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9127890348, | |
38.4229559058 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7670909838, | |
39.8190307135 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0617182748, | |
37.3033522795 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.789082105, | |
38.7672675649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7295835228, | |
39.2613247778 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4792704273, | |
38.2935016565 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5254174028, | |
37.3507266483 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0532486442, | |
40.8677038271 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3706087755, | |
41.9397955121 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8537224908, | |
41.9339783403 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4373954939, | |
39.2738414666 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3118046684, | |
39.464271333 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2744900411, | |
40.2376284805 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.641766687, | |
37.1827212857 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4499135175, | |
37.9441164359 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.04279168, | |
40.5523939575 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1804249389, | |
37.3936893048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5289206169, | |
41.5130287511 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.46340765, | |
39.3462697502 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7823964551, | |
37.3210093651 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4877387023, | |
38.3183254523 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2091699934, | |
37.6998514567 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9510728878, | |
38.6065930168 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0889839099, | |
38.568908571 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0883214306, | |
38.300670524 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3049142794, | |
37.3599161591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3085314972, | |
40.4826083004 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6691636885, | |
40.4703713452 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0553180321, | |
39.855709022 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5498031207, | |
41.3914953329 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1768728178, | |
39.9314849763 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4597093372, | |
39.774378921 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4881038523, | |
40.9377124441 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0051315176, | |
40.519546677 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5171456323, | |
38.9928317273 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6966903051, | |
38.1611054884 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1851176823, | |
37.8457746404 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1339198646, | |
41.9582785897 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9187567868, | |
39.250940352 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3936808014, | |
39.4433610268 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5985693515, | |
40.4406487559 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9138299231, | |
41.5633739907 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8920025816, | |
40.223183176 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0287080096, | |
37.3576194591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0335819618, | |
41.2961558124 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9873298027, | |
40.9675900242 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7948264322, | |
39.3129113677 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0363406296, | |
40.3954248015 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.829082569, | |
40.7572253461 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8217453151, | |
37.1134576712 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2754855945, | |
41.3535998264 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8357454323, | |
37.8137458519 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8396928131, | |
37.0645670194 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7507532122, | |
41.8776033089 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.582119793, | |
39.0018908047 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8644011819, | |
37.4845815381 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.26959188, | |
39.8105101086 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.942564377, | |
40.8775804977 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0904785778, | |
40.043105423 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3623507274, | |
38.0699781591 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5581508988, | |
40.1574790993 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6011390996, | |
37.6684073888 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0605110688, | |
38.2391316768 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.0805492626, | |
38.6927241321 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4927771101, | |
41.1451531021 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8062633471, | |
39.6047061548 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3825438906, | |
39.2462482664 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8434690837, | |
39.833401198 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3408652418, | |
40.5900112757 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.567809081, | |
37.9552145269 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7692676703, | |
38.5669196724 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8695925231, | |
38.143258103 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.2001937771, | |
40.6695855551 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5563200508, | |
40.3481466512 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7536545637, | |
39.1435653223 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8652914104, | |
40.7234740714 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6699860779, | |
37.6743009552 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6813388247, | |
38.813922032 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6811192323, | |
37.9749014872 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.328212958, | |
39.1806389072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5265723215, | |
38.1399987865 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1374673368, | |
40.2106903985 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1167050297, | |
37.899388968 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0016397284, | |
39.482663622 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2594319124, | |
38.9950105369 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1865454786, | |
39.2721505361 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7777129821, | |
37.8438232284 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.4107189737, | |
38.5781697296 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6728622442, | |
40.3517113502 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7494620055, | |
38.1599000983 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1044495549, | |
38.4214519538 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6498816212, | |
38.5375453419 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.810383167, | |
39.1057315879 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4791801902, | |
37.2090625696 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3891792561, | |
40.5793551748 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8149036479, | |
39.8441437048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.187007742, | |
40.8068476034 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3212090027, | |
40.4351257445 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3442163912, | |
40.4751739781 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5028948183, | |
37.8187884542 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6900165221, | |
38.5048293763 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7388115194, | |
39.5281858396 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.0689966344, | |
37.2842700674 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8378583844, | |
40.3703103001 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4260822429, | |
38.5551379504 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7337488801, | |
40.1830320577 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4535685575, | |
41.24466509 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5968897171, | |
37.016163717 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6084927606, | |
38.2598648436 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7195784858, | |
40.5340311229 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1533193945, | |
41.13396985 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.18226226, | |
39.2324189797 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1476380632, | |
39.8350649603 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9090440919, | |
37.6719329398 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5561171908, | |
39.6053601289 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5274361103, | |
38.0236844386 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6010925643, | |
39.2607494068 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1592546869, | |
38.2167494997 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.305245, | |
37.5969517895 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-114.0276687516, | |
39.6864570178 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.389354488, | |
39.8071734353 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7900929255, | |
39.7764591131 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.8253524193, | |
41.4275913699 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0119924676, | |
39.6655588035 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6865913127, | |
40.9553517619 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5647748047, | |
37.6489780435 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1461032386, | |
39.3978164722 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.387266991, | |
40.4563757719 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4331670295, | |
39.0871384202 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8359844722, | |
39.5573472603 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1105351836, | |
40.731726077 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0957012078, | |
37.5127565579 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.571061935, | |
37.705965875 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3964245203, | |
37.9064982966 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.2948773807, | |
37.9795047786 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2303182881, | |
38.6397304556 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7010959314, | |
39.3169323363 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.738985669, | |
38.4892304203 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4845337694, | |
40.7400193464 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1929115086, | |
40.8531813387 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1695631003, | |
38.0025572816 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7133211905, | |
37.4164616098 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.063776468, | |
40.3993050674 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4355548734, | |
41.6187435649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5462818144, | |
37.1703041072 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5875599475, | |
38.48817089 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6044314269, | |
39.6043297808 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7862515389, | |
40.3159198084 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6819324571, | |
38.6388214354 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7411056515, | |
38.2052342126 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9256548682, | |
40.6700947322 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5486891345, | |
41.8391569974 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2511952138, | |
38.3473706798 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7954067332, | |
40.0684549488 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3855591481, | |
38.060260764 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3674455096, | |
38.5120911453 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3914587021, | |
37.9425325468 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3623067036, | |
37.2733806799 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8144399003, | |
38.0806869317 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5294488581, | |
37.4752675822 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4068598804, | |
37.2056505649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6399305338, | |
38.2828003981 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.882956316, | |
40.1815304491 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3017508301, | |
41.2616231845 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.156337507, | |
40.2916950336 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0682981428, | |
37.0392448595 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6469492799, | |
40.6918920892 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8571827988, | |
39.889421421 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3045079249, | |
39.1750671973 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2354645644, | |
38.9906584235 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3657754259, | |
41.5903539413 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6750805576, | |
39.1592613458 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4157658635, | |
41.4592284322 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.528636679, | |
37.4218816025 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3479439819, | |
37.4519627306 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8496040623, | |
39.0196996905 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5227068039, | |
37.6258125033 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1570170707, | |
39.4458529571 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9144659915, | |
38.4639188691 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8273682346, | |
38.2965975197 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3133680861, | |
37.7022779894 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3259674911, | |
38.0476323223 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2774846095, | |
41.9007182998 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2367729125, | |
40.4457868377 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3945064641, | |
40.8702401033 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5507737623, | |
39.235981922 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1596163875, | |
40.4630035114 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.643966983, | |
37.0676984226 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7265621879, | |
41.175001878 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9339789071, | |
41.4634797486 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8091683747, | |
37.8215641045 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4713505917, | |
40.4163262154 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9391488348, | |
37.6594944622 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.2151015305, | |
40.4337390001 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5749238192, | |
37.3424014237 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.031327168, | |
41.2687359929 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8067745899, | |
41.5324437898 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5196609753, | |
40.4600130499 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.591480594, | |
41.7485231152 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8233931733, | |
37.0822215929 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1007776104, | |
39.5524001348 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2480933832, | |
40.5615226102 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.3454216316, | |
37.9391595659 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4265094759, | |
37.6923656734 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0616356247, | |
38.776223682 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6584927414, | |
37.0353391858 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5260537612, | |
40.246381877 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7376161136, | |
38.9639417201 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3612366902, | |
37.8133917564 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2325413672, | |
37.4144254456 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1304777274, | |
39.0011388089 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.7211782017, | |
37.4535161765 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6852850362, | |
39.4121223984 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9432855132, | |
37.0257779547 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7648398057, | |
37.6627684958 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1570265019, | |
40.3973273626 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.7312294906, | |
38.5521569464 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4670253063, | |
38.7233754752 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1516694878, | |
38.7352933048 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8165667059, | |
40.9309306243 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2843899401, | |
37.3398888781 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4452375206, | |
37.2318278505 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7957335223, | |
38.1724315734 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1732169321, | |
39.8409688701 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3982869365, | |
37.0379323863 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3691633654, | |
37.2522534732 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.6512283126, | |
41.3111137471 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1596612198, | |
41.2787691815 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.1146275147, | |
40.2243085477 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6488143169, | |
39.8031590955 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.290557395, | |
37.5775883894 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8659296946, | |
37.1422093479 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0445539186, | |
41.2733426876 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1129803444, | |
38.050658612 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1964557489, | |
41.4500127901 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7146375647, | |
40.9542114103 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0896661516, | |
38.341432715 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1253038767, | |
37.5479656032 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8651482168, | |
37.8147706251 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8370350321, | |
38.2658338372 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.305507419, | |
38.4650448991 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7732732338, | |
38.871183642 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5884041795, | |
41.2577311918 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.3033078205, | |
39.0478079148 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8449953634, | |
37.4492075492 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5540061694, | |
39.8292810398 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8235828715, | |
37.6765986087 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5517261045, | |
40.0284746155 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.5293985806, | |
38.5740633093 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5357393521, | |
37.7374344588 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.4556398519, | |
39.1920088974 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1404166592, | |
38.5572379648 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6869952502, | |
39.8164413983 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1853266338, | |
40.2012514073 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.3715506476, | |
39.2353740115 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7640731825, | |
38.8317131304 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6871605947, | |
39.4784103655 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4210708086, | |
38.91504787 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9452782835, | |
39.590818911 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7921068816, | |
38.7055911913 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5133269078, | |
38.2765633897 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5270380288, | |
39.7317945442 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.8830585656, | |
39.4860319649 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.2705145973, | |
39.4860196952 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0020479339, | |
39.3884245102 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.1795453768, | |
37.978292302 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3396541375, | |
37.6874909685 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0513636791, | |
37.6376167266 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4381191801, | |
37.9314263532 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.9679403274, | |
37.147715326 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5717668637, | |
40.9072111569 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.472832441, | |
40.4599617083 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.2356481256, | |
39.1187126909 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3005943354, | |
40.9874131092 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9918522041, | |
40.2472088189 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.4457994366, | |
41.0608957985 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.5343632312, | |
37.174053332 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.9109457002, | |
39.9904290109 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.55096434, | |
37.883209931 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.0708152182, | |
37.8717111444 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.8301451606, | |
37.8828254123 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.6813244383, | |
40.461818049 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3282162536, | |
39.2128313843 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.5044361972, | |
39.0826990002 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0462717535, | |
38.1601297133 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8251610529, | |
40.9228217772 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9847565035, | |
40.5019811381 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7045999461, | |
40.5279593187 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.0551811511, | |
39.6062821473 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.7747354918, | |
41.0599130841 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.8363357423, | |
39.0023200518 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5364670036, | |
38.9538651599 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.7504980187, | |
37.0495543055 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5759172908, | |
40.565295214 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.3207403701, | |
38.6630819979 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.7806332719, | |
38.4484958995 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.1027852444, | |
37.9329388883 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.9969786965, | |
38.1959130459 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.4872973739, | |
38.7590761413 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.92079431, | |
40.9111998552 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.1875296591, | |
37.8521711305 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.3207945469, | |
39.1588440474 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.6537542004, | |
40.1338806189 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.801128039, | |
41.0925683311 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.2461108092, | |
37.0263030076 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.6359016763, | |
40.2963461217 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.9639571507, | |
41.3418894133 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.9606595554, | |
38.9778841602 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.5898822666, | |
41.0489880658 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-109.6730313566, | |
40.8198295582 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.5231878981, | |
41.1676006818 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.873633122, | |
38.9587641168 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1298886614, | |
39.1129317584 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.2354766912, | |
39.080428808 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.0135632325, | |
37.200716758 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-112.1097443982, | |
37.2137285833 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-110.53648022, | |
38.391046458 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-111.4712389983, | |
39.8388761571 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"state": "UT" | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-113.8995659597, | |
38.8749213447 | |
] | |
} | |
} | |
] | |
} |