From 3a7c96fcdd1702b9b23fd09bb9fe9ce84d76f05b Mon Sep 17 00:00:00 2001 From: milovanderlinden Date: Thu, 15 Feb 2018 13:50:33 +0100 Subject: [PATCH] Map icons now show logo's from cfapi --- assets/css/style.css | 5 + assets/js/map.js | 117 +- assets/organizations.geojson | 7403 ---------------------------------- getdata.sh | 1 - 4 files changed, 39 insertions(+), 7487 deletions(-) delete mode 100644 assets/organizations.geojson diff --git a/assets/css/style.css b/assets/css/style.css index 3da10bd..e0636c4 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -174,4 +174,9 @@ figure figcaption { .navbar { transition: all .6s ease; border-bottom: 1px solid rgba(219, 219, 219, 0.5); +} +.leaflet-marker-icon { + background-color: #fff; + border: 1px solid #ccc; + border-radius: 50%; } \ No newline at end of file diff --git a/assets/js/map.js b/assets/js/map.js index 5b9234b..67354b0 100644 --- a/assets/js/map.js +++ b/assets/js/map.js @@ -1,93 +1,44 @@ $(document).ready(function() { - - $.getJSON(base_url + "organizations.geojson", function (response){ - + //$.getJSON(base_url + "organizations.geojson", function (response){ + $.getJSON("http://api.codeforamerica.org/api/organizations.geojson", function (response){ $(".mobile-menu").click(function(e){ e.preventDefault(); $(".nav-global-secondary ul").slideToggle(); }) + function getIcon(properties){ + var icon = { + iconSize: [ 38, 38], + className: 'marker', + iconAnchor: [0,25], + shadowUrl: '/assets/images/white.png', + shadowSize: [ 38, 38], + }; + if(properties.logo_url){ + icon.iconUrl = properties.logo_url; + return icon; + } + + switch (properties.id.toLowerCase()){ + case "code-for-nl": + icon.iconUrl = base_url + "images/logo/netherlands.jpg"; + return icon; + case "code-for-poland": + icon.iconUrl = base_url + "images/logo/cfpoland.svg"; + return icon; + default: + return icon; + } + } var orgs = response; var cfallOrgs = []; orgs.features.forEach(function(org) { - - if (org.properties.type.indexOf("Code for All") != -1){ - org.properties.icon = {} - org.properties.icon.iconSize = [38, 38] - org.properties.icon['className'] = 'marker' - org.properties.icon['iconAnchor'] = [0, 25] - - if (org.properties['name'] == 'Code for America'){ - org.properties.icon['iconUrl'] = base_url + "images/cfamerica.png" - } - if (org.properties['name'] == 'Codigo para la Ciudad de Mexico'){ - org.properties.icon['iconUrl'] = base_url + "images/labplc.jpeg" - } - if (org.properties['name'] == 'Code for the Caribbean'){ - org.properties.icon['iconUrl'] = base_url + "images/cfcaribbean.png" - } - if (org.properties['name'] == 'Code for Africa'){ - org.properties.icon['iconUrl'] = base_url + "images/cfafrica.png" - } - if (org.properties['name'] == 'Code for South Africa'){ - org.properties.icon['iconUrl'] = base_url + "images/cfsa.png" - } - if (org.properties['name'] == 'Code for Kenya'){ - org.properties.icon['iconUrl'] = base_url + "images/cfke.png" - } - if (org.properties['name'] == 'Code for Nigeria'){ - org.properties.icon['iconUrl'] = base_url + "images/cfng.png" - } - if (org.properties['name'] == 'Code for Ghana'){ - org.properties.icon['iconUrl'] = base_url + "images/cfgh.png" - } - if (org.properties['name'] == 'Code for Ireland'){ - org.properties.icon['iconUrl'] = base_url + "images/cfireland.png" + if (org.properties.tags.indexOf("Code for All") != -1){ + org.properties.icon = getIcon(org.properties); + if(org.properties.id.toLowerCase() !== 'hacking-monterrey'){ + cfallOrgs.push(org); } - if (org.properties['name'] == 'Code for Germany'){ - org.properties.icon['iconUrl'] = base_url + "images/cfgermany.jpeg" - } - if (org.properties['name'] == 'Code for Poland'){ - org.properties.icon['iconUrl'] = base_url + "images/cfpoland.svg" - } - if (org.properties['name'] == 'Code for Pakistan'){ - org.properties.icon['iconUrl'] = base_url + "images/cfpakistan.png" - } - if (org.properties['name'] == 'Code for Seoul'){ - org.properties.icon['iconUrl'] = base_url + "images/cfseoul.png" - } - if (org.properties['name'] == 'Code for Japan'){ - org.properties.icon['iconUrl'] = base_url + "images/cfjapan.png" - } - if (org.properties['name'] == 'Code for Australia'){ - org.properties.icon['iconUrl'] = base_url + "images/cfaustralia.jpeg" - } - if (org.properties['name'] == 'g0v.tw'){ - org.properties.icon['iconUrl'] = base_url + "images/g0v.png" - } - if (org.properties['name'] == 'Codeando México'){ - org.properties.icon['iconUrl'] = base_url + "images/cfmexico.png" - } - if (org.properties['name'] == 'Code for Ghana'){ - org.properties.icon['iconUrl'] = base_url + "images/ghana.png" - } - if (org.properties['name'] == 'Code for Nigeria'){ - org.properties.icon['iconUrl'] = base_url + "images/nigeria.png" - } - if (org.properties['name'] == 'Code for Kenya'){ - org.properties.icon['iconUrl'] = base_url + "images/kenya.png" - } - if (org.properties['name'] == 'Code for Africa'){ - org.properties.icon['iconUrl'] = base_url + "images/c4africa.png" - } - if (org.properties['name'] == 'Code for Tomorrow'){ - org.properties.icon['iconUrl'] = base_url + "images/cftomorrow.png" - } - if (org.properties['name'] == 'CodeNamu(Code for Korea)'){ - org.properties.icon['iconUrl'] = base_url + "images/codenamu.png" - } - - cfallOrgs.push(org); + } }); @@ -109,9 +60,9 @@ $(document).ready(function() { var map = L.map('map').setView(latlon, zoom); function iconStyle(feature) { - //if (feature.properties.icon && feature.properties.icon.iconUrl) { - // return {icon: L.icon(feature.properties.icon)}; - //} + if (feature.properties.icon && feature.properties.icon.iconUrl) { + return {icon: L.icon(feature.properties.icon)}; + } }; function worldStyle(feature) { diff --git a/assets/organizations.geojson b/assets/organizations.geojson deleted file mode 100644 index 7b39fb9..0000000 --- a/assets/organizations.geojson +++ /dev/null @@ -1,7403 +0,0 @@ -{ - "type": "FeatureCollection", - "name": "organizations", - "features": [ - { - "type": "Feature", - "id": "Code-for-New-Orleans", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans", - "city": "New Orleans, LA", - "events_url": "http:\\/\\/www.meetup.com\\/Code-For-New-Orleans\\/", - "last_updated": 1512695515, - "latitude": 29.951992, - "longitude": -90.077055, - "member_count": 295, - "name": "Code for New Orleans", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefornola", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codefornola", - "twitter": "@codefornola" - }, - "started_on": "2016\\/06\\/07", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Orleans\\/upcoming_events", - "website": "http:\\/\\/codeforneworleans.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -90.077055, - 29.951992 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Gießen", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen", - "city": "Gießen, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Giessen\\/", - "last_updated": 1512419568, - "latitude": 50.5871, - "longitude": 8.6909, - "member_count": 120, - "name": "OK Lab Gießen", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForGiessen", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Gießen\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/giessen" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.6909, - 50.5871 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kanagawa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa", - "city": "Yokohama, Japan", - "events_url": null, - "last_updated": 1512696754, - "latitude": 35.4662, - "longitude": 139.6227, - "member_count": null, - "name": "Code for Kanagawa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanagawa\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/CodeForKanagawa" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.6227, - 35.4662 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-NoVA", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA", - "city": "Arlington, VA", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-NoVA\\/", - "last_updated": 1512851548, - "latitude": 38.88, - "longitude": -77.1068, - "member_count": 864, - "name": "Code for NoVA", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/sarl-hackerspace", - "rss": null, - "social_profiles": { - "twitter": "@codenovabrigade" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NoVA\\/upcoming_events", - "website": "http:\\/\\/www.meetup.com\\/Code-for-NoVA\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.1068, - 38.88 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Poland", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland", - "city": "Poland", - "events_url": null, - "last_updated": 1512697178, - "latitude": 52.361947, - "longitude": 19.226414, - "member_count": null, - "name": "Code for Poland", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/past_events", - "projects_list_url": null, - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poland\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.226414, - 52.361947 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Philly", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly", - "city": "Philadelphia, PA", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Philly\\/", - "last_updated": 1512764757, - "latitude": 39.9523, - "longitude": -75.1638, - "member_count": 3167, - "name": "Code for Philly", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/past_events", - "projects_list_url": "http:\\/\\/codeforphilly.org\\/projects.csv", - "rss": "http:\\/\\/codeforphilly.org\\/project-updates?format=rss", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforphilly\\/", - "twitter": "@codeforphilly" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Philly\\/upcoming_events", - "website": "https:\\/\\/codeforphilly.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -75.1638, - 39.9523 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Boulder", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder", - "city": "Boulder, CO", - "events_url": "http:\\/\\/www.meetup.com\\/codeforboulder\\/", - "last_updated": 1512697285, - "latitude": 40.0176, - "longitude": -105.2797, - "member_count": 912, - "name": "Code for Boulder", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForBoulder\\/", - "rss": null, - "social_profiles": { - "twitter": "@CodeforBoulder" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boulder\\/upcoming_events", - "website": "http:\\/\\/codeforboulder.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -105.2797, - 40.0176 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Floripa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa", - "city": "Florianópolis, SC - Brazil", - "events_url": "http:\\/\\/www.meetup.com\\/pt-BR\\/CodeForFloripa\\/", - "last_updated": 1512938824, - "latitude": -27.5908812, - "longitude": -48.5167347, - "member_count": 446, - "name": "Code for Floripa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/past_events", - "projects_list_url": "http:\\/\\/codeforfloripa.com\\/#focus", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/04\\/28", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Floripa\\/upcoming_events", - "website": "http:\\/\\/codeforfloripa.com" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -48.5167347, - -27.5908812 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-San-Jose", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose", - "city": "San Jose, CA", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-San-Jose", - "last_updated": 1512851574, - "latitude": 37.3386, - "longitude": -121.8856, - "member_count": 1936, - "name": "Code for San Jose", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforsanjose", - "rss": "http:\\/\\/codeforsanjose.com\\/category\\/blog\\/feed\\/", - "social_profiles": { - "facebook": "https:\\/\\/facebook.com\\/codeforsanjose", - "twitter": "@codeforsanjose" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Jose\\/upcoming_events", - "website": "http:\\/\\/codeforsanjose.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -121.8856, - 37.3386 - ] - } - }, - { - "type": "Feature", - "id": "Code4PuertoRico", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico", - "city": "San Juan, PR", - "events_url": "http:\\/\\/code4puertorico.org\\/events.html", - "last_updated": 1512697156, - "latitude": 18.4661, - "longitude": -66.116, - "member_count": null, - "name": "Code4PuertoRico", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/Code4PuertoRico", - "rss": "\n", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code4PuertoRico\\/upcoming_events", - "website": "http:\\/\\/code4puertorico.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -66.116, - 18.4661 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Ulm", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm", - "city": "Ulm, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/datalove-OK-Lab-Ulm", - "last_updated": 1512764432, - "latitude": 48.4, - "longitude": 9.9833, - "member_count": 173, - "name": "OK Lab Ulm", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Ulm\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/ulm" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.9833, - 48.4 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-New-River-Valley", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley", - "city": "Blacksburg, VA", - "events_url": "https:\\/\\/www.meetup.com\\/CodeForNRV", - "last_updated": 1512851447, - "latitude": 37.2263, - "longitude": -80.4106, - "member_count": 170, - "name": "Code for New River Valley", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeforNRV", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codefornrv\\/", - "twitter": "@codefornrv" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-River-Valley\\/upcoming_events", - "website": "http:\\/\\/codefornrv.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -80.4106, - 37.2263 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Karlsruhe", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe", - "city": "Karlsruhe, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Karlsruhe\\/", - "last_updated": 1512938809, - "latitude": 49.0069, - "longitude": 8.4037, - "member_count": 501, - "name": "OK Lab Karlsruhe", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Karlsruhe\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/karlsruhe\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.4037, - 49.0069 - ] - } - }, - { - "type": "Feature", - "id": "HackMKE", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE", - "city": "Milwaukee, WI", - "events_url": "https:\\/\\/www.meetup.com\\/MKEData\\/", - "last_updated": 1512696796, - "latitude": 43.0389, - "longitude": 87.9065, - "member_count": 885, - "name": "HackMKE", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/mkedata", - "twitter": "@datamke" - }, - "started_on": "2016\\/07\\/27", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/HackMKE\\/upcoming_events", - "website": "http:\\/\\/hackmke.com" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 87.9065, - 43.0389 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Boise", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise", - "city": "Boise, ID", - "events_url": null, - "last_updated": 1512695008, - "latitude": 43.6187102, - "longitude": -116.2146068, - "member_count": null, - "name": "Code for Boise", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForBoise", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforboise", - "twitter": "@CodeforBoise" - }, - "started_on": "2017\\/12\\/08", - "tags": [ - "Code for America", - "Official", - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boise\\/upcoming_events", - "website": "http:\\/\\/codeforboise.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -116.2146068, - 43.6187102 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Romania", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania", - "city": "Bucharest, Romania", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Romania\\/", - "last_updated": 1512938925, - "latitude": 44.439663, - "longitude": 26.096306, - "member_count": 1107, - "name": "Code for Romania", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code4romania\\/", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/06\\/29", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania\\/upcoming_events", - "website": "http:\\/\\/code4.ro\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 26.096306, - 44.439663 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Orlando", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando", - "city": "Orlando, FL", - "events_url": "https:\\/\\/www.meetup.com\\/Code-For-Orlando\\/", - "last_updated": 1512696853, - "latitude": 28.538335, - "longitude": -81.379236, - "member_count": 1569, - "name": "Code for Orlando", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/cforlando", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/profile.php?id=175405825957093", - "twitter": "@codefororlando" - }, - "started_on": "2016\\/01\\/27", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Orlando\\/upcoming_events", - "website": "http:\\/\\/www.codefororlando.com" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -81.379236, - 28.538335 - ] - } - }, - { - "type": "Feature", - "id": "Open-Syracuse", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse", - "city": "Syracuse, NY", - "events_url": null, - "last_updated": 1512764851, - "latitude": 43.0469, - "longitude": -76.1444, - "member_count": null, - "name": "Open Syracuse", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/OpenSyracuse", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Syracuse\\/upcoming_events", - "website": "http:\\/\\/opensyracuse.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -76.1444, - 43.0469 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Münster", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster", - "city": "Muenster, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Munster\\/", - "last_updated": 1512764860, - "latitude": 51.9667, - "longitude": 7.6333, - "member_count": 256, - "name": "OK Lab Münster", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeformuenster", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Münster\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/muenster" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.6333, - 51.9667 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kaohsiung", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung", - "city": "Kaohsiung, Taiwan", - "events_url": "https:\\/\\/www.facebook.com\\/groups\\/codeforkaohsiung\\/", - "last_updated": 1512851465, - "latitude": 22.9737, - "longitude": 120.6124, - "member_count": null, - "name": "Code for Kaohsiung", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kaohsiung\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/groups\\/codeforkaohsiung\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 120.6124, - 22.9737 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Saga", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga", - "city": "Saga, Japan", - "events_url": null, - "last_updated": 1512333124, - "latitude": 33.2487, - "longitude": 130.301, - "member_count": null, - "name": "Code for Saga", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saga\\/upcoming_events", - "website": "http:\\/\\/code4saga.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 130.301, - 33.2487 - ] - } - }, - { - "type": "Feature", - "id": "Ann-Arbor-Civic-Technology-Meetup", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup", - "city": "Ann Arbor, MI", - "events_url": "http:\\/\\/www.meetup.com\\/a2civictech\\/", - "last_updated": 1512697256, - "latitude": 42.2808, - "longitude": -83.743, - "member_count": 287, - "name": "Ann Arbor Civic Technology Meetup", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/a2civictech", - "rss": "http:\\/\\/a2civictech.tumblr.com", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest" - ], - "type": "Brigade, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Ann-Arbor-Civic-Technology-Meetup\\/upcoming_events", - "website": "http:\\/\\/www.meetup.com\\/a2civictech\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -83.743, - 42.2808 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Vegas", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas", - "city": "Las Vegas, NV", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Las-Vegas\\/", - "last_updated": 1512765022, - "latitude": 36.2551, - "longitude": -115.2383, - "member_count": 148, - "name": "Code for Vegas", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForVegas", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vegas\\/upcoming_events", - "website": "http:\\/\\/www.codeforvegas.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -115.2383, - 36.2551 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Gainesville", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville", - "city": "Gainesville, FL", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Gainesville\\/", - "last_updated": 1512697289, - "latitude": 29.651634, - "longitude": -82.324826, - "member_count": 287, - "name": "Code for Gainesville", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/15DOB5ctu8aJEkaE1pjBIvRaZBG2wjbpJaUQUa6UL9bM\\/pub?output=csv", - "rss": null, - "social_profiles": { - "twitter": "@c4gnv" - }, - "started_on": "2016\\/05\\/27", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gainesville\\/upcoming_events", - "website": "http:\\/\\/c4gnv.com" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -82.324826, - 29.651634 - ] - } - }, - { - "type": "Feature", - "id": "Open-Oakland", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland", - "city": "Oakland, CA", - "events_url": "https:\\/\\/www.meetup.com\\/OpenOakland\\/", - "last_updated": 1512764525, - "latitude": 37.8044, - "longitude": -122.2711, - "member_count": 1124, - "name": "Open Oakland", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheet\\/pub?key=0AgNZYWcpRBQ7dHRnTUJtd3QtYkR5bk5lUmpNMDlpSEE&single=true&gid=0&output=csv", - "rss": "https:\\/\\/www.openoakland.org\\/blog\\/", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/openoak\\/", - "twitter": "@openoakland" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Oakland\\/upcoming_events", - "website": "https:\\/\\/www.openoakland.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.2711, - 37.8044 - ] - } - }, - { - "type": "Feature", - "id": "Open-Cleveland", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland", - "city": "Cleveland, OH", - "events_url": "https:\\/\\/www.meetup.com\\/open-cleveland\\/", - "last_updated": 1512764814, - "latitude": 41.5047, - "longitude": -81.6907, - "member_count": 765, - "name": "Open Cleveland", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opencleveland", - "rss": null, - "social_profiles": { - "twitter": "@opencleveland" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest", - "Official", - "Code for America" - ], - "type": "Brigade, midwest, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Cleveland\\/upcoming_events", - "website": "www.opencleveland.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -81.6907, - 41.5047 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Poznan", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan", - "city": "Poznan, Poland", - "events_url": null, - "last_updated": 1512696835, - "latitude": 52.4068, - "longitude": 16.9291, - "member_count": null, - "name": "Code for Poznan", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/past_events", - "projects_list_url": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/poznan\\/?csv=show", - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/category\\/poznan-en\\/", - "social_profiles": null, - "started_on": "2016\\/03\\/04", - "tags": [ - "Brigade", - "Code for Poland" - ], - "type": "Brigade, Code for Poland", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Poznan\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/poznan\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 16.9291, - 52.4068 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Ponta-Grossa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa", - "city": "Ponta Grossa, PR", - "events_url": "http:\\/\\/www.meetup.com\\/openbrazil\\/", - "last_updated": 1512764654, - "latitude": -25.1294, - "longitude": -50.204, - "member_count": 960, - "name": "Code for Ponta Grossa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforpg", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/12\\/03", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ponta-Grossa\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/Code-For-Ponta-Grossa-1663271337246663\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -50.204, - -25.1294 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Dayton", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton", - "city": "Dayton, OH", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Dayton\\/", - "last_updated": 1513024244, - "latitude": 39.7589, - "longitude": -84.1916, - "member_count": 659, - "name": "Code for Dayton", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefordayton", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/Code-For-Dayton-1501498193512256\\/", - "twitter": "@codefordayton" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest", - "Official", - "Code for America" - ], - "type": "Brigade, midwest, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Dayton\\/upcoming_events", - "website": "http:\\/\\/codefordayton.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -84.1916, - 39.7589 - ] - } - }, - { - "type": "Feature", - "id": "Civic-Data-Alliance", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance", - "city": "Louisville, KY", - "events_url": "http:\\/\\/www.meetup.com\\/Louisville-Civic-Data-Alliance\\/", - "last_updated": 1512764952, - "latitude": 38.2527, - "longitude": -85.7585, - "member_count": 572, - "name": "Civic Data Alliance", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/civicdata", - "rss": "http:\\/\\/www.civicdataalliance.org\\/feed.xml", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance\\/upcoming_events", - "website": "http:\\/\\/www.civicdataalliance.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -85.7585, - 38.2527 - ] - } - }, - { - "type": "Feature", - "id": "Open-Nebraska", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska", - "city": "Omaha, NE", - "events_url": "http:\\/\\/www.meetup.com\\/Open-Nebraska-Meetup\\/", - "last_updated": 1512764668, - "latitude": 41.2524, - "longitude": -95.998, - "member_count": 387, - "name": "Open Nebraska", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opennebraska", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest" - ], - "type": "Brigade, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Nebraska\\/upcoming_events", - "website": "http:\\/\\/opennebraska.io\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -95.998, - 41.2524 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Wroclaw", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw", - "city": "Wroclaw, Poland", - "events_url": "http:\\/\\/www.meetup.com\\/Koduj-dla-Polski-Wroc%C5%82aw\\/", - "last_updated": 1512764856, - "latitude": 51.1063798, - "longitude": 17.0121528, - "member_count": null, - "name": "Code for Wroclaw", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/past_events", - "projects_list_url": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/wroclaw\\/?csv=show", - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/category\\/wroclaw-en\\/", - "social_profiles": null, - "started_on": "2016\\/03\\/04", - "tags": [ - "Brigade", - "Code for Poland" - ], - "type": "Brigade, Code for Poland", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Wroclaw\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/wroclaw\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 17.0121528, - 51.1063798 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Cracow", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow", - "city": "Kraków, Poland", - "events_url": null, - "last_updated": 1512938803, - "latitude": 50.062747, - "longitude": 19.943247, - "member_count": null, - "name": "Code for Cracow", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/past_events", - "projects_list_url": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/krakow\\/?csv=show", - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/category\\/cracow\\/", - "social_profiles": null, - "started_on": "2016\\/03\\/03", - "tags": [ - "Brigade", - "Code for Poland" - ], - "type": "Brigade, Code for Poland", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cracow\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/krakow\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 19.943247, - 50.062747 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Pakistan", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan", - "city": "Lahore, Pakistan", - "events_url": "http:\\/\\/lahorebrigade.eventbrite.com", - "last_updated": 1512764895, - "latitude": 31.5451, - "longitude": 74.3407, - "member_count": null, - "name": "Code for Pakistan", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforpakistan", - "rss": "http:\\/\\/codeforpakistan.org\\/blog", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for All" - ], - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pakistan\\/upcoming_events", - "website": "http:\\/\\/www.codeforpakistan.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 74.3407, - 31.5451 - ] - } - }, - { - "type": "Feature", - "id": "Civic-Tech-Toronto", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto", - "city": "Toronto, ON", - "events_url": "http:\\/\\/www.meetup.com\\/Civic-Tech-Toronto\\/", - "last_updated": 1512678631, - "latitude": 43.653484, - "longitude": -79.384093, - "member_count": 2770, - "name": "Civic Tech Toronto", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1mqLnB55uVv3d1GPJaaW5XeQ7qdmmKqJZVZyLfD9xL_E\\/pub?gid=0&single=true&output=csv", - "rss": "http:\\/\\/civictech.ca\\/feed\\/", - "social_profiles": null, - "started_on": "2016\\/02\\/09", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Tech-Toronto\\/upcoming_events", - "website": "http:\\/\\/civictech.ca\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -79.384093, - 43.653484 - ] - } - }, - { - "type": "Feature", - "id": "Open-Austin", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin", - "city": "Austin, TX", - "events_url": "https:\\/\\/www.meetup.com\\/Open-Austin\\/", - "last_updated": 1512592241, - "latitude": 30.2672, - "longitude": -97.7431, - "member_count": 2041, - "name": "Open Austin", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/open-austin", - "rss": "http:\\/\\/www.open-austin.org\\/feed", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Austin\\/upcoming_events", - "website": "https:\\/\\/www.open-austin.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -97.7431, - 30.2672 - ] - } - }, - { - "type": "Feature", - "id": "Open-Brazil", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil", - "city": "Brasília, DF", - "events_url": "http:\\/\\/www.meetup.com\\/openbrazil\\/", - "last_updated": 1512764447, - "latitude": -15.793, - "longitude": -47.8834, - "member_count": 960, - "name": "Open Brazil", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForBrazil\\/", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/12\\/03", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Brazil\\/upcoming_events", - "website": "http:\\/\\/openbrazil.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -47.8834, - -15.793 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-ABQ", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ", - "city": "Albuquerque, NM", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-ABQ", - "last_updated": 1512696462, - "latitude": 35.0824, - "longitude": -106.6765, - "member_count": 293, - "name": "Code for ABQ", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1k4-U_ojSdzJyKTRYiVEpx7Ae4kXBdHAf-jA-_aZGhrI\\/export?format=csv", - "rss": null, - "social_profiles": { - "twitter": "@codeforabq" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-ABQ\\/upcoming_events", - "website": "http:\\/\\/codeforabq.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -106.6765, - 35.0824 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Rockford", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford", - "city": "Rockford, IL", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Rockford", - "last_updated": 1512851557, - "latitude": 42.2669, - "longitude": -89.0783, - "member_count": 75, - "name": "Code for Rockford", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForRockford", - "rss": "http:\\/\\/www.codeforrockford.com\\/category\\/news\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Rockford\\/upcoming_events", - "website": "http:\\/\\/www.codeforrockford.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -89.0783, - 42.2669 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Phoenix", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix", - "city": "Phoenix, AZ", - "events_url": "https:\\/\\/www.meetup.com\\/codeforphx\\/", - "last_updated": 1512937852, - "latitude": 33.4483771, - "longitude": -112.0740373, - "member_count": 220, - "name": "Code for Phoenix", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforphx\\/", - "twitter": "@codeforphx" - }, - "started_on": "2017\\/10\\/21", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Phoenix\\/upcoming_events", - "website": null - }, - "geometry": { - "type": "Point", - "coordinates": [ - -112.0740373, - 33.4483771 - ] - } - }, - { - "type": "Feature", - "id": "OpenSTL", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL", - "city": "St Louis, MO", - "events_url": "http:\\/\\/www.meetup.com\\/OpenSTL", - "last_updated": 1512696544, - "latitude": 38.6272, - "longitude": -90.1977, - "member_count": 574, - "name": "OpenSTL", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opendatastl", - "rss": "http:\\/\\/buildforstl.org\\/feed", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/groups\\/opendatastl", - "twitter": "@open_stl" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "midwest", - "Official", - "Code for America" - ], - "type": "Brigade, midwest, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSTL\\/upcoming_events", - "website": "openstl.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -90.1977, - 38.6272 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Warsaw", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw", - "city": "Warsaw, Poland", - "events_url": "http:\\/\\/www.meetup.com\\/Koduj-dla-Polski-Warszawa\\/", - "last_updated": 1512696440, - "latitude": 52.2287, - "longitude": 21.0063, - "member_count": 1087, - "name": "Code for Warsaw", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/past_events", - "projects_list_url": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/warszawa\\/?csv=show", - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/category\\/warsaw\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for Poland" - ], - "type": "Brigade, Code for Poland", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Warsaw\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/warszawa\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 21.0063, - 52.2287 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Palm-Beach", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach", - "city": "Palm Beach, FL", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Palm-Beach\\/", - "last_updated": 1512938802, - "latitude": 26.7056206, - "longitude": -80.0364297, - "member_count": 321, - "name": "Code for Palm Beach", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/past_events", - "projects_list_url": "github.com\\/codeforpalmbeach", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforpb", - "twitter": "@codeforpb" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Palm-Beach\\/upcoming_events", - "website": null - }, - "geometry": { - "type": "Point", - "coordinates": [ - -80.0364297, - 26.7056206 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Cary", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary", - "city": "Cary, NC", - "events_url": "http:\\/\\/www.meetup.com\\/Triangle-Code-for-America\\/", - "last_updated": 1512851514, - "latitude": 35.7915, - "longitude": -78.7811, - "member_count": 1191, - "name": "Code for Cary", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforcary", - "rss": null, - "social_profiles": { - "twitter": "@CodeForCary" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Cary\\/upcoming_events", - "website": "http:\\/\\/www.codeforcary.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -78.7811, - 35.7915 - ] - } - }, - { - "type": "Feature", - "id": "Oakland-TechEquity", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity", - "city": "Oakland, CA", - "events_url": "http:\\/\\/www.meetup.com\\/Oakland-Tech-Equity\\/", - "last_updated": 1512938990, - "latitude": 37.8044, - "longitude": -122.2711, - "member_count": 494, - "name": "Oakland TechEquity", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/oaktechequity", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/02\\/24", - "tags": [ - "Partner" - ], - "type": "Partner", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Oakland-TechEquity\\/upcoming_events", - "website": "http:\\/\\/techequity.us\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.2711, - 37.8044 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Bonn", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn", - "city": "Bonn, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OKLab-Bonn\\/", - "last_updated": 1511987905, - "latitude": 50.7374, - "longitude": 7.0982, - "member_count": 619, - "name": "OK Lab Bonn", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Bonn\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/bonn\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.0982, - 50.7374 - ] - } - }, - { - "type": "Feature", - "id": "Microsoft-Technology-and-Civic-Engagement", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement", - "city": "New York, NY", - "events_url": null, - "last_updated": 1512246687, - "latitude": 40.7144, - "longitude": -74.006, - "member_count": null, - "name": "Microsoft Technology and Civic Engagement", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/MicrosoftTCE", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/02\\/20", - "tags": null, - "type": "Partner", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Microsoft-Technology-and-Civic-Engagement\\/upcoming_events", - "website": "http:\\/\\/microsoftnewyork.com\\/category\\/civic-tech\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -74.006, - 40.7144 - ] - } - }, - { - "type": "Feature", - "id": "City-of-Chicago-Department-of-Innovation-and-Technology", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology", - "city": "Chicago, IL", - "events_url": null, - "last_updated": 1512938840, - "latitude": 41.8781, - "longitude": -87.6298, - "member_count": null, - "name": "City of Chicago Department of Innovation and Technology", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/chicago", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government", - "midwest" - ], - "type": "Government, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Chicago-Department-of-Innovation-and-Technology\\/upcoming_events", - "website": "http:\\/\\/www.cityofchicago.org\\/city\\/en\\/depts\\/doit.html" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -87.6298, - 41.8781 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Greenville", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville", - "city": "Greenville, SC", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Greenville\\/", - "last_updated": 1512764622, - "latitude": 34.8526176, - "longitude": -82.3940104, - "member_count": 181, - "name": "Code for Greenville", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforgreenville\\/", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greenville\\/upcoming_events", - "website": "codeforgreenville.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -82.3940104, - 34.8526176 - ] - } - }, - { - "type": "Feature", - "id": "Smart-Chicago-Collaborative", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative", - "city": "Chicago, IL", - "events_url": null, - "last_updated": 1512938954, - "latitude": 41.8781, - "longitude": -87.6298, - "member_count": null, - "name": "Smart Chicago Collaborative", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/smartchicago", - "rss": "http:\\/\\/www.smartchicagocollaborative.org\\/feed\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "partner", - "midwest" - ], - "type": "partner, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Smart-Chicago-Collaborative\\/upcoming_events", - "website": "http:\\/\\/www.smartchicagocollaborative.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -87.6298, - 41.8781 - ] - } - }, - { - "type": "Feature", - "id": "Open-Wichita", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita", - "city": "Wichita, KS", - "events_url": "http:\\/\\/www.meetup.com\\/openwichita\\/", - "last_updated": 1512696884, - "latitude": 37.687, - "longitude": -97.3356, - "member_count": 739, - "name": "Open Wichita", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/openwichita", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/openwichita\\/", - "twitter": "@openwichita" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Wichita\\/upcoming_events", - "website": "http:\\/\\/openwichita.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -97.3356, - 37.687 - ] - } - }, - { - "type": "Feature", - "id": "US-Census-Bureau", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau", - "city": "Washington, DC", - "events_url": null, - "last_updated": 1512764753, - "latitude": 38.9072, - "longitude": -77.0365, - "member_count": null, - "name": "US Census Bureau", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/uscensusbureau", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/US-Census-Bureau\\/upcoming_events", - "website": "http:\\/\\/www.census.gov\\/developers\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.0365, - 38.9072 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Romania:-Cluj-Partner", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner", - "city": "Cluj-Napoca, Romania", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Romania\\/", - "last_updated": 1512697291, - "latitude": 46.770439, - "longitude": 23.591423, - "member_count": 1104, - "name": "Code for Romania: Cluj Partner", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code4romania\\/", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/06\\/21", - "tags": [ - "Brigade", - "Code for Romania" - ], - "type": "Brigade, Code for Romania", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Cluj-Partner\\/upcoming_events", - "website": "http:\\/\\/code4.ro\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 23.591423, - 46.770439 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Germany", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany", - "city": "Berlin, Germany", - "events_url": "http:\\/\\/codefor.de\\/termine\\/", - "last_updated": 1512851466, - "latitude": 52.5192, - "longitude": 13.4061, - "member_count": null, - "name": "Code for Germany", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforgermany", - "rss": "http:\\/\\/codefor.de\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Germany\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.4061, - 52.5192 - ] - } - }, - { - "type": "Feature", - "id": "Open-San-Antonio", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio", - "city": "San Antonio, TX", - "events_url": null, - "last_updated": 1512764632, - "latitude": 29.4245, - "longitude": -98.4946, - "member_count": null, - "name": "Open San Antonio", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opensatx", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Antonio\\/upcoming_events", - "website": "http:\\/\\/opensatx.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -98.4946, - 29.4245 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-the-Caribbean", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean", - "city": "Kingston, Jamaica", - "events_url": null, - "last_updated": 1512764945, - "latitude": 17.971, - "longitude": -76.7882, - "member_count": null, - "name": "Code for the Caribbean", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforthecaribbean", - "rss": "http:\\/\\/www.codeforthecaribbean.org\\/blog", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-the-Caribbean\\/upcoming_events", - "website": "http:\\/\\/www.codeforthecaribbean.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -76.7882, - 17.971 - ] - } - }, - { - "type": "Feature", - "id": "Data-SF", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF", - "city": "San Francisco, CA", - "events_url": null, - "last_updated": 1512764836, - "latitude": 37.7759, - "longitude": -122.4137, - "member_count": null, - "name": "Data SF", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/datasf", - "rss": "http:\\/\\/datasf.org\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data-SF\\/upcoming_events", - "website": "http:\\/\\/datasf.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.4137, - 37.7759 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Pittsburgh", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh", - "city": "Pittsburgh, PA", - "events_url": "https:\\/\\/www.meetup.com\\/codeforpgh\\/", - "last_updated": 1512246891, - "latitude": 40.4406, - "longitude": -79.9959, - "member_count": 722, - "name": "Code for Pittsburgh", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/openpgh", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/10\\/22", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Pittsburgh\\/upcoming_events", - "website": "https:\\/\\/codeforpittsburgh.github.io\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -79.9959, - 40.4406 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Fukuoka", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka", - "city": "Fukuoka, Japan", - "events_url": null, - "last_updated": 1512696626, - "latitude": 33.584, - "longitude": 130.4129, - "member_count": null, - "name": "Code for Fukuoka", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fukuoka\\/upcoming_events", - "website": "http:\\/\\/code4fukuoka.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 130.4129, - 33.584 - ] - } - }, - { - "type": "Feature", - "id": "Open-Denton", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton", - "city": "Denton, TX", - "events_url": null, - "last_updated": 1512764563, - "latitude": 33.2148412, - "longitude": -97.1330683, - "member_count": null, - "name": "Open Denton", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/OpenDenton", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/opendenton\\/", - "twitter": "@opendenton" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Denton\\/upcoming_events", - "website": "https:\\/\\/www.opendenton.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -97.1330683, - 33.2148412 - ] - } - }, - { - "type": "Feature", - "id": "Hack-Tahoe", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe", - "city": "South Lake Tahoe, California", - "events_url": null, - "last_updated": 1512764457, - "latitude": 39.096849, - "longitude": -120.032351, - "member_count": null, - "name": "Hack Tahoe", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/hacktahoe", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/03\\/31", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Tahoe\\/upcoming_events", - "website": "http:\\/\\/hack.tahoe.coop\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -120.032351, - 39.096849 - ] - } - }, - { - "type": "Feature", - "id": "BetaCityYEG", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG", - "city": "Edmonton, Canada", - "events_url": null, - "last_updated": 1512695111, - "latitude": 53.4538, - "longitude": -113.509, - "member_count": null, - "name": "BetaCityYEG", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2016\\/01\\/21", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BetaCityYEG\\/upcoming_events", - "website": "http:\\/\\/betacity.ca\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -113.509, - 53.4538 - ] - } - }, - { - "type": "Feature", - "id": "Open-Salt-Lake", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake", - "city": "Salt Lake City, UT", - "events_url": "http:\\/\\/www.meetup.com\\/Open-Salt-Lake\\/", - "last_updated": 1512696560, - "latitude": 40.7608, - "longitude": -111.891, - "member_count": 233, - "name": "Open Salt Lake", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/OpenSaltLake", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/opensaltlakeutah\\/", - "twitter": "@OpenSaltLake" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Salt-Lake\\/upcoming_events", - "website": "http:\\/\\/opensaltlake.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -111.891, - 40.7608 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Sacramento", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento", - "city": "Sacramento, CA", - "events_url": "https:\\/\\/www.meetup.com\\/Code4Sac", - "last_updated": 1512764841, - "latitude": 38.5816, - "longitude": -121.4944, - "member_count": 1398, - "name": "Code for Sacramento", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheet\\/pub?key=1k5gff8Mvs6rb3sz6aLll5Dq8joftl65Gmy33DO-7Kv8&output=csv", - "rss": "http:\\/\\/code4sac.org\\/cat\\/blog\\/", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/code4sac\\/", - "twitter": "@code4sac" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sacramento\\/upcoming_events", - "website": "http:\\/\\/codeforsacramento.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -121.4944, - 38.5816 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-South-Africa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa", - "city": "Cape Town, South Africa", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-South-Africa-Hackers", - "last_updated": 1512764675, - "latitude": -33.9205, - "longitude": 18.4212, - "member_count": 686, - "name": "Code for South Africa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code4sa", - "rss": "http:\\/\\/www.code4sa.org\\/atom.xml", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-South-Africa\\/upcoming_events", - "website": "http:\\/\\/www.code4sa.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.4212, - -33.9205 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-BTV", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV", - "city": "Burlington, VT", - "events_url": "http:\\/\\/www.meetup.com\\/CodeForBTV\\/", - "last_updated": 1512851454, - "latitude": 44.4759, - "longitude": -73.2121, - "member_count": 433, - "name": "Code for BTV", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforbtv", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeForBtv\\/", - "twitter": "@CodeForBTV" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-BTV\\/upcoming_events", - "website": "http:\\/\\/codeforbtv.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -73.2121, - 44.4759 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Croatia", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia", - "city": "Zagreb, Croatia", - "events_url": "https:\\/\\/www.google.com\\/calendar\\/ical\\/dveug5v4a2uq633mrnsehvm4u4%40group.calendar.google.com\\/public\\/basic.ics", - "last_updated": 1512697236, - "latitude": 45.793, - "longitude": 15.9464, - "member_count": null, - "name": "Code for Croatia", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforcroatia", - "rss": "http:\\/\\/codeforcroatia.org\\/project-updates?format=rss", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Croatia\\/upcoming_events", - "website": "http:\\/\\/codeforcroatia.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.9464, - 45.793 - ] - } - }, - { - "type": "Feature", - "id": "Hack-Michiana", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana", - "city": "South Bend, IN", - "events_url": null, - "last_updated": 1512697084, - "latitude": 41.6764, - "longitude": -86.252, - "member_count": null, - "name": "Hack Michiana", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/hackmichiana", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "midwest" - ], - "type": "Brigade, Official, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-Michiana\\/upcoming_events", - "website": "http:\\/\\/codejot.com\\/hackmichiana\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -86.252, - 41.6764 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-RVA", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA", - "city": "Richmond, VA", - "events_url": "http:\\/\\/www.meetup.com\\/804RVA\\/", - "last_updated": 1512505907, - "latitude": 37.5407, - "longitude": -77.4336, - "member_count": 2402, - "name": "Code for RVA", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforrva", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-RVA\\/upcoming_events", - "website": "http:\\/\\/codeforrva.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.4336, - 37.5407 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Detroit", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit", - "city": "Detroit, MI", - "events_url": null, - "last_updated": 1512695463, - "latitude": 42.3314, - "longitude": -83.0458, - "member_count": null, - "name": "Code for Detroit", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest" - ], - "type": "Brigade, midwest, ", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Detroit\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/CodeForDetroit" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -83.0458, - 42.3314 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Birmingham", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham", - "city": "Birmingham, AL", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Birmingham-AL\\/", - "last_updated": 1512765014, - "latitude": 33.5207, - "longitude": -86.8118, - "member_count": 565, - "name": "Code for Birmingham", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeforBirmingham", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/Codeforbirmingham" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Birmingham\\/upcoming_events", - "website": "http:\\/\\/www.codeforbirmingham.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -86.8118, - 33.5207 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Miami", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami", - "city": "Miami, FL", - "events_url": "https:\\/\\/www.meetup.com\\/code-for-miami\\/", - "last_updated": 1512851534, - "latitude": 25.789, - "longitude": -80.2264, - "member_count": 888, - "name": "Code for Miami", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code-for-miami", - "rss": "http:\\/\\/codeformia.tumblr.com\\/rss", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeForMiami\\/", - "twitter": "@codeformiami" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Miami\\/upcoming_events", - "website": "http:\\/\\/codefor.miami" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -80.2264, - 25.789 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Nanto", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto", - "city": "Nanto, Japan", - "events_url": null, - "last_updated": 1511987674, - "latitude": 36.5905, - "longitude": 136.9289, - "member_count": null, - "name": "Code for Nanto", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nanto\\/upcoming_events", - "website": "http:\\/\\/www.7104.info\\/codefor\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 136.9289, - 36.5905 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kobe", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe", - "city": "Kobe, Japan", - "events_url": "https:\\/\\/www.facebook.com\\/groups\\/1536379276600668\\/", - "last_updated": 1512696881, - "latitude": 34.6954, - "longitude": 135.197, - "member_count": null, - "name": "Code for Kobe", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforkobe\\/", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for Japan" - ], - "type": "Brigade, Code for Japan", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kobe\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/codeforkobe" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 135.197, - 34.6954 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Heilbronn", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn", - "city": "Heilbronn, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Heilbronn\\/", - "last_updated": 1511901695, - "latitude": 49.15, - "longitude": 9.2167, - "member_count": 422, - "name": "OK Lab Heilbronn", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opendata-heilbronn", - "rss": "http:\\/\\/blog.opendatalab.de\\/rss.xml", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Heilbronn\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/heilbronn" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.2167, - 49.15 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Maine", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine", - "city": "Bangor, ME", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Maine", - "last_updated": 1512764928, - "latitude": 43.6615, - "longitude": -70.2553, - "member_count": 216, - "name": "Code for Maine", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code4maine", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/code4maine\\/", - "twitter": "@code4maine" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Maine\\/upcoming_events", - "website": "http:\\/\\/code4maine.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -70.2553, - 43.6615 - ] - } - }, - { - "type": "Feature", - "id": "Akron-Civic-Hackathon", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon", - "city": "Akron, Ohio", - "events_url": null, - "last_updated": 1512764519, - "latitude": 41.0761, - "longitude": -81.5217, - "member_count": null, - "name": "Akron Civic Hackathon", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/akroncivichackathon", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "midwest" - ], - "type": "midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Akron-Civic-Hackathon\\/upcoming_events", - "website": "http:\\/\\/akroncivichackathon.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -81.5217, - 41.0761 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Vancouver", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver", - "city": "Vancouver, BC", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Canada-Vancouver", - "last_updated": 1512696491, - "latitude": 49.2811, - "longitude": -123.044, - "member_count": 358, - "name": "Code for Vancouver", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforcanada", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Vancouver\\/upcoming_events", - "website": "http:\\/\\/community.codeforcanada.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -123.044, - 49.2811 - ] - } - }, - { - "type": "Feature", - "id": "Detroit-Water-Project", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project", - "city": "Detroit, MI", - "events_url": null, - "last_updated": 1512938809, - "latitude": 42.3314, - "longitude": -83.0458, - "member_count": null, - "name": "Detroit Water Project", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/detroitwaterproject", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/12\\/10", - "tags": [ - "partner" - ], - "type": "partner", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Detroit-Water-Project\\/upcoming_events", - "website": "https:\\/\\/www.detroitwaterproject.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -83.0458, - 42.3314 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Atlanta", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta", - "city": "Atlanta, GA", - "events_url": "https:\\/\\/www.meetup.com\\/codeforatlanta\\/", - "last_updated": 1512696377, - "latitude": 33.749, - "longitude": -84.388, - "member_count": 2416, - "name": "Code for Atlanta", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforatlanta", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforatlanta", - "twitter": "@codeforatlanta" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Atlanta\\/upcoming_events", - "website": "http:\\/\\/www.codeforatlanta.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -84.388, - 33.749 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Nigeria", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria", - "city": "Lagos, Nigeria", - "events_url": null, - "last_updated": 1512419504, - "latitude": 6.6016, - "longitude": 3.3969, - "member_count": null, - "name": "Code for Nigeria", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/past_events", - "projects_list_url": "http:\\/\\/github.com\\/CodeForAfrica", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nigeria\\/upcoming_events", - "website": "http:\\/\\/code4nigeria.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 3.3969, - 6.6016 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Denver", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver", - "city": "Denver, CO", - "events_url": "http:\\/\\/www.meetup.com\\/CodeForDenver\\/", - "last_updated": 1512697121, - "latitude": 39.7392, - "longitude": -104.9847, - "member_count": 1752, - "name": "Code for Denver", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefordenver", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codefordenver\\/", - "twitter": "@codefordenver" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Denver\\/upcoming_events", - "website": "http:\\/\\/www.codefordenver.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -104.9847, - 39.7392 - ] - } - }, - { - "type": "Feature", - "id": "Open-Twin-Cities", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities", - "city": "St. Paul, MN", - "events_url": "http:\\/\\/www.meetup.com\\/OpenTwinCities\\/", - "last_updated": 1512764827, - "latitude": 44.9537, - "longitude": -93.09, - "member_count": 572, - "name": "Open Twin Cities", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1OaIzmWf5btaxChWhPX_KEEttkwsQdzB2t-PVOshCOIw\\/export?gid=0&format=csv", - "rss": "http:\\/\\/opentwincities.org\\/posts\\/", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/OpenTwinCities\\/", - "twitter": "@opentwincities" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "midwest", - "Code for America" - ], - "type": "Brigade, Official, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Twin-Cities\\/upcoming_events", - "website": "http:\\/\\/opentwincities.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -93.09, - 44.9537 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tampa-Bay", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay", - "city": "Tampa, FL", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Tampa-Bay-Brigade\\/", - "last_updated": 1512851567, - "latitude": 27.9465, - "longitude": -82.4593, - "member_count": 708, - "name": "Code for Tampa Bay", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code-for-tb", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeforTampaBay", - "twitter": "@CodeForTampaBay" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tampa-Bay\\/upcoming_events", - "website": "http:\\/\\/www.codefortampabay.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -82.4593, - 27.9465 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Ikoma", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma", - "city": "Ikoma, Japan", - "events_url": null, - "last_updated": 1512764941, - "latitude": 34.692, - "longitude": 135.7006, - "member_count": null, - "name": "Code for Ikoma", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ikoma\\/upcoming_events", - "website": "http:\\/\\/code4ikoma.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 135.7006, - 34.692 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tucson", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson", - "city": "Tucson, AZ", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Tucson\\/", - "last_updated": 1512695409, - "latitude": 32.2216, - "longitude": -110.9698, - "member_count": 667, - "name": "Code for Tucson", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForTucson", - "rss": null, - "social_profiles": { - "twitter": "@CodeforTucson" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tucson\\/upcoming_events", - "website": "http:\\/\\/codefortucson.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -110.9698, - 32.2216 - ] - } - }, - { - "type": "Feature", - "id": "Missoula-Civic-Hackathon", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon", - "city": "Missoula, MT", - "events_url": null, - "last_updated": 1512695144, - "latitude": 46.8625418, - "longitude": -113.98482, - "member_count": null, - "name": "Missoula Civic Hackathon", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/Blue-Sky-Skunkworks", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/04\\/08", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Missoula-Civic-Hackathon\\/upcoming_events", - "website": "http:\\/\\/missoulacivichackathon.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -113.98482, - 46.8625418 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tricity", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity", - "city": "Gdansk, Poland", - "events_url": "http:\\/\\/www.meetup.com\\/Koduj-dla-Polski-Trojmiasto\\/", - "last_updated": 1512697259, - "latitude": 54.4046788, - "longitude": 18.5738181, - "member_count": 464, - "name": "Code for Tricity", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/past_events", - "projects_list_url": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/trojmiasto\\/?csv=show", - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/category\\/tricity\\/", - "social_profiles": null, - "started_on": "2016\\/03\\/04", - "tags": [ - "Brigade", - "Code for Poland" - ], - "type": "Brigade, Code for Poland", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tricity\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/trojmiasto\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.5738181, - 54.4046788 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Köln", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln", - "city": "Cologne, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OKLab-Koln-Meetup", - "last_updated": 1512592396, - "latitude": 50.95, - "longitude": 6.9667, - "member_count": 615, - "name": "OK Lab Köln", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforcologne\\/", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Köln\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/koeln" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 6.9667, - 50.95 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Newark", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark", - "city": "Newark, NJ", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Newark\\/", - "last_updated": 1512938942, - "latitude": 40.732, - "longitude": -74.1742, - "member_count": 808, - "name": "Code for Newark", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/Code4Newark", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codefornewark\\/", - "twitter": "@codefornewark" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Newark\\/upcoming_events", - "website": "http:\\/\\/www.codefornewark.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -74.1742, - 40.732 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-OKC", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC", - "city": "Oklahoma City, OK", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-OKC\\/", - "last_updated": 1512764524, - "latitude": 35.4675602, - "longitude": -97.5164276, - "member_count": 951, - "name": "Code for OKC", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/past_events", - "projects_list_url": "github.com\\/codeforokc", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforokc\\/", - "twitter": "@codeforokc" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-OKC\\/upcoming_events", - "website": "codeforokc.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -97.5164276, - 35.4675602 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-NL", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL", - "city": "Amsterdam, Netherlands", - "events_url": "https:\\/\\/www.meetup.com\\/Code-For-NL\\/", - "last_updated": 1512764421, - "latitude": 52.372807, - "longitude": 4.900291, - "member_count": 103, - "name": "Code for NL", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/past_events", - "projects_list_url": "https:\\/\\/clarity.codefor.nl\\/cbase\\/code-for-nl-50219f7e", - "rss": null, - "social_profiles": {}, - "started_on": "2017\\/12\\/08", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-NL\\/upcoming_events", - "website": "http:\\/\\/www.codefor.nl\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 4.900291, - 52.372807 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Leipzig", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig", - "city": "Leipzig, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Leipzig\\/", - "last_updated": 1512697320, - "latitude": 51.3333, - "longitude": 12.3833, - "member_count": 400, - "name": "OK Lab Leipzig", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeforLeipzig", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Leipzig\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/leipzig" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.3833, - 51.3333 - ] - } - }, - { - "type": "Feature", - "id": "Milwaukee-Data-Initiative", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative", - "city": "Milwaukee, WI", - "events_url": "https:\\/\\/www.meetup.com\\/MKEData\\/", - "last_updated": 1512938895, - "latitude": 43.0389, - "longitude": 87.9065, - "member_count": 887, - "name": "Milwaukee Data Initiative", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/milwaukeedata", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/mkedata", - "twitter": "@datamke" - }, - "started_on": "2017\\/12\\/08", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Milwaukee-Data-Initiative\\/upcoming_events", - "website": "http:\\/\\/milwaukeedata.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 87.9065, - 43.0389 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Fort-Collins", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins", - "city": "Fort Collins, CO", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Fort-Collins\\/", - "last_updated": 1512851460, - "latitude": 40.5852602, - "longitude": -105.084423, - "member_count": 222, - "name": "Code for Fort Collins", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforfoco", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeforFoCo\\/", - "twitter": "@codeforfoco" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Collins\\/upcoming_events", - "website": "http:\\/\\/codeforfoco.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -105.084423, - 40.5852602 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Shiogama", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama", - "city": "Shiogama, Japan", - "events_url": null, - "last_updated": 1512764821, - "latitude": 38.3014, - "longitude": 141.0273, - "member_count": null, - "name": "Code for Shiogama", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Shiogama\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/CodeForShiogama" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 141.0273, - 38.3014 - ] - } - }, - { - "type": "Feature", - "id": "California-Civic-Lab", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab", - "city": "Oakland, CA", - "events_url": null, - "last_updated": 1512696529, - "latitude": 37.166111, - "longitude": -119.449444, - "member_count": null, - "name": "California Civic Lab", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/caciviclab", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/02\\/22", - "tags": [ - "Collaboration between Brigades" - ], - "type": "Collaboration between Brigades", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/California-Civic-Lab\\/upcoming_events", - "website": "http:\\/\\/caciviclab.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -119.449444, - 37.166111 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Baltimore", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore", - "city": "Baltimore, MD", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Baltimore\\/", - "last_updated": 1512696407, - "latitude": 39.2903848, - "longitude": -76.6121893, - "member_count": 1033, - "name": "Code for Baltimore", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForBaltimore", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeForBaltimore\\/", - "twitter": "@codeforbmore" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Baltimore\\/upcoming_events", - "website": "codeforbaltimore.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -76.6121893, - 39.2903848 - ] - } - }, - { - "type": "Feature", - "id": "Code-Island", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island", - "city": "Rhode Island", - "events_url": "http:\\/\\/www.meetup.com\\/Rhode-Island-Code-for-America-Brigade\\/", - "last_updated": 1512764746, - "latitude": 41.4887, - "longitude": -71.4543, - "member_count": 442, - "name": "Code Island", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeisland", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeislandbrigade", - "twitter": "@code_island" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-Island\\/upcoming_events", - "website": "http:\\/\\/code-island.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -71.4543, - 41.4887 - ] - } - }, - { - "type": "Feature", - "id": "Open-Chattanooga", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga", - "city": "Chattanooga, TN", - "events_url": null, - "last_updated": 1512246894, - "latitude": 35.0456, - "longitude": -85.3097, - "member_count": null, - "name": "Open Chattanooga", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/openchattanooga", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/03\\/10", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Chattanooga\\/upcoming_events", - "website": "http:\\/\\/openchattanooga.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -85.3097, - 35.0456 - ] - } - }, - { - "type": "Feature", - "id": "Open-Seattle", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle", - "city": "Seattle, WA", - "events_url": "https:\\/\\/www.meetup.com\\/openseattle\\/", - "last_updated": 1512696826, - "latitude": 47.6062, - "longitude": -122.3321, - "member_count": 2808, - "name": "Open Seattle", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/past_events", - "projects_list_url": "http:\\/\\/openseattle.org\\/projects\\/index.csv", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/openseattle\\/", - "twitter": "@open_seattle" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "South", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Seattle\\/upcoming_events", - "website": "http:\\/\\/openseattle.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.3321, - 47.6062 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Greensboro", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro", - "city": "Greensboro, NC", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Greensboro\\/", - "last_updated": 1512696409, - "latitude": 36.069, - "longitude": -79.7947, - "member_count": 869, - "name": "Code for Greensboro", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforgso", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforgreensboro\\/", - "twitter": "@CodeForGSO" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Greensboro\\/upcoming_events", - "website": "http:\\/\\/codeforgreensboro.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -79.7947, - 36.069 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Raleigh", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh", - "city": "Raleigh, NC", - "events_url": "http:\\/\\/www.meetup.com\\/Triangle-Code-for-America\\/", - "last_updated": 1512696342, - "latitude": 35.7721, - "longitude": -78.6386, - "member_count": 1190, - "name": "Code for Raleigh", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforraleigh", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CityCampRal\\/", - "twitter": "@codeforraleigh" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Raleigh\\/upcoming_events", - "website": "http:\\/\\/www.codeforraleigh.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -78.6386, - 35.7721 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Fort-Lauderdale", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale", - "city": "Ft. Lauderdale, FL", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-FTL\\/", - "last_updated": 1512764459, - "latitude": 26.1237, - "longitude": -80.1436, - "member_count": 1831, - "name": "Code for Fort Lauderdale", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforftl", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeForFTL\\/", - "twitter": "@codeforftl" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Fort-Lauderdale\\/upcoming_events", - "website": "http:\\/\\/codeforftl.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -80.1436, - 26.1237 - ] - } - }, - { - "type": "Feature", - "id": "Friendly-Code", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code", - "city": "Grand Rapids, MI", - "events_url": "http:\\/\\/www.meetup.com\\/friendlycode\\/", - "last_updated": 1512696427, - "latitude": 42.9634, - "longitude": -85.6681, - "member_count": 124, - "name": "Friendly Code", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/friendlycode", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest", - "Official" - ], - "type": "Brigade, midwest, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Friendly-Code\\/upcoming_events", - "website": "http:\\/\\/friendlycode.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -85.6681, - 42.9634 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Brazil", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil", - "city": "Curitiba, PR", - "events_url": "http:\\/\\/www.meetup.com\\/openbrazil\\/", - "last_updated": 1512764716, - "latitude": -25.4952, - "longitude": -49.2874, - "member_count": 960, - "name": "Code for Brazil", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforbrazil", - "rss": "https:\\/\\/twitrss.me\\/twitter_user_to_rss\\/?user=openbrazil&replies=on", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Brazil\\/upcoming_events", - "website": "http:\\/\\/openbrazil.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -49.2874, - -25.4952 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Dresden", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden", - "city": "Dresden, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Dresden\\/", - "last_updated": 1512764793, - "latitude": 51.0333, - "longitude": 13.7333, - "member_count": 198, - "name": "OK Lab Dresden", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Dresden\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/dresden" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.7333, - 51.0333 - ] - } - }, - { - "type": "Feature", - "id": "Civic-Data-Alliance-(Louisville)", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)", - "city": "Louisville, KY", - "events_url": "https:\\/\\/www.meetup.com\\/Louisville-Civic-Data-Alliance\\/", - "last_updated": 1512696415, - "latitude": 38.2526647, - "longitude": -85.7584557, - "member_count": 572, - "name": "Civic Data Alliance (Louisville)", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/civicdata\\/", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/civicdata\\/", - "twitter": "@CivicDataAlly" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Civic-Data-Alliance-(Louisville)\\/upcoming_events", - "website": "civicdataalliance.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -85.7584557, - 38.2526647 - ] - } - }, - { - "type": "Feature", - "id": "Codeando-México", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México", - "city": "Mexico City, Mexico", - "events_url": null, - "last_updated": 1512939001, - "latitude": 23.6267, - "longitude": -102.5375, - "member_count": null, - "name": "Codeando México", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeandoMexico", - "rss": "http:\\/\\/blog.codeandomexico.org\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codeando-México\\/upcoming_events", - "website": "http:\\/\\/codeandomexico.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -102.5375, - 23.6267 - ] - } - }, - { - "type": "Feature", - "id": "Open-Indy", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy", - "city": "Indianapolis, IN", - "events_url": "http:\\/\\/www.meetup.com\\/Open-Indy-Brigade\\/", - "last_updated": 1512696424, - "latitude": 39.7669, - "longitude": -86.15, - "member_count": 572, - "name": "Open Indy", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": { - "twitter": "@IndyBrigade" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Indy\\/upcoming_events", - "website": "http:\\/\\/www.openindybrigade.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -86.15, - 39.7669 - ] - } - }, - { - "type": "Feature", - "id": "Code-the-South", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South", - "city": "Huntsville, AL", - "events_url": "http:\\/\\/www.facebook.com\\/groups\\/code4huntsville", - "last_updated": 1512938907, - "latitude": 34.7014, - "longitude": -86.6597, - "member_count": null, - "name": "Code the South", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code4huntsville", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/05\\/27", - "tags": [ - "Brigade", - "Official" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-the-South\\/upcoming_events", - "website": "http:\\/\\/www.code4huntsville.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -86.6597, - 34.7014 - ] - } - }, - { - "type": "Feature", - "id": "Open-Data-Delaware", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware", - "city": "Wilmington, DE", - "events_url": "https:\\/\\/www.meetup.com\\/Open-Data-Delaware\\/", - "last_updated": 1512696366, - "latitude": 39.7390721, - "longitude": -75.5397878, - "member_count": 745, - "name": "Open Data Delaware", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/OpenDataDE", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/opendatade\\/", - "twitter": "@opendatade" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Data-Delaware\\/upcoming_events", - "website": "http:\\/\\/www.opendatadelaware.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -75.5397878, - 39.7390721 - ] - } - }, - { - "type": "Feature", - "id": "Open-Zagreb", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb", - "city": "Zagreb, Croatia", - "events_url": null, - "last_updated": 1512697201, - "latitude": 45.793, - "longitude": 15.9464, - "member_count": null, - "name": "Open Zagreb", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/openzagreb", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Zagreb\\/upcoming_events", - "website": "http:\\/\\/zagreb.codecorcroatia.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 15.9464, - 45.793 - ] - } - }, - { - "type": "Feature", - "id": "Hack-MKE", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE", - "city": "Milwaukee, WI", - "events_url": "https:\\/\\/www.meetup.com\\/MKEData\\/", - "last_updated": 1512696485, - "latitude": 43.0389025, - "longitude": -87.9064736, - "member_count": 885, - "name": "Hack MKE", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/milwaukeedata", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-MKE\\/upcoming_events", - "website": "http:\\/\\/hackmke.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -87.9064736, - 43.0389025 - ] - } - }, - { - "type": "Feature", - "id": "Project-Open-Data", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data", - "city": "Washington, DC", - "events_url": null, - "last_updated": 1512764972, - "latitude": 38.9072, - "longitude": -77.0365, - "member_count": null, - "name": "Project Open Data", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/project-open-data", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Project-Open-Data\\/upcoming_events", - "website": "http:\\/\\/project-open-data.github.io\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.0365, - 38.9072 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Ghana", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana", - "city": "Accra, Ghana", - "events_url": null, - "last_updated": 1512073818, - "latitude": 5.5811, - "longitude": -0.199, - "member_count": null, - "name": "Code for Ghana", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/past_events", - "projects_list_url": "http:\\/\\/github.com\\/CodeForAfrica", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ghana\\/upcoming_events", - "website": "http:\\/\\/codeforghana.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -0.199, - 5.5811 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Sapporo", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo", - "city": "Sapporo, Japan", - "events_url": null, - "last_updated": 1512696839, - "latitude": 43.0553, - "longitude": 141.3455, - "member_count": null, - "name": "Code for Sapporo", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforsapporo", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Sapporo\\/upcoming_events", - "website": "http:\\/\\/www.codeforsapporo.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 141.3455, - 43.0553 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Long-Beach", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach", - "city": "Long Beach, CA", - "events_url": null, - "last_updated": 1512939020, - "latitude": 33.7683, - "longitude": -118.1956, - "member_count": null, - "name": "Code for Long Beach", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": { - "twitter": "@codefor_lb" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Long-Beach\\/upcoming_events", - "website": "http:\\/\\/www.codeforlb.com" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -118.1956, - 33.7683 - ] - } - }, - { - "type": "Feature", - "id": "Codigo-para-la-Ciudad-de-Mexico", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico", - "city": "Mexico City, MX", - "events_url": null, - "last_updated": 1512696895, - "latitude": 19.432, - "longitude": -99.1332, - "member_count": null, - "name": "Codigo para la Ciudad de Mexico", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/labplc", - "rss": "http:\\/\\/labplc.mx\\/category\\/conversaciones\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Codigo-para-la-Ciudad-de-Mexico\\/upcoming_events", - "website": "http:\\/\\/codigo.labplc.mx" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -99.1332, - 19.432 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Okinawa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa", - "city": "Okinawa, Japan", - "events_url": null, - "last_updated": 1512764852, - "latitude": 26.2124, - "longitude": 127.6809, - "member_count": null, - "name": "Code for Okinawa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforokinawa", - "rss": "http:\\/\\/code4okinawa.org\\/feed", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Okinawa\\/upcoming_events", - "website": "http:\\/\\/code4okinawa.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 127.6809, - 26.2124 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Ibaraki", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki", - "city": "Ibaraki, Japan", - "events_url": null, - "last_updated": 1512073923, - "latitude": 36.3072, - "longitude": 140.392, - "member_count": null, - "name": "Code for Ibaraki", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforibaraki", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ibaraki\\/upcoming_events", - "website": "http:\\/\\/codeforibaraki.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 140.392, - 36.3072 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Charlotte", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte", - "city": "Charlotte, NC", - "events_url": "https:\\/\\/www.meetup.com\\/Code-For-Charlotte", - "last_updated": 1512696553, - "latitude": 35.2032, - "longitude": -80.8395, - "member_count": 959, - "name": "Code for Charlotte", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForCharlotte", - "rss": "https:\\/\\/medium.com\\/code-for-charlotte", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforcharlotte", - "twitter": "@codeforclt" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Charlotte\\/upcoming_events", - "website": "http:\\/\\/codeforcharlotte.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -80.8395, - 35.2032 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Magdeburg", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg", - "city": "Madgeburg, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Magdeburg\\/", - "last_updated": 1512764581, - "latitude": 52.1205, - "longitude": 11.6276, - "member_count": 114, - "name": "OK Lab Magdeburg", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Magdeburg\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/magdeburg\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.6276, - 52.1205 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Stuttgart", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart", - "city": "Stuttgart, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Stuttgart-Meet-Up\\/", - "last_updated": 1512938982, - "latitude": 48.7786, - "longitude": 9.1794, - "member_count": 287, - "name": "OK Lab Stuttgart", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Stuttgart\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/stuttgart" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.1794, - 48.7786 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tallahassee", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee", - "city": "Tallahassee, FL", - "events_url": "http:\\/\\/www.codefortallahassee.org\\/#events", - "last_updated": 1511814801, - "latitude": 30.4380556, - "longitude": -84.2808333, - "member_count": null, - "name": "Code for Tallahassee", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefortallahassee", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/05\\/27", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tallahassee\\/upcoming_events", - "website": "http:\\/\\/www.codefortallahassee.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -84.2808333, - 30.4380556 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Berlin", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin", - "city": "Berlin, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Berlin\\/", - "last_updated": 1512697072, - "latitude": 52.5167, - "longitude": 13.3833, - "member_count": 935, - "name": "OK Lab Berlin", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1FJJqMiofGyqBERXHBKkvQmlDnNVwxbQdkuRBSsvbUfQ\\/export?format=csv", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Berlin\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/berlin" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 13.3833, - 52.5167 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Anchorage", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage", - "city": "Anchorage, AK", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Anchorage", - "last_updated": 1512765192, - "latitude": 61.2181, - "longitude": -149.9003, - "member_count": 210, - "name": "Code for Anchorage", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforanchorage", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforanc\\/", - "twitter": "@CodeForAnc" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Anchorage\\/upcoming_events", - "website": "http:\\/\\/codeforanchorage.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -149.9003, - 61.2181 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Nashville", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville", - "city": "Nashville, TN", - "events_url": "https:\\/\\/www.meetup.com\\/code-for-nashville\\/", - "last_updated": 1511987719, - "latitude": 36.1678, - "longitude": -86.7782, - "member_count": 1800, - "name": "Code for Nashville", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code-for-nashville", - "rss": "http:\\/\\/www.codefornashville.org\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nashville\\/upcoming_events", - "website": "http:\\/\\/www.codefornashville.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -86.7782, - 36.1678 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Europe", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe", - "city": "Europe", - "events_url": null, - "last_updated": 1512697206, - "latitude": 50.8427, - "longitude": 4.3781, - "member_count": null, - "name": "Code for Europe", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforeurope", - "rss": "http:\\/\\/codeforeurope.net\\/stories\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Europe\\/upcoming_events", - "website": "http:\\/\\/codeforeurope.net\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 4.3781, - 50.8427 - ] - } - }, - { - "type": "Feature", - "id": "CodeNamu", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu", - "city": "Seoul, South Korea", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Seoul", - "last_updated": 1512851559, - "latitude": 37.515, - "longitude": 127.0165, - "member_count": 1334, - "name": "CodeNamu", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforseoul", - "rss": "http:\\/\\/codenamu.org\\/feed\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for All" - ], - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/CodeNamu\\/upcoming_events", - "website": "http:\\/\\/codenamu.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 127.0165, - 37.515 - ] - } - }, - { - "type": "Feature", - "id": "Tech-Bark", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark", - "city": "Dekalb, IL", - "events_url": "www.huskiehack.org", - "last_updated": 1512696825, - "latitude": 41.9293, - "longitude": -88.7493, - "member_count": null, - "name": "Tech Bark", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/HuskieHack", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Tech-Bark\\/upcoming_events", - "website": "http:\\/\\/niu.edu\\/huskiehack\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -88.7493, - 41.9293 - ] - } - }, - { - "type": "Feature", - "id": "Hacking-Madison", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison", - "city": "Madison,WI", - "events_url": "http:\\/\\/www.meetup.com\\/Civic-hacking-Madison\\/", - "last_updated": 1512764519, - "latitude": 43.0731, - "longitude": -89.4012, - "member_count": 269, - "name": "Hacking Madison", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/hackingmadison", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest" - ], - "type": "Brigade, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Madison\\/upcoming_events", - "website": "http:\\/\\/hackingmadison.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -89.4012, - 43.0731 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Saitama", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama", - "city": "Saitama, Japan", - "events_url": null, - "last_updated": 1512764566, - "latitude": 35.9985, - "longitude": 139.3496, - "member_count": null, - "name": "Code for Saitama", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Saitama\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/groups\\/186097664924714\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.3496, - 35.9985 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Nagareyama", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama", - "city": "Nagareyama, Japan", - "events_url": null, - "last_updated": 1511988116, - "latitude": 35.8586, - "longitude": 139.9116, - "member_count": null, - "name": "Code for Nagareyama", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Nagareyama\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/pages\\/Code-for-NAGAREYAMA\\/445633632232347" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.9116, - 35.8586 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Chofu", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu", - "city": "Chofu, Japan", - "events_url": null, - "last_updated": 1512246882, - "latitude": 35.6471, - "longitude": 139.5439, - "member_count": null, - "name": "Code for Chofu", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/03\\/10", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Chofu\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/codeforchofu" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.5439, - 35.6471 - ] - } - }, - { - "type": "Feature", - "id": "Loomio", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio", - "city": "Wellington, New Zealand", - "events_url": null, - "last_updated": 1512419468, - "latitude": -41.2866, - "longitude": 174.7755, - "member_count": null, - "name": "Loomio", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/loomio", - "rss": "http:\\/\\/blog.loomio.org\\/feed\\/", - "social_profiles": null, - "started_on": "2016\\/01\\/05", - "tags": null, - "type": "Partner", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Loomio\\/upcoming_events", - "website": "http:\\/\\/www.loomio.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 174.7755, - -41.2866 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Aizu", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu", - "city": "Aizuwakamatsu, Japan", - "events_url": null, - "last_updated": 1511987892, - "latitude": 37.4896, - "longitude": 139.93, - "member_count": null, - "name": "Code for Aizu", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Code for Japan", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Aizu\\/upcoming_events", - "website": "http:\\/\\/aizu.io\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.93, - 37.4896 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Hamburg", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg", - "city": "Hamburg, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/codeforhamburg\\/", - "last_updated": 1512938815, - "latitude": 53.54762, - "longitude": 9.97776, - "member_count": 1213, - "name": "Code for Hamburg", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1OIQ4NsQ4v9LqYolsp7tvOthmf67dWn5KlnGocv2_QAY\\/export?format=csv", - "rss": null, - "social_profiles": null, - "started_on": "2016\\/05\\/04", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hamburg\\/upcoming_events", - "website": "http:\\/\\/codeforhamburg.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 9.97776, - 53.54762 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Hampton-Roads", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads", - "city": "Hampton Roads, VA (Region)", - "events_url": "http:\\/\\/www.meetup.com\\/Code4HR", - "last_updated": 1512938855, - "latitude": 36.847, - "longitude": -76.2922, - "member_count": 411, - "name": "Code for Hampton Roads", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1Bs2ulkOn6stjM4lp81f3KR_S22G6bvmOATVAioxE_qg\\/export?format=csv", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/code4hr", - "twitter": "@code4hr" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hampton-Roads\\/upcoming_events", - "website": "http:\\/\\/Code4HR.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -76.2922, - 36.847 - ] - } - }, - { - "type": "Feature", - "id": "OpenSMC", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC", - "city": "San Mateo County, CA", - "events_url": "http:\\/\\/www.meetup.com\\/opensmc\\/", - "last_updated": 1512938908, - "latitude": 37.4889, - "longitude": -122.2308773, - "member_count": 378, - "name": "OpenSMC", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/188H7C7t6RMHL5vOwLJggz2ZeywRwVpFSIzSNApLNc_I\\/export?format=csv", - "rss": "https:\\/\\/www.opensmc.tech\\/blog\\/", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/opensmc\\/", - "twitter": "@opensmc" - }, - "started_on": "2015\\/11\\/30", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OpenSMC\\/upcoming_events", - "website": "https:\\/\\/www.opensmc.tech" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.2308773, - 37.4889 - ] - } - }, - { - "type": "Feature", - "id": "Beta-NYC", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC", - "city": "New York, NY", - "events_url": "http:\\/\\/www.meetup.com\\/BetaNYC\\/", - "last_updated": 1512764660, - "latitude": 40.7144, - "longitude": -74.006, - "member_count": 4560, - "name": "Beta NYC", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/past_events", - "projects_list_url": null, - "rss": "https:\\/\\/beta.nyc\\/category\\/blog\\/rss", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Beta-NYC\\/upcoming_events", - "website": "http:\\/\\/www.beta.nyc" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -74.006, - 40.7144 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Japan", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan", - "city": "Japan", - "events_url": "http:\\/\\/codeforjapan.doorkeeper.jp\\/", - "last_updated": 1512851528, - "latitude": 36.2048, - "longitude": 138.2529, - "member_count": null, - "name": "Code for Japan", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforjapan", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/05\\/05", - "tags": [ - "Brigade", - "Code for All" - ], - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Japan\\/upcoming_events", - "website": "http:\\/\\/code4japan.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 138.2529, - 36.2048 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Boston", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston", - "city": "Boston, MA", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Boston\\/", - "last_updated": 1512696567, - "latitude": 42.3584, - "longitude": -71.0598, - "member_count": 4231, - "name": "Code for Boston", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1kdBUuPDLEyL5ZYZ2ZGcSa1VwN6UAW82bA_5ZWI70P5I\\/export?format=csv", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforboston\\/", - "twitter": "@codeforboston" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Boston\\/upcoming_events", - "website": "http:\\/\\/www.codeforboston.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -71.0598, - 42.3584 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-America", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America", - "city": "San Francisco, CA", - "events_url": null, - "last_updated": 1512765047, - "latitude": 37.7759, - "longitude": -122.4137, - "member_count": null, - "name": "Code for America", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforamerica", - "rss": "http:\\/\\/www.codeforamerica.org\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-America\\/upcoming_events", - "website": "http:\\/\\/codeforamerica.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.4137, - 37.7759 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Jena", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena", - "city": "Jena, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Jena\\/", - "last_updated": 1512696845, - "latitude": 50.9271, - "longitude": 11.5892, - "member_count": 261, - "name": "OK Lab Jena", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Jena\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/jena\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.5892, - 50.9271 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Jersey-City", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City", - "city": "Jersey City, NJ", - "events_url": "http:\\/\\/www.meetup.com\\/Code-For-Jersey-City", - "last_updated": 1511815340, - "latitude": 40.7282, - "longitude": -74.0776, - "member_count": 641, - "name": "Code for Jersey City", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForJerseyCity", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Jersey-City\\/upcoming_events", - "website": "http:\\/\\/codeforjc.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -74.0776, - 40.7282 - ] - } - }, - { - "type": "Feature", - "id": "FreeGeekChicago", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago", - "city": "Chicago, IL", - "events_url": null, - "last_updated": 1512764947, - "latitude": 41.8781, - "longitude": -87.6298, - "member_count": null, - "name": "FreeGeekChicago", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/sc3\\/", - "rss": "http:\\/\\/freegeekchicago.org\\/feed", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "partner", - "midwest" - ], - "type": "partner, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/FreeGeekChicago\\/upcoming_events", - "website": "http:\\/\\/www.freegeekchicago.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -87.6298, - 41.8781 - ] - } - }, - { - "type": "Feature", - "id": "mySociety", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety", - "city": "Oxford, UK", - "events_url": "https:\\/\\/www.google.com\\/calendar\\/embed?src=9uqu3bbqcdaqek6lkiub442di4%40group.calendar.google.com&ctz=Europe\\/London", - "last_updated": 1512937854, - "latitude": 51.7519, - "longitude": 1.2578, - "member_count": null, - "name": "mySociety", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/mysociety\\/", - "rss": "https:\\/\\/www.mysociety.org\\/feed\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Partner" - ], - "type": "Partner", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/mySociety\\/upcoming_events", - "website": "https:\\/\\/www.mysociety.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -0.105290718469565, - 51.62264036083571 - ] - } - }, - { - "type": "Feature", - "id": "18F", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F", - "city": "San Francisco, CA", - "events_url": null, - "last_updated": 1512937895, - "latitude": 37.7759, - "longitude": -122.4137, - "member_count": null, - "name": "18F", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/18f", - "rss": "http:\\/\\/18fblog.tumblr.com\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/18F\\/upcoming_events", - "website": "https:\\/\\/18f.gsa.gov\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.4137, - 37.7759 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Silesia", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia", - "city": "Katowice, Poland", - "events_url": "http:\\/\\/www.meetup.com\\/Koduj-dla-Polski-Silesia\\/", - "last_updated": 1512764616, - "latitude": 50.2638531, - "longitude": 18.9935899, - "member_count": 352, - "name": "Code for Silesia", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/past_events", - "projects_list_url": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/gop-katowice\\/?csv=show", - "rss": "http:\\/\\/kodujdlapolski.pl\\/en\\/category\\/katowice-en\\/", - "social_profiles": null, - "started_on": "2016\\/03\\/04", - "tags": [ - "Brigade", - "Code for Poland" - ], - "type": "Brigade, Code for Poland", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Silesia\\/upcoming_events", - "website": "http:\\/\\/kodujdlapolski.pl\\/en\\/cities\\/gop-katowice\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 18.9935899, - 50.2638531 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kansas-City", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City", - "city": "Kansas City, KS & MO", - "events_url": "https:\\/\\/www.meetup.com\\/KCBrigade\\/", - "last_updated": 1512697035, - "latitude": 39.103, - "longitude": -94.5831, - "member_count": 1041, - "name": "Code for Kansas City", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforkansascity", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforkc", - "twitter": "@codeforkc" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for America", - "midwest", - "Official" - ], - "type": "Brigade, midwest, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kansas-City\\/upcoming_events", - "website": "http:\\/\\/codeforkc.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -94.5831, - 39.103 - ] - } - }, - { - "type": "Feature", - "id": "g0v.tw", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw", - "city": "Taipei, Taiwan", - "events_url": null, - "last_updated": 1512764464, - "latitude": 25.0478, - "longitude": 121.5319, - "member_count": null, - "name": "g0v.tw", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/g0v\\/", - "rss": "https:\\/\\/g0vsite.firebaseio.com\\/feed\\/blog\\/articles", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for All" - ], - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/g0v.tw\\/upcoming_events", - "website": "http:\\/\\/g0v.tw\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 121.5319, - 25.0478 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-New-Hampshire", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire", - "city": "Concord, NH", - "events_url": "http:\\/\\/www.meetup.com\\/codefornh\\/", - "last_updated": 1512851608, - "latitude": 43.2067, - "longitude": -71.5381, - "member_count": 97, - "name": "Code for New Hampshire", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefornh", - "rss": "http:\\/\\/www.codefornh.org\\/feed.xml", - "social_profiles": null, - "started_on": "2015\\/12\\/10", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-New-Hampshire\\/upcoming_events", - "website": "http:\\/\\/www.codefornh.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -71.5381, - 43.2067 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kenya", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya", - "city": "Nairobi, Kenya", - "events_url": null, - "last_updated": 1512695337, - "latitude": -1.2993, - "longitude": 36.7654, - "member_count": null, - "name": "Code for Kenya", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/past_events", - "projects_list_url": "http:\\/\\/github.com\\/CodeForAfrica", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kenya\\/upcoming_events", - "website": "http:\\/\\/code4kenya.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 36.7654, - -1.2993 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Wuppertal", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal", - "city": "Wuppertal, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OKLab-Wuppertal-Meetup\\/", - "last_updated": 1512697154, - "latitude": 51.2562, - "longitude": 7.1508, - "member_count": 195, - "name": "OK Lab Wuppertal", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Wuppertal\\/upcoming_events", - "website": "https:\\/\\/opendatal.de\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 7.1508, - 51.2562 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Asheville", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville", - "city": "Asheville, NC", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Asheville\\/", - "last_updated": 1512696466, - "latitude": 35.5951, - "longitude": -82.5515, - "member_count": 499, - "name": "Code for Asheville", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforasheville", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforasheville\\/", - "twitter": "@code4asheville" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Asheville\\/upcoming_events", - "website": "http:\\/\\/codeforasheville.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -82.5515, - 35.5951 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Frankfurt", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt", - "city": "Frankfurt, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OKLabFfm\\/", - "last_updated": 1512247100, - "latitude": 50.1109, - "longitude": 8.6821, - "member_count": 1117, - "name": "OK Lab Frankfurt", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Frankfurt\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/frankfurt\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 8.6821, - 50.1109 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-München", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München", - "city": "Munich, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Munchen\\/", - "last_updated": 1512764602, - "latitude": 48.1333, - "longitude": 11.5667, - "member_count": 689, - "name": "OK Lab München", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeformunich", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-München\\/upcoming_events", - "website": "http:\\/\\/codefor.de\\/muenchen" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 11.5667, - 48.1333 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-DC", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC", - "city": "Washington, DC", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-DC", - "last_updated": 1512764634, - "latitude": 38.9072, - "longitude": -77.0365, - "member_count": 3816, - "name": "Code for DC", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefordc", - "rss": null, - "social_profiles": { - "twitter": "@CodeforDC" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-DC\\/upcoming_events", - "website": "https:\\/\\/codefordc.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.0365, - 38.9072 - ] - } - }, - { - "type": "Feature", - "id": "Open-San-Diego", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego", - "city": "San Diego, CA", - "events_url": "https:\\/\\/www.meetup.com\\/Open-San-Diego", - "last_updated": 1512938915, - "latitude": 32.7153, - "longitude": -117.1573, - "member_count": 581, - "name": "Open San Diego", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opensandiego", - "rss": null, - "social_profiles": { - "twitter": "@OpenSanDiego" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-San-Diego\\/upcoming_events", - "website": "http:\\/\\/opensandiego.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -117.1573, - 32.7153 - ] - } - }, - { - "type": "Feature", - "id": "Presidential-Innovation-Fellows", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows", - "city": "Washington, DC", - "events_url": null, - "last_updated": 1512696386, - "latitude": 38.9072, - "longitude": -77.0365, - "member_count": null, - "name": "Presidential Innovation Fellows", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/presidential-innovation-fellows", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Presidential-Innovation-Fellows\\/upcoming_events", - "website": "http:\\/\\/presidentialinnovation.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.0365, - 38.9072 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Portland", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland", - "city": "Portland, OR", - "events_url": "http:\\/\\/www.meetup.com\\/CodeForPortland\\/", - "last_updated": 1512851589, - "latitude": 45.5118, - "longitude": -122.6756, - "member_count": 518, - "name": "Code for Portland", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforportland", - "rss": "http:\\/\\/www.codeforportland.org\\/news\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Portland\\/upcoming_events", - "website": "http:\\/\\/www.codeforportland.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.6756, - 45.5118 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kanazawa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa", - "city": "Kanazawa, Japan", - "events_url": "https:\\/\\/www.facebook.com\\/CodeForKanazawa", - "last_updated": 1512695125, - "latitude": 36.575, - "longitude": 136.6469, - "member_count": null, - "name": "Code for Kanazawa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforkanazawa-org", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kanazawa\\/upcoming_events", - "website": "http:\\/\\/www.codeforkanazawa.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 136.6469, - 36.575 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Berkeley", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley", - "city": "Berkeley, CA", - "events_url": "TBA", - "last_updated": 1512764963, - "latitude": 37.8715926, - "longitude": -122.272747, - "member_count": null, - "name": "Code for Berkeley", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/past_events", - "projects_list_url": "github.com\\/CodeForBerkeley", - "rss": null, - "social_profiles": { - "facebook": "fb.com\\/CodeForBerkeley" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Berkeley\\/upcoming_events", - "website": "TBA" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.272747, - 37.8715926 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Australia", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia", - "city": "Melbourne, Australia", - "events_url": "http:\\/\\/www.meetup.com\\/Civic-Lab-Melbourne", - "last_updated": 1512697027, - "latitude": -37.8132, - "longitude": 144.955, - "member_count": 510, - "name": "Code for Australia", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeforAustralia", - "rss": "http:\\/\\/blog.codeforaustralia.org\\/feeds\\/rss", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for All" - ], - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Australia\\/upcoming_events", - "website": "http:\\/\\/www.codeforaustralia.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 144.955, - -37.8132 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kashiwa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa", - "city": "Kashiwa, Japan", - "events_url": null, - "last_updated": 1512697115, - "latitude": 35.8614, - "longitude": 139.9801, - "member_count": null, - "name": "Code for Kashiwa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kashiwa\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/code4kashiwa" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.9801, - 35.8614 - ] - } - }, - { - "type": "Feature", - "id": "Sketch-City-(Houston)", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)", - "city": "Houston, TX", - "events_url": "https:\\/\\/www.meetup.com\\/sketchcity\\/", - "last_updated": 1512764421, - "latitude": 29.7604267, - "longitude": -95.3698028, - "member_count": 2760, - "name": "Sketch City (Houston)", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/sketch-city", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/groups\\/openhoustongov\\/" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Sketch-City-(Houston)\\/upcoming_events", - "website": "http:\\/\\/sketchcity.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -95.3698028, - 29.7604267 - ] - } - }, - { - "type": "Feature", - "id": "Data.gov", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov", - "city": "Washington, DC", - "events_url": null, - "last_updated": 1512695427, - "latitude": 38.9072, - "longitude": -77.0365, - "member_count": null, - "name": "Data.gov", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheet\\/pub?key=0ArHmv-6U1drqdG81Tjh5RjlBTkR3RVdGREFZdDluZ2c&output=csv", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Data.gov\\/upcoming_events", - "website": "http:\\/\\/www.data.gov" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -77.0365, - 38.9072 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-San-Francisco", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco", - "city": "San Francisco, CA", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-San-Francisco-Civic-Hack-Night\\/", - "last_updated": 1512764647, - "latitude": 37.7749, - "longitude": -122.4194, - "member_count": 4406, - "name": "Code for San Francisco", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/past_events", - "projects_list_url": "https:\\/\\/docs.google.com\\/spreadsheet\\/pub?key=0ArHmv-6U1drqdDVGZzdiMVlkMnRJLXp2cm1ZTUhMOFE&output=csv", - "rss": "http:\\/\\/codeforsanfrancisco.org\\/blog\\/", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforsanfrancisco\\/", - "twitter": "@SFbrigade" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-San-Francisco\\/upcoming_events", - "website": "http:\\/\\/codeforsanfrancisco.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -122.4194, - 37.7749 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Princeton", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton", - "city": "Princeton, NJ", - "events_url": "https:\\/\\/www.meetup.com\\/codeforprinceton\\/", - "last_updated": 1512939022, - "latitude": 40.3572976, - "longitude": -74.6672226, - "member_count": 796, - "name": "Code for Princeton", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/past_events", - "projects_list_url": "github.com\\/codeforprinceton", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforprinceton\\/", - "twitter": "@codeprinceton" - }, - "started_on": "2017\\/10\\/22", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Princeton\\/upcoming_events", - "website": "https:\\/\\/codeforprincetonblog.wordpress.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -74.6672226, - 40.3572976 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tuscaloosa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa", - "city": "Tuscaloosa, AL", - "events_url": null, - "last_updated": 1512939019, - "latitude": 33.2105, - "longitude": -87.5659, - "member_count": 17, - "name": "Code for Tuscaloosa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeforTuscaloosa", - "rss": "http:\\/\\/codefortuscaloosa.org\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tuscaloosa\\/upcoming_events", - "website": "http:\\/\\/codefortuscaloosa.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -87.5659, - 33.2105 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Kawasaki", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki", - "city": "Kawasaki, Japan", - "events_url": "http:\\/\\/www.meetup.com\\/open_kawasaki", - "last_updated": 1512851523, - "latitude": 35.5309, - "longitude": 139.703, - "member_count": null, - "name": "Code for Kawasaki", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/openkawasaki", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/03\\/10", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Kawasaki\\/upcoming_events", - "website": "http:\\/\\/openkawasaki.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 139.703, - 35.5309 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Hawaii", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii", - "city": "Honolulu, HI", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Hawaii\\/", - "last_updated": 1512697269, - "latitude": 21.3069, - "longitude": -157.8583, - "member_count": 285, - "name": "Code for Hawaii", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforhawaii", - "rss": "http:\\/\\/blog.codeforhawaii.org\\/", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codeforhawaii\\/", - "twitter": "@codeforhawaii" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Hawaii\\/upcoming_events", - "website": "http:\\/\\/www.codeforhawaii.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -157.8583, - 21.3069 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Summit-County", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County", - "city": "Akron, OH", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Summit-County\\/", - "last_updated": 1512938997, - "latitude": 41.0814, - "longitude": -81.519, - "member_count": 85, - "name": "Code for Summit County", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForSummitCounty", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "midwest" - ], - "type": "Brigade, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Summit-County\\/upcoming_events", - "website": "http:\\/\\/codeforsummitcounty.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -81.519, - 41.0814 - ] - } - }, - { - "type": "Feature", - "id": "Open-Savannah", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah", - "city": "Savannah, GA", - "events_url": "http:\\/\\/www.meetup.com\\/opensavannah\\/", - "last_updated": 1512696803, - "latitude": 32.0835, - "longitude": -81.0998, - "member_count": 230, - "name": "Open Savannah", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/opensavannah", - "rss": "https:\\/\\/blog.opensavannah.org\\/feed", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/opensavannah", - "twitter": "@open_savannah" - }, - "started_on": "2017\\/03\\/21", - "tags": [ - "Brigade", - "Official", - "Code for America", - "South" - ], - "type": "Brigade, Official, South", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Savannah\\/upcoming_events", - "website": "http:\\/\\/opensavannah.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -81.0998, - 32.0835 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Winston-Salem", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem", - "city": "Winston-Salem, NC", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Winston-Salem\\/", - "last_updated": 1512696492, - "latitude": 36.0998596, - "longitude": -80.244216, - "member_count": 260, - "name": "Code for Winston Salem", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForWinstonSalem", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/10\\/23", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Winston-Salem\\/upcoming_events", - "website": "codeforws.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -80.244216, - 36.0998596 - ] - } - }, - { - "type": "Feature", - "id": "BMG-Hack", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack", - "city": "Bloomington, IN", - "events_url": "null", - "last_updated": 1512765013, - "latitude": 39.1653, - "longitude": -86.5264, - "member_count": null, - "name": "BMG Hack", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/BMGhack\\/civic-hacking", - "rss": null, - "social_profiles": { - "Google": "https:\\/\\/groups.google.com\\/a\\/bloomington.in.gov\\/forum\\/#!forum\\/civic-hacking" - }, - "started_on": "2017\\/12\\/08", - "tags": [ - "Brigade", - "Code for America" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/BMG-Hack\\/upcoming_events", - "website": "https:\\/\\/github.com\\/BMGhack\\/civic-hacking" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -86.5264, - 39.1653 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Africa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa", - "city": null, - "events_url": "http:\\/\\/www.meetup.com\\/HacksHackersAfrica\\/", - "last_updated": 1511901777, - "latitude": 4.1651, - "longitude": 25.4224, - "member_count": 879, - "name": "Code for Africa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForAfrica", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Africa\\/upcoming_events", - "website": "http:\\/\\/www.codeforafrica.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 25.4224, - 4.1651 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tulsa", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa", - "city": "Tulsa, OK", - "events_url": "http:\\/\\/www.meetup.com\\/Code-for-Tulsa\\/", - "last_updated": 1512764982, - "latitude": 36.154, - "longitude": -95.9928, - "member_count": 271, - "name": "Code for Tulsa", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefortulsa", - "rss": null, - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/CodeForTulsa\\/", - "twitter": "@CodeForTulsa" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tulsa\\/upcoming_events", - "website": "http:\\/\\/codefortulsa.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -95.9928, - 36.154 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Romania:-Iasi-Partner", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner", - "city": "Iasi, Romania", - "events_url": "https:\\/\\/www.meetup.com\\/Code-for-Romania\\/", - "last_updated": 1512696353, - "latitude": 47.151726, - "longitude": 27.587914, - "member_count": 1104, - "name": "Code for Romania: Iasi Partner", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/code4romania\\/", - "rss": null, - "social_profiles": null, - "started_on": "2017\\/06\\/28", - "tags": [ - "Brigade", - "Code for Romania" - ], - "type": "Brigade, Code for Romania", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Romania:-Iasi-Partner\\/upcoming_events", - "website": "http:\\/\\/code4.ro\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 27.587914, - 47.151726 - ] - } - }, - { - "type": "Feature", - "id": "Chi-Hack-Night", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night", - "city": "Chicago, IL", - "events_url": null, - "last_updated": 1512696860, - "latitude": 41.8781, - "longitude": -87.6298, - "member_count": null, - "name": "Chi Hack Night", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/past_events", - "projects_list_url": "https:\\/\\/raw.github.com\\/open-city\\/civic-json-files\\/master\\/projects.json", - "rss": "http:\\/\\/chihacknight.org\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America", - "midwest" - ], - "type": "Brigade, midwest", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Chi-Hack-Night\\/upcoming_events", - "website": "http:\\/\\/chihacknight.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -87.6298, - 41.8781 - ] - } - }, - { - "type": "Feature", - "id": "OK-Lab-Chemnitz", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz", - "city": "Chemnitz, Germany", - "events_url": "http:\\/\\/www.meetup.com\\/OK-Lab-Chemnitz\\/", - "last_updated": 1512851601, - "latitude": 50.8333, - "longitude": 12.9167, - "member_count": 111, - "name": "OK Lab Chemnitz", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeforChemnitz", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "OK Lab" - ], - "type": "Brigade, OK Lab", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/OK-Lab-Chemnitz\\/upcoming_events", - "website": "http:\\/\\/codeforchemnitz.de" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 12.9167, - 50.8333 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Durham", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham", - "city": "Durham, NC", - "events_url": "http:\\/\\/www.meetup.com\\/Triangle-Code-for-America\\/", - "last_updated": 1512938968, - "latitude": 35.994, - "longitude": -78.8986, - "member_count": 1191, - "name": "Code for Durham", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/past_events", - "projects_list_url": "http:\\/\\/codefordurham.com\\/projects.csv", - "rss": "http:\\/\\/codefordurham.com\\/project-updates?format=rss", - "social_profiles": { - "facebook": "https:\\/\\/www.facebook.com\\/codefordurham\\/", - "twitter": "@codefordurham" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Durham\\/upcoming_events", - "website": "http:\\/\\/codefordurham.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -78.8986, - 35.994 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Gifu", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu", - "city": "Gifu, Japan", - "events_url": null, - "last_updated": 1512696405, - "latitude": 35.4102, - "longitude": 136.7678, - "member_count": null, - "name": "Code for Gifu", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/past_events", - "projects_list_url": null, - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Gifu\\/upcoming_events", - "website": "https:\\/\\/www.facebook.com\\/pages\\/CODE-for-GIFU\\/592157627504886" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 136.7678, - 35.4102 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Ireland", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland", - "city": "Ireland", - "events_url": "http:\\/\\/codeforireland.com\\/events\\/", - "last_updated": 1512764627, - "latitude": 53.4129, - "longitude": -8.2439, - "member_count": null, - "name": "Code for Ireland", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforireland", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Code for All" - ], - "type": "Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Ireland\\/upcoming_events", - "website": "http:\\/\\/codeforireland.com\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -6.257201628137899, - 53.35124084081707 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Eau-Claire", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire", - "city": "Eau Claire, WI", - "events_url": "http:\\/\\/www.meetup.com\\/Code-For-Eau-Claire", - "last_updated": 1512851526, - "latitude": 44.8113, - "longitude": -91.4985, - "member_count": 201, - "name": "Code for Eau Claire", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codeforeauclaire", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/28", - "tags": [ - "Brigade" - ], - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Eau-Claire\\/upcoming_events", - "website": "http:\\/\\/codeforeauclaire.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -91.4985, - 44.8113 - ] - } - }, - { - "type": "Feature", - "id": "Open-Lexington", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington", - "city": "Lexington, KY", - "events_url": "https:\\/\\/www.meetup.com\\/openlexington\\/", - "last_updated": 1512938828, - "latitude": 38.0406, - "longitude": -84.5037, - "member_count": 190, - "name": "Open Lexington", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/openlexington", - "rss": null, - "social_profiles": { - "twitter": "@openlexington" - }, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Official", - "Code for America" - ], - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Open-Lexington\\/upcoming_events", - "website": "http:\\/\\/openlexington.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -84.5037, - 38.0406 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Tomorrow", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow", - "city": "Taiwan", - "events_url": "http:\\/\\/codefortomorrow.org\\/events", - "last_updated": 1512851593, - "latitude": 23.5531, - "longitude": 121.0211, - "member_count": null, - "name": "Code for Tomorrow", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/codefortomorrow", - "rss": "http:\\/\\/codefortomorrow.org\\/blog\\/", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": [ - "Brigade", - "Code for All" - ], - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Tomorrow\\/upcoming_events", - "website": "http:\\/\\/codefortomorrow.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 121.0211, - 23.5531 - ] - } - }, - { - "type": "Feature", - "id": "City-of-Helsinki", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki", - "city": "Helsinki, Finland", - "events_url": "http:\\/\\/dev.hel.fi\\/events\\/", - "last_updated": 1512764968, - "latitude": 60.1921, - "longitude": 60.1921, - "member_count": null, - "name": "City of Helsinki", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/past_events", - "projects_list_url": "http:\\/\\/dev.hel.fi\\/projects\\/projects.csv", - "rss": "http:\\/\\/dev.hel.fi\\/blog\\/feed\\/", - "social_profiles": null, - "started_on": "2015\\/12\\/23", - "tags": [ - "Government" - ], - "type": "Government", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/City-of-Helsinki\\/upcoming_events", - "website": "http:\\/\\/dev.hel.fi\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - 24.948300559109786, - 60.16799112034094 - ] - } - }, - { - "type": "Feature", - "id": "Code-for-Curitiba", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba", - "city": "Curitiba, PR", - "events_url": "http:\\/\\/www.meetup.com\\/openbrazil\\/", - "last_updated": 1511901386, - "latitude": -25.4952, - "longitude": -49.2874, - "member_count": 957, - "name": "Code for Curitiba", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/CodeForCuritiba", - "rss": "https:\\/\\/twitrss.me\\/twitter_user_to_rss\\/?user=openbrazil&replies=on", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Code-for-Curitiba\\/upcoming_events", - "website": "http:\\/\\/codeforcuritiba.org" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -49.2874, - -25.4952 - ] - } - }, - { - "type": "Feature", - "id": "Hack-for-LA", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA", - "city": "Los Angeles, CA", - "events_url": "https:\\/\\/www.meetup.com\\/hackforla\\/", - "last_updated": 1511901627, - "latitude": 34.0522, - "longitude": -118.2437, - "member_count": 2471, - "name": "Hack for LA", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/hackforla", - "rss": "http:\\/\\/www.hackforla.org\\/blog", - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Official", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hack-for-LA\\/upcoming_events", - "website": "http:\\/\\/www.hackforla.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -118.2437, - 34.0522 - ] - } - }, - { - "type": "Feature", - "id": "Hacking-Monterrey", - "properties": { - "all_attendance": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/attendance", - "all_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/events", - "all_issues": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/issues", - "all_projects": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/projects", - "all_stories": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/stories", - "api_url": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey", - "city": "Monterrey, Mexico", - "events_url": "http:\\/\\/www.meetup.com\\/Open-Data-Monterrey\\/", - "last_updated": 1512419479, - "latitude": 25.6488, - "longitude": -100.3031, - "member_count": 418, - "name": "Hacking Monterrey", - "past_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/past_events", - "projects_list_url": "https:\\/\\/github.com\\/hackingmty", - "rss": null, - "social_profiles": null, - "started_on": "2015\\/11\\/26", - "tags": null, - "type": "Brigade, Code for All", - "upcoming_events": "http:\\/\\/api.codeforamerica.org\\/api\\/organizations\\/Hacking-Monterrey\\/upcoming_events", - "website": "http:\\/\\/hackingmty.org\\/" - }, - "geometry": { - "type": "Point", - "coordinates": [ - -100.3031, - 25.6488 - ] - } - } - ] -} \ No newline at end of file diff --git a/getdata.sh b/getdata.sh index 70e839b..cbe6fa1 100755 --- a/getdata.sh +++ b/getdata.sh @@ -1,3 +1,2 @@ wget "http://api.codeforamerica.org/api/organizations?type=Code+for+All&per_page=1000" -O ./_data/organizations.json wget "http://api.codeforamerica.org/api/projects?organization_type=Code+for+All" -O ./_data/projects.json -wget "http://api.codeforamerica.org/api/organizations.geojson" -O ./assets/organizations.geojson