Skip to content

Instantly share code, notes, and snippets.

@voidfiles
Forked from mbostock/.block
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voidfiles/9998223 to your computer and use it in GitHub Desktop.
Save voidfiles/9998223 to your computer and use it in GitHub Desktop.

This choropleth encodes # of hate groups with data from the Southern Poverty Law Center.

{"34009": 2, "34003": 2, "34001": 5, "34007": 1, "34005": 3, "17043": 1, "04013": 1, "12073": 1, "28081": 1, "13021": 1, "50009": 1, "12031": 1, "12097": 1, "35013": 1, "29051": 1, "16001": 1, "42129": 1, "36061": 3, "53033": 1, "13009": 1, "42121": 1, "19153": 1, "48453": 1, "48221": 1, "12105": 1, "22043": 1, "40101": 1, "06107": 1, "21073": 1, "06067": 3, "55051": 1, "37183": 1, "51760": 2, "35006": 1, "42043": 1, "26163": 1, "33007": 1, "35049": 1, "25013": 1, "54039": 2, "13067": 1, "06071": 1, "55079": 1, "38035": 1, "39049": 3, "34035": 1, "22085": 2, "34031": 1, "42101": 1, "50023": 1, "05119": 1, "34039": 1, "34019": 1, "21111": 1, "30029": 1, "12081": 1, "25009": 1, "34017": 2, "04003": 1, "54061": 1, "18109": 1, "32003": 3, "51019": 1, "11001": 1, "51013": 1, "51059": 1, "12001": 1, "51091": 1, "32510": 1, "12083": 1, "16017": 1, "40073": 1, "34029": 2, "12123": 1}
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.counties {
fill: none;
stroke: #eee;
}
.states {
fill: none;
stroke: rgb(198,219,239);
stroke-linejoin: round;
}
path {
fill: rgb(247,251,255);
}
rect {
fill-opacity: .1;
stroke: #000;
shape-rendering: crispEdges;
}
rect:hover {
stroke: red;
}
text {
pointer-events: none;
text-anchor: middle;
font: 12px sans-serif;
text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}
text.mouseenter,
text.mouseleave {
fill: red;
font-weight: bold;
}
.q0-9 { fill:rgb(247,251,255); }
.q1-9 { fill:rgb(222,235,247); }
.q2-9 { fill:rgb(198,219,239); }
.q0-9 { fill:rgb(158,202,225); }
.q1-9 { fill:rgb(107,174,214); }
.q2-9 { fill:rgb(66,146,198); }
.q3-9 { fill:rgb(33,113,181); }
.q4-9 { fill:rgb(8,81,156); }
.q5-9 { fill:rgb(8,48,107); }
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>
<script>
var width = 960,
height = 600;
var rateById = d3.map();
var quantize = d3.scale.quantize()
.domain([0, 5])
.range(d3.range(6).map(function(i) { return "q" + i + "-9"; }));
var projection = d3.geo.albersUsa()
.scale(1280)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// .defer(d3.json, "UScounties.topojson")
queue()
.defer(d3.json, "us.json")
.defer(d3.json, "fips_to_hategroup_count.json")
.defer(d3.json, "splc_data.json").await(ready);
function flash(name, splc_data) {
return function() {
var fips_code = d3.select(this).attr('data-fips-code');
var groups = _.filter(splc_data, function (d) {
return +d.fips === +fips_code;
});
console.log(groups);
// d3.select(this).append("text")
// .attr("class", name)
// .attr("transform", "translate(" + d3.mouse(this) + ")")
// .attr("dy", dy)
// .text(name)
// .transition()
// .duration(1500)
// .style("opacity", 0)
// .remove();
};
}
function ready (error, us, fips, splc_data) {
for (var i in fips) {
rateById.set(i, +fips[i]);
}
svg.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.enter().append("path")
.attr("class", function(d) { return quantize(rateById.get(d.id)); })
.attr("data-fips-code", function (d) {return d.id; })
.attr("d", path)
.on("mouseenter", flash("mouseenter", splc_data))
.on("mouseleave", flash("mouseleave", splc_data))
svg.append("path")
.datum(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; }))
.attr("class", "states")
.attr("d", path);
}
d3.select(self.frameElement).style("height", height + "px");
</script>
[{"hatemap_id": "6170", "city": "Santa Fe", "group_type_default_id": "744", "state_name": "New Mexico", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-legend.gif", "group_name": "11th Hour Remnant Messenger", "group_type_url": "/get-informed/intelligence-files/ideology/christian-identity", "group_nid": "", "fips": "35049", "group_url": "", "state_initials": "NM", "lat": "35.686600", "group_type_name": "Christian Identity", "lng": "-105.937400", "group_id": "29260", "location_id": "29260", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-small.png"}, {"hatemap_id": "6170", "city": "New York", "group_type_default_id": "3502", "state_name": "New York", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-legend_0.gif", "group_name": "9/11 Christian Center at Ground Zero", "group_type_url": "/get-informed/intelligence-files/ideology/anti-muslim", "group_nid": "", "fips": "34017", "group_url": "", "state_initials": "NY", "lat": "40.706172", "group_type_name": "Anti-Muslim", "lng": "-74.008596", "group_id": "29101", "location_id": "29101", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-small_0.png"}, {"hatemap_id": "6170", "city": "Las Vegas", "group_type_default_id": "105", "state_name": "Nevada", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-legend.gif", "group_name": "a2z Publications", "group_type_url": "/get-informed/intelligence-files/ideology/general-hate", "group_nid": "", "fips": "32003", "group_url": "", "state_initials": "NV", "lat": "36.175300", "group_type_name": "General Hate", "lng": "-115.136400", "group_id": "29164", "location_id": "29164", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-small.png"}, {"hatemap_id": "6170", "city": "Springfield", "group_type_default_id": "930", "state_name": "Massachusetts", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-legend.gif", "group_name": "Abiding Truth Ministries", "group_type_url": "/get-informed/intelligence-files/ideology/anti-gay", "group_nid": "", "fips": "25013", "group_url": "", "state_initials": "MA", "lat": "42.099150", "group_type_name": "Anti-LGBT", "lng": "-72.588100", "group_id": "29052", "location_id": "29052", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-small.png"}, {"hatemap_id": "6170", "city": "Morgantown", "group_type_default_id": "744", "state_name": "Indiana", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-legend.gif", "group_name": "Abundant Life Fellowship", "group_type_url": "/get-informed/intelligence-files/ideology/christian-identity", "group_nid": "", "fips": "18109", "group_url": "", "state_initials": "IN", "lat": "39.367152", "group_type_name": "Christian Identity", "lng": "-86.283450", "group_id": "29257", "location_id": "29257", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-small.png"}, {"hatemap_id": "6170", "city": "Wildwood", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "group_url": "", "state_initials": "NJ", "lat": "38.985715", "group_type_name": "Racist Skinhead", "lng": "-74.829413", "group_id": "29645", "location_id": "29645", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Marmora", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34009", "group_url": "", "state_initials": "NJ", "lat": "39.265074", "group_type_name": "Racist Skinhead", "lng": "-74.660984", "group_id": "29646", "location_id": "29646", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Woodbine", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34009", "group_url": "", "state_initials": "NJ", "lat": "39.283572", "group_type_name": "Racist Skinhead", "lng": "-74.787158", "group_id": "29647", "location_id": "29647", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Somers Point", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34001", "group_url": "", "state_initials": "NJ", "lat": "39.315729", "group_type_name": "Racist Skinhead", "lng": "-74.595012", "group_id": "29648", "location_id": "29648", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Atlantic City", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34001", "group_url": "", "state_initials": "NJ", "lat": "39.394661", "group_type_name": "Racist Skinhead", "lng": "-74.517904", "group_id": "29649", "location_id": "29649", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Brigantine", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "group_url": "", "state_initials": "NJ", "lat": "39.407459", "group_type_name": "Racist Skinhead", "lng": "-74.376520", "group_id": "29650", "location_id": "29650", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Absecon", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34001", "group_url": "", "state_initials": "NJ", "lat": "39.417806", "group_type_name": "Racist Skinhead", "lng": "-74.502952", "group_id": "29651", "location_id": "29651", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Mays Landing", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34001", "group_url": "", "state_initials": "NJ", "lat": "39.470248", "group_type_name": "Racist Skinhead", "lng": "-74.729667", "group_id": "29652", "location_id": "29652", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Galloway", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34001", "group_url": "", "state_initials": "NJ", "lat": "39.485979", "group_type_name": "Racist Skinhead", "lng": "-74.453728", "group_id": "29653", "location_id": "29653", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Little Egg Harbor City", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34029", "group_url": "", "state_initials": "NJ", "lat": "39.621520", "group_type_name": "Racist Skinhead", "lng": "-74.386263", "group_id": "29654", "location_id": "29654", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Pine Hill", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34007", "group_url": "", "state_initials": "NJ", "lat": "39.804754", "group_type_name": "Racist Skinhead", "lng": "-75.006042", "group_id": "29655", "location_id": "29655", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Marlton", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34005", "group_url": "", "state_initials": "NJ", "lat": "39.850583", "group_type_name": "Racist Skinhead", "lng": "-74.908140", "group_id": "29656", "location_id": "29656", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Browns Mills", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34005", "group_url": "", "state_initials": "NJ", "lat": "39.941818", "group_type_name": "Racist Skinhead", "lng": "-74.550074", "group_id": "29657", "location_id": "29657", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Brick", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "AC Skins", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34029", "group_url": "", "state_initials": "NJ", "lat": "40.045766", "group_type_name": "Racist Skinhead", "lng": "-74.109236", "group_id": "29658", "location_id": "29658", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Birmingham", "group_type_default_id": "113", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "Advanced White Society", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "", "fips": "34005", "group_url": "", "state_initials": "NJ", "lat": "39.975160", "group_type_name": "White Nationalist", "lng": "-74.714363", "group_id": "29827", "location_id": "29827", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Shady Grove", "group_type_default_id": "105", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-legend.gif", "group_name": "Agenda21Today", "group_type_url": "/get-informed/intelligence-files/ideology/general-hate", "group_nid": "", "fips": "12123", "group_url": "", "state_initials": "FL", "lat": "30.268424", "group_type_name": "General Hate", "lng": "-83.615742", "group_id": "29205", "location_id": "29205", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-small.png"}, {"hatemap_id": "6170", "city": "Berino", "group_type_default_id": "3502", "state_name": "New Mexico", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-legend_0.gif", "group_name": "Aggressive Christianity", "group_type_url": "/get-informed/intelligence-files/ideology/anti-muslim", "group_nid": "", "fips": "35013", "group_url": "", "state_initials": "NM", "lat": "32.065092", "group_type_name": "Anti-Muslim", "lng": "-106.613346", "group_id": "29108", "location_id": "29108", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-small_0.png"}, {"hatemap_id": "6170", "city": "Fence Lake", "group_type_default_id": "3502", "state_name": "New Mexico", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-legend_0.gif", "group_name": "Aggressive Christianity", "group_type_url": "/get-informed/intelligence-files/ideology/anti-muslim", "group_nid": "", "fips": "35006", "group_url": "", "state_initials": "NM", "lat": "34.769431", "group_type_name": "Anti-Muslim", "lng": "-108.756878", "group_id": "29109", "location_id": "29109", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-small_0.png"}, {"hatemap_id": "6170", "city": "Macon", "group_type_default_id": "950", "state_name": "Georgia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/black-separatist-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/black-separatist-legend_0.gif", "group_name": "All Eyes On Egypt Bookstore", "group_type_url": "/get-informed/intelligence-files/ideology/black-separatist", "group_nid": "", "fips": "13021", "group_url": "", "state_initials": "GA", "lat": "32.820700", "group_type_name": "Black Separatist", "lng": "-83.632500", "group_id": "29041", "location_id": "29041", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/black-separatist-small_0.png"}, {"hatemap_id": "6170", "city": "Milledgeville", "group_type_default_id": "950", "state_name": "Georgia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/black-separatist-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/black-separatist-legend_0.gif", "group_name": "All Eyes on Egypt Bookstore", "group_type_url": "/get-informed/intelligence-files/ideology/black-separatist", "group_nid": "", "fips": "13009", "group_url": "", "state_initials": "GA", "lat": "33.081461", "group_type_name": "Black Separatist", "lng": "-83.208516", "group_id": "29042", "location_id": "29042", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/black-separatist-small_0.png"}, {"hatemap_id": "6170", "city": "Pleasant Unity", "group_type_default_id": "943", "state_name": "Pennsylvania", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/radical-traditional-catholicism-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/radical-traditional-catholicism-legend_0.gif", "group_name": "Alliance for Catholic Tradition", "group_type_url": "/get-informed/intelligence-files/ideology/radical-traditional-catholicism", "group_nid": "", "fips": "42129", "group_url": "", "state_initials": "PA", "lat": "40.243175", "group_type_name": "Radical Traditional Catholicism", "lng": "-79.463422", "group_id": "29220", "location_id": "29220", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/radical-traditional-catholicism-small_0.png"}, {"hatemap_id": "6170", "city": "Whitefish", "group_type_default_id": "113", "state_name": "Montana", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "Alternative Right", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "", "fips": "30029", "group_url": "", "state_initials": "MT", "lat": "48.516644", "group_type_name": "White Nationalist", "lng": "-114.552964", "group_id": "29819", "location_id": "29819", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Sandpoint", "group_type_default_id": "744", "state_name": "Idaho", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-legend.gif", "group_name": "America&#039;s Promise Ministries", "group_type_url": "/get-informed/intelligence-files/ideology/christian-identity", "group_nid": "773", "fips": "16017", "group_url": "/get-informed/intelligence-files/groups/americas-promise-ministries", "state_initials": "ID", "lat": "48.330479", "group_type_name": "Christian Identity", "lng": "-116.455864", "group_id": "29239", "location_id": "29239", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/christian-identity-small.png"}, {"hatemap_id": "6170", "city": "Sierra Vista", "group_type_default_id": "940", "state_name": "Arizona", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-legend.gif", "group_name": "American Border Patrol", "group_type_url": "/get-informed/intelligence-files/ideology/anti-immigrant", "group_nid": "634", "fips": "04003", "group_url": "/get-informed/intelligence-files/groups/american-border-patrol/american-patrol", "state_initials": "AZ", "lat": "31.586057", "group_type_name": "Anti-Immigrant", "lng": "-110.172918", "group_id": "29090", "location_id": "29090", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-small.png"}, {"hatemap_id": "6170", "city": "Gainesville", "group_type_default_id": "930", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-legend.gif", "group_name": "American College of Pediatricians", "group_type_url": "/get-informed/intelligence-files/ideology/anti-gay", "group_nid": "", "fips": "12001", "group_url": "", "state_initials": "FL", "lat": "29.647800", "group_type_name": "Anti-LGBT", "lng": "-82.309600", "group_id": "29076", "location_id": "29076", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-small.png"}, {"hatemap_id": "6170", "city": "Tupelo", "group_type_default_id": "930", "state_name": "Mississippi", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-legend.gif", "group_name": "American Family Association", "group_type_url": "/get-informed/intelligence-files/ideology/anti-gay", "group_nid": "", "fips": "28081", "group_url": "", "state_initials": "MS", "lat": "34.257700", "group_type_name": "Anti-LGBT", "lng": "-88.703400", "group_id": "29057", "location_id": "29057", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-small.png"}, {"hatemap_id": "6170", "city": "Franklin", "group_type_default_id": "930", "state_name": "Pennsylvania", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-legend.gif", "group_name": "American Family Association", "group_type_url": "/get-informed/intelligence-files/ideology/anti-gay", "group_nid": "", "fips": "42121", "group_url": "", "state_initials": "PA", "lat": "41.429237", "group_type_name": "Anti-LGBT", "lng": "-79.826132", "group_id": "29070", "location_id": "29070", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-small.png"}, {"hatemap_id": "6170", "city": "Washington", "group_type_default_id": "105", "state_name": "District of Columbia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-legend.gif", "group_name": "American Free Press", "group_type_url": "/get-informed/intelligence-files/ideology/general-hate", "group_nid": "", "fips": "11001", "group_url": "", "state_initials": "DC", "lat": "38.877752", "group_type_name": "General Hate", "lng": "-76.986546", "group_id": "29145", "location_id": "29145", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-small.png"}, {"hatemap_id": "6170", "city": "New York", "group_type_default_id": "3502", "state_name": "New York", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-large_0.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-legend_0.gif", "group_name": "American Freedom Defense Initiative", "group_type_url": "/get-informed/intelligence-files/ideology/anti-muslim", "group_nid": "", "fips": "36061", "group_url": "", "state_initials": "NY", "lat": "40.773526", "group_type_name": "Anti-Muslim", "lng": "-73.980067", "group_id": "29110", "location_id": "29110", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-muslim-small_0.png"}, {"hatemap_id": "6170", "city": "Lakewood Ranch", "group_type_default_id": "113", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "12081", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "FL", "lat": "27.444950", "group_type_name": "White Nationalist", "lng": "-82.386640", "group_id": "29802", "location_id": "29802", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Jacksonville", "group_type_default_id": "113", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "12031", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "FL", "lat": "30.331800", "group_type_name": "White Nationalist", "lng": "-81.635500", "group_id": "29803", "location_id": "29803", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Granbury", "group_type_default_id": "113", "state_name": "Texas", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "48221", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "TX", "lat": "32.411331", "group_type_name": "White Nationalist", "lng": "-97.803952", "group_id": "29804", "location_id": "29804", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Los Angeles", "group_type_default_id": "113", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "CA", "lat": "34.052456", "group_type_name": "White Nationalist", "lng": "-118.255309", "group_id": "29805", "location_id": "29805", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Las Vegas", "group_type_default_id": "113", "state_name": "Nevada", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "32003", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "NV", "lat": "36.142384", "group_type_name": "White Nationalist", "lng": "-115.279341", "group_id": "29806", "location_id": "29806", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Maidsville", "group_type_default_id": "113", "state_name": "West Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "54061", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "WV", "lat": "39.693654", "group_type_name": "White Nationalist", "lng": "-79.985124", "group_id": "29807", "location_id": "29807", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "New York", "group_type_default_id": "113", "state_name": "New York", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "36061", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "NY", "lat": "40.798345", "group_type_name": "White Nationalist", "lng": "-73.963158", "group_id": "29808", "location_id": "29808", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Statewide", "group_type_default_id": "113", "state_name": "Wisconsin", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "55079", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "WI", "lat": "43.003590", "group_type_name": "White Nationalist", "lng": "-87.943328", "group_id": "29809", "location_id": "29809", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Grand Forks", "group_type_default_id": "113", "state_name": "North Dakota", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Freedom Party", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "2963", "fips": "38035", "group_url": "/get-informed/intelligence-files/groups/american-freedom-party", "state_initials": "ND", "lat": "47.925500", "group_type_name": "White Nationalist", "lng": "-97.032500", "group_id": "29810", "location_id": "29810", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "St. Cloud", "group_type_default_id": "884", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "American Front", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "12097", "group_url": "", "state_initials": "FL", "lat": "28.240874", "group_type_name": "Racist Skinhead", "lng": "-81.288785", "group_id": "29664", "location_id": "29664", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Lynn Haven", "group_type_default_id": "884", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "American Front", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "group_url": "", "state_initials": "FL", "lat": "30.230602", "group_type_name": "Racist Skinhead", "lng": "-85.643640", "group_id": "29665", "location_id": "29665", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Sacramento", "group_type_default_id": "884", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "American Front", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "06067", "group_url": "", "state_initials": "CA", "lat": "38.481900", "group_type_name": "Racist Skinhead", "lng": "-121.493500", "group_id": "29666", "location_id": "29666", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Roselle", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "American Front", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34039", "group_url": "", "state_initials": "NJ", "lat": "40.650436", "group_type_name": "Racist Skinhead", "lng": "-74.259668", "group_id": "29667", "location_id": "29667", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Hackensack", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "American Front", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34003", "group_url": "", "state_initials": "NJ", "lat": "40.886144", "group_type_name": "Racist Skinhead", "lng": "-74.046312", "group_id": "29668", "location_id": "29668", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Haledon", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "American Front", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34031", "group_url": "", "state_initials": "NJ", "lat": "40.953837", "group_type_name": "Racist Skinhead", "lng": "-74.199525", "group_id": "29669", "location_id": "29669", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "Monterey", "group_type_default_id": "940", "state_name": "Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-legend.gif", "group_name": "American Immigration Control Foundation/Americans for Immigration Control", "group_type_url": "/get-informed/intelligence-files/ideology/anti-immigrant", "group_nid": "", "fips": "51091", "group_url": "", "state_initials": "VA", "lat": "38.380646", "group_type_name": "Anti-Immigrant", "lng": "-79.643276", "group_id": "29086", "location_id": "29086", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-small.png"}, {"hatemap_id": "6170", "city": "Porterville", "group_type_default_id": "113", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Nationalist Association", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "", "fips": "06107", "group_url": "", "state_initials": "CA", "lat": "35.994381", "group_type_name": "White Nationalist", "lng": "-118.877497", "group_id": "29844", "location_id": "29844", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Las Vegas", "group_type_default_id": "113", "state_name": "Nevada", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Nationalist Union", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "", "fips": "32003", "group_url": "", "state_initials": "NV", "lat": "36.170189", "group_type_name": "White Nationalist", "lng": "-115.283822", "group_id": "29783", "location_id": "29783", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "109", "state_name": "Texas", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "48453", "group_url": "", "state_initials": "TX", "lat": "30.266900", "group_type_name": "Neo-Nazi", "lng": "-97.742900", "group_id": "29534", "location_id": "29534", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "109", "state_name": "Arizona", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "04013", "group_url": "", "state_initials": "AZ", "lat": "33.448600", "group_type_name": "Neo-Nazi", "lng": "-112.073300", "group_id": "29535", "location_id": "29535", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Rialto", "group_type_default_id": "109", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "06071", "group_url": "", "state_initials": "CA", "lat": "34.160757", "group_type_name": "Neo-Nazi", "lng": "-117.392737", "group_id": "29536", "location_id": "29536", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "109", "state_name": "Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "51760", "group_url": "", "state_initials": "VA", "lat": "37.545548", "group_type_name": "Neo-Nazi", "lng": "-77.542178", "group_id": "29537", "location_id": "29537", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "109", "state_name": "West Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "54039", "group_url": "", "state_initials": "WV", "lat": "38.309906", "group_type_name": "Neo-Nazi", "lng": "-81.498818", "group_id": "29538", "location_id": "29538", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "109", "state_name": "Ohio", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "39049", "group_url": "", "state_initials": "OH", "lat": "40.100474", "group_type_name": "Neo-Nazi", "lng": "-83.012908", "group_id": "29539", "location_id": "29539", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Westland", "group_type_default_id": "109", "state_name": "Michigan", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "American Nazi Party", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "26163", "group_url": "", "state_initials": "MI", "lat": "42.332055", "group_type_name": "Neo-Nazi", "lng": "-83.371314", "group_id": "29540", "location_id": "29540", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Sherman Oaks", "group_type_default_id": "940", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-legend.gif", "group_name": "American Patrol/Voice of Citizens Together", "group_type_url": "/get-informed/intelligence-files/ideology/anti-immigrant", "group_nid": "", "group_url": "", "state_initials": "CA", "lat": "34.146527", "group_type_name": "Anti-Immigrant", "lng": "-118.431076", "group_id": "29089", "location_id": "29089", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-small.png"}, {"hatemap_id": "6170", "city": "Arlington", "group_type_default_id": "113", "state_name": "Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Renaissance", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "775", "fips": "51013", "group_url": "/get-informed/intelligence-files/groups/american-renaissance", "state_initials": "VA", "lat": "38.886594", "group_type_name": "White Nationalist", "lng": "-77.094726", "group_id": "29779", "location_id": "29779", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Oakton", "group_type_default_id": "113", "state_name": "Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-legend.gif", "group_name": "American Renaissance/New Century Foundation", "group_type_url": "/get-informed/intelligence-files/ideology/white-nationalist", "group_nid": "775", "fips": "51059", "group_url": "/get-informed/intelligence-files/groups/american-renaissance", "state_initials": "VA", "lat": "38.893116", "group_type_name": "White Nationalist", "lng": "-77.328886", "group_id": "29780", "location_id": "29780", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/white-nationalist-small.png"}, {"hatemap_id": "6170", "city": "Powder Springs", "group_type_default_id": "930", "state_name": "Georgia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-legend.gif", "group_name": "American Vision", "group_type_url": "/get-informed/intelligence-files/ideology/anti-gay", "group_nid": "", "fips": "13067", "group_url": "", "state_initials": "GA", "lat": "33.882478", "group_type_name": "Anti-LGBT", "lng": "-84.700324", "group_id": "29048", "location_id": "29048", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-small.png"}, {"hatemap_id": "6170", "city": "Raleigh", "group_type_default_id": "940", "state_name": "North Carolina", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-legend.gif", "group_name": "Americans for Legal Immigration (ALIPAC)", "group_type_url": "/get-informed/intelligence-files/ideology/anti-immigrant", "group_nid": "", "fips": "37183", "group_url": "", "state_initials": "NC", "lat": "35.771900", "group_type_name": "Anti-Immigrant", "lng": "-78.638800", "group_id": "29093", "location_id": "29093", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-immigration-small.png"}, {"hatemap_id": "6170", "city": "Naperville", "group_type_default_id": "930", "state_name": "Illinois", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-legend.gif", "group_name": "Americans for Truth About Homosexuality", "group_type_url": "/get-informed/intelligence-files/ideology/anti-gay", "group_nid": "", "fips": "17043", "group_url": "", "state_initials": "IL", "lat": "41.785500", "group_type_name": "Anti-LGBT", "lng": "-88.147200", "group_id": "29058", "location_id": "29058", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/anti-gay-small.png"}, {"hatemap_id": "6170", "city": "Muskogee", "group_type_default_id": "105", "state_name": "Oklahoma", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-legend.gif", "group_name": "Artisan Publishers", "group_type_url": "/get-informed/intelligence-files/ideology/general-hate", "group_nid": "", "fips": "40101", "group_url": "", "state_initials": "OK", "lat": "35.747800", "group_type_name": "General Hate", "lng": "-95.369400", "group_id": "29144", "location_id": "29144", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/general-hate-small.png"}, {"hatemap_id": "6170", "city": "Bartow", "group_type_default_id": "109", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "12105", "group_url": "", "state_initials": "FL", "lat": "27.868661", "group_type_name": "Neo-Nazi", "lng": "-81.807385", "group_id": "29573", "location_id": "29573", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Converse", "group_type_default_id": "109", "state_name": "Louisiana", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "22085", "group_url": "", "state_initials": "LA", "lat": "31.790629", "group_type_name": "Neo-Nazi", "lng": "-93.737976", "group_id": "29574", "location_id": "29574", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Moneta", "group_type_default_id": "109", "state_name": "Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "51019", "group_url": "", "state_initials": "VA", "lat": "37.172301", "group_type_name": "Neo-Nazi", "lng": "-79.626847", "group_id": "29575", "location_id": "29575", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "North Bergen", "group_type_default_id": "109", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "34017", "group_url": "", "state_initials": "NJ", "lat": "40.790389", "group_type_name": "Neo-Nazi", "lng": "-74.020966", "group_id": "29576", "location_id": "29576", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Midland Park", "group_type_default_id": "109", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "34003", "group_url": "", "state_initials": "NJ", "lat": "40.994870", "group_type_name": "Neo-Nazi", "lng": "-74.142414", "group_id": "29577", "location_id": "29577", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Danvers", "group_type_default_id": "109", "state_name": "Massachusetts", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "25009", "group_url": "", "state_initials": "MA", "lat": "42.576767", "group_type_name": "Neo-Nazi", "lng": "-70.951352", "group_id": "29578", "location_id": "29578", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Boise", "group_type_default_id": "109", "state_name": "Idaho", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "16001", "group_url": "", "state_initials": "ID", "lat": "43.632247", "group_type_name": "Neo-Nazi", "lng": "-116.284853", "group_id": "29579", "location_id": "29579", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Milan", "group_type_default_id": "109", "state_name": "New Hampshire", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "33007", "group_url": "", "state_initials": "NH", "lat": "44.574055", "group_type_name": "Neo-Nazi", "lng": "-71.194828", "group_id": "29580", "location_id": "29580", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Norton", "group_type_default_id": "109", "state_name": "Vermont", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "50009", "group_url": "", "state_initials": "VT", "lat": "44.932076", "group_type_name": "Neo-Nazi", "lng": "-71.811435", "group_id": "29581", "location_id": "29581", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Mercer", "group_type_default_id": "109", "state_name": "Wisconsin", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "55051", "group_url": "", "state_initials": "WI", "lat": "46.204974", "group_type_name": "Neo-Nazi", "lng": "-90.116652", "group_id": "29582", "location_id": "29582", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Seattle", "group_type_default_id": "109", "state_name": "Washington", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-legend.gif", "group_name": "Aryan Nations", "group_type_url": "/get-informed/intelligence-files/ideology/neo-nazi", "group_nid": "", "fips": "53033", "group_url": "", "state_initials": "WA", "lat": "47.621012", "group_type_name": "Neo-Nazi", "lng": "-122.333523", "group_id": "29583", "location_id": "29583", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/neo-nazi-small.png"}, {"hatemap_id": "6170", "city": "Converse", "group_type_default_id": "107", "state_name": "Louisiana", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/ku-klux-klan-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/ku-klux-klan-legend.gif", "group_name": "Aryan Nations Knights of the Ku Klux Klan", "group_type_url": "/get-informed/intelligence-files/ideology/ku-klux-klan", "group_nid": "", "fips": "22085", "group_url": "", "state_initials": "LA", "lat": "31.790629", "group_type_name": "Ku Klux Klan", "lng": "-93.737776", "group_id": "29353", "location_id": "29353", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/ku-klux-klan-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "12083", "group_url": "", "state_initials": "FL", "lat": "29.199366", "group_type_name": "Racist Skinhead", "lng": "-82.062655", "group_id": "29733", "location_id": "29733", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Kentucky", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "21111", "group_url": "", "state_initials": "KY", "lat": "38.254500", "group_type_name": "Racist Skinhead", "lng": "-85.759500", "group_id": "29734", "location_id": "29734", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "06067", "group_url": "", "state_initials": "CA", "lat": "38.381900", "group_type_name": "Racist Skinhead", "lng": "-121.493500", "group_id": "29735", "location_id": "29735", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Pennsylvania", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "42101", "group_url": "", "state_initials": "PA", "lat": "39.964046", "group_type_name": "Racist Skinhead", "lng": "-75.197184", "group_id": "29736", "location_id": "29736", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Ohio", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "39049", "group_url": "", "state_initials": "OH", "lat": "40.053144", "group_type_name": "Racist Skinhead", "lng": "-83.021024", "group_id": "29737", "location_id": "29737", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34035", "group_url": "", "state_initials": "NJ", "lat": "40.586060", "group_type_name": "Racist Skinhead", "lng": "-74.664666", "group_id": "29738", "location_id": "29738", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "New York", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "36061", "group_url": "", "state_initials": "NY", "lat": "40.725568", "group_type_name": "Racist Skinhead", "lng": "-73.998208", "group_id": "29739", "location_id": "29739", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Iowa", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "19153", "group_url": "", "state_initials": "IA", "lat": "41.589000", "group_type_name": "Racist Skinhead", "lng": "-93.615100", "group_id": "29740", "location_id": "29740", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Vermont", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Strikeforce", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "50023", "group_url": "", "state_initials": "VT", "lat": "44.260100", "group_type_name": "Racist Skinhead", "lng": "-72.575900", "group_id": "29741", "location_id": "29741", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Florida", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "12073", "group_url": "", "state_initials": "FL", "lat": "30.425130", "group_type_name": "Racist Skinhead", "lng": "-84.251652", "group_id": "29702", "location_id": "29702", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Louisiana", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "22043", "group_url": "", "state_initials": "LA", "lat": "31.568964", "group_type_name": "Racist Skinhead", "lng": "-92.344576", "group_id": "29703", "location_id": "29703", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Arkansas", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "05119", "group_url": "", "state_initials": "AR", "lat": "34.746522", "group_type_name": "Racist Skinhead", "lng": "-92.280058", "group_id": "29704", "location_id": "29704", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Oklahoma", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "40073", "group_url": "", "state_initials": "OK", "lat": "35.799146", "group_type_name": "Racist Skinhead", "lng": "-97.940600", "group_id": "29705", "location_id": "29705", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "51760", "group_url": "", "state_initials": "VA", "lat": "37.575648", "group_type_name": "Racist Skinhead", "lng": "-77.542178", "group_id": "29706", "location_id": "29706", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Kentucky", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "21073", "group_url": "", "state_initials": "KY", "lat": "38.231567", "group_type_name": "Racist Skinhead", "lng": "-84.898278", "group_id": "29707", "location_id": "29707", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "West Virginia", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "54039", "group_url": "", "state_initials": "WV", "lat": "38.348535", "group_type_name": "Racist Skinhead", "lng": "-81.631770", "group_id": "29708", "location_id": "29708", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Missouri", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "29051", "group_url": "", "state_initials": "MO", "lat": "38.483407", "group_type_name": "Racist Skinhead", "lng": "-92.123682", "group_id": "29709", "location_id": "29709", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "California", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "06067", "group_url": "", "state_initials": "CA", "lat": "38.581900", "group_type_name": "Racist Skinhead", "lng": "-121.393500", "group_id": "29710", "location_id": "29710", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Nevada", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "32510", "group_url": "", "state_initials": "NV", "lat": "39.128441", "group_type_name": "Racist Skinhead", "lng": "-119.662901", "group_id": "29711", "location_id": "29711", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Ohio", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "39049", "group_url": "", "state_initials": "OH", "lat": "40.100474", "group_type_name": "Racist Skinhead", "lng": "-83.013708", "group_id": "29712", "location_id": "29712", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "Pennsylvania", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "42043", "group_url": "", "state_initials": "PA", "lat": "40.260708", "group_type_name": "Racist Skinhead", "lng": "-76.887096", "group_id": "29713", "location_id": "29713", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}, {"hatemap_id": "6170", "city": "", "group_type_default_id": "884", "state_name": "New Jersey", "large_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-large.png", "legend_icon_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-legend.gif", "group_name": "Aryan Terror Brigade", "group_type_url": "/get-informed/intelligence-files/ideology/racist-skinhead", "group_nid": "", "fips": "34019", "group_url": "", "state_initials": "NJ", "lat": "40.518392", "group_type_name": "Racist Skinhead", "lng": "-74.868072", "group_id": "29714", "location_id": "29714", "small_marker_url": "http://www.splcenter.org/sites/default/files/images/maps/racist-skinhead-small.png"}]
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

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