-
Notifications
You must be signed in to change notification settings - Fork 15
/
tests.py
96 lines (74 loc) · 198 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env python
# -*- coding: utf8 -*-
import unittest, os
os.environ['SECRET'] = 'test secret'
os.environ['DATABASE_URL'] = 'postgres:///civic_issue_finder_testdb'
from httmock import response, HTTMock, all_requests
from flask.ext.testing import TestCase
from app import app
import flask
class AppTestCase(TestCase):
def create_app(self):
# This method is required by flask.ext.testing.TestCase. It is called
# before setUp().
return app
@all_requests
def response_content(self, url, request):
if url.geturl() == 'https://www.codeforamerica.org/api/organizations?per_page=200':
return response(200, ''' {"objects":[{"name":"Code for America"}]} ''' )
elif url.geturl() == 'https://www.codeforamerica.org/api/organizations/Code-for-America/issues':
return response(200, ''' {"objects":[{"html_url":"https://github.com/TESTORG/TESTREPO/issues/1","project":{"github_details":{"contributors":[{"avatar_url":"https://TESTIMAGEURL.com"}]}},"title":"TEST TITLE"}]}''')
elif url.geturl() == 'https://www.codeforamerica.org/api/issues/labels/help%20wanted%2Cenhancement':
return response(200, ''' {"objects":[{"html_url":"https://github.com/TESTORG/TESTREPO/issues/1","labels":[{"name": "help wanted"},{"name": "enhancement"}],"project":{"github_details":{"contributors":[{"avatar_url":"https://TESTIMAGEURL.com"}]}},"title":"TEST TITLE"}]}''')
elif url.geturl() == 'https://www.codeforamerica.org/api/issues':
return response(200, ''' {"objects":[{"html_url":"https://github.com/TESTORG/TESTREPO/issues/1","labels":[],"project":{"github_details":{"contributors":[{"avatar_url":"https://TESTIMAGEURL.com"}]}},"title":"TEST TITLE"}]}''')
elif url.geturl() == 'https://www.codeforamerica.org/api/issues?per_page=2':
return response(200, ''' {"objects":[{"html_url":"https://github.com/TESTORG/TESTREPO/issues/1","labels":[],"project":{"github_details":{"contributors":[{"avatar_url":"https://TESTIMAGEURL.com"}]}},"title":"TEST TITLE"}, {"html_url":"https://github.com/TESTORG/TESTREPO/issues/2","labels":[],"project":{"github_details":{"contributors":[{"avatar_url":"https://TESTIMAGEURL.com"}]}},"title":"TEST TITLE TWO"}]}''')
elif url.geturl() == 'https://www.codeforamerica.org/api/organizations.geojson':
return response(200, '''{\n "features": [\n {\n "geometry": {\n "coordinates": [\n -78.8986, \n 35.994\n ], \n "type": "Point"\n }, \n "id": "Code-for-Durham", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Durham/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Durham/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Durham/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Durham/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Durham", \n "city": "Durham, NC", \n "events_url": "http://www.meetup.com/Triangle-Code-for-America/", \n "last_updated": 1431382113, \n "latitude": 35.994, \n "longitude": -78.8986, \n "name": "Code for Durham", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Durham/past_events", \n "projects_list_url": "https://github.com/codefordurham", \n "rss": "", \n "started_on": "2015-04-22", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Durham/upcoming_events", \n "website": "http://codefordurham.com/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.2711, \n 37.8044\n ], \n "type": "Point"\n }, \n "id": "Open-Oakland", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Oakland/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Oakland/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Oakland/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Oakland/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Oakland", \n "city": "Oakland, CA", \n "events_url": "http://www.meetup.com/OpenOakland/", \n "last_updated": 1431382509, \n "latitude": 37.8044, \n "longitude": -122.2711, \n "name": "Open Oakland", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Oakland/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheet/pub?key=0AgNZYWcpRBQ7dHRnTUJtd3QtYkR5bk5lUmpNMDlpSEE&single=true&gid=0&output=csv", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Oakland/upcoming_events", \n "website": "http://openoakland.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 3.3969, \n 6.6016\n ], \n "type": "Point"\n }, \n "id": "Code-for-Nigeria", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria", \n "city": "Lagos, Nigeria", \n "events_url": "", \n "last_updated": 1431381830, \n "latitude": 6.6016, \n "longitude": 3.3969, \n "name": "Code for Nigeria", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria/past_events", \n "projects_list_url": "http://github.com/CodeForAfrica", \n "rss": "", \n "started_on": "2015-04-30", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nigeria/upcoming_events", \n "website": "http://code4nigeria.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 25.4224, \n 4.1651\n ], \n "type": "Point"\n }, \n "id": "Code-for-Africa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Africa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Africa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Africa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Africa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Africa", \n "city": "", \n "events_url": "http://www.meetup.com/HacksHackersAfrica/", \n "last_updated": 1431382676, \n "latitude": 4.1651, \n "longitude": 25.4224, \n "name": "Code for Africa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Africa/past_events", \n "projects_list_url": "https://github.com/CodeForAfrica", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Africa/upcoming_events", \n "website": "http://www.codeforafrica.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -105.2797, \n 40.0176\n ], \n "type": "Point"\n }, \n "id": "Code-for-Boulder", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder", \n "city": "Boulder, CO", \n "events_url": "http://www.meetup.com/codeforboulder/", \n "last_updated": 1431382229, \n "latitude": 40.0176, \n "longitude": -105.2797, \n "name": "Code for Boulder", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder/past_events", \n "projects_list_url": "https://github.com/CodeForBoulder/", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Boulder/upcoming_events", \n "website": "http://codeforboulder.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -118.2437, \n 34.0522\n ], \n "type": "Point"\n }, \n "id": "Hack-for-LA", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Hack-for-LA/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Hack-for-LA/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Hack-for-LA/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Hack-for-LA/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Hack-for-LA", \n "city": "Los Angeles, CA", \n "events_url": "http://www.hackforla.org/civic-hack-nights", \n "last_updated": 1431381970, \n "latitude": 34.0522, \n "longitude": -118.2437, \n "name": "Hack for LA", \n "past_events": "http://www.codeforamerica.org/api/organizations/Hack-for-LA/past_events", \n "projects_list_url": "https://github.com/hackforla", \n "rss": "http://www.hackforla.org/blog", \n "started_on": "2015-04-28", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Hack-for-LA/upcoming_events", \n "website": "http://www.hackforla.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -84.1916, \n 39.7589\n ], \n "type": "Point"\n }, \n "id": "Code-for-Dayton", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton", \n "city": "Dayton, OH", \n "events_url": "http://www.meetup.com/Code-for-Dayton/", \n "last_updated": 1431382513, \n "latitude": 39.7589, \n "longitude": -84.1916, \n "name": "Code for Dayton", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton/past_events", \n "projects_list_url": "https://github.com/codefordayton", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, midwest, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Dayton/upcoming_events", \n "website": "http://codefordayton.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -89.4012, \n 43.0731\n ], \n "type": "Point"\n }, \n "id": "Hacking-Madison", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Hacking-Madison/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Hacking-Madison/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Hacking-Madison/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Hacking-Madison/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Hacking-Madison", \n "city": "Madison,WI", \n "events_url": "http://www.meetup.com/Civic-hacking-Madison/", \n "last_updated": 1431382134, \n "latitude": 43.0731, \n "longitude": -89.4012, \n "name": "Hacking Madison", \n "past_events": "http://www.codeforamerica.org/api/organizations/Hacking-Madison/past_events", \n "projects_list_url": "https://github.com/hackingmadison", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Hacking-Madison/upcoming_events", \n "website": "http://hackingmadison.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -71.0598, \n 42.3584\n ], \n "type": "Point"\n }, \n "id": "Code-for-Boston", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Boston/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Boston/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Boston/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Boston/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Boston", \n "city": "Boston, MA", \n "events_url": "http://www.meetup.com/Code-for-Boston/", \n "last_updated": 1431382715, \n "latitude": 42.3584, \n "longitude": -71.0598, \n "name": "Code for Boston", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Boston/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheets/d/1kdBUuPDLEyL5ZYZ2ZGcSa1VwN6UAW82bA_5ZWI70P5I/export?format=csv", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Boston/upcoming_events", \n "website": "http://www.codeforboston.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.4336, \n 37.5407\n ], \n "type": "Point"\n }, \n "id": "Code-for-RVA", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-RVA/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-RVA/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-RVA/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-RVA/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-RVA", \n "city": "Richmond, VA", \n "events_url": "http://www.meetup.com/804RVA/", \n "last_updated": 1431382070, \n "latitude": 37.5407, \n "longitude": -77.4336, \n "name": "Code for RVA", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-RVA/past_events", \n "projects_list_url": "https://github.com/codeforrva", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-RVA/upcoming_events", \n "website": "http://codeforrva.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -118.1956, \n 33.7683\n ], \n "type": "Point"\n }, \n "id": "Code-for-Long-Beach", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach", \n "city": "Long Beach, CA", \n "events_url": "http://www.meetup.com/cfabrigade/Long-Beach-CA/", \n "last_updated": 1431382149, \n "latitude": 33.7683, \n "longitude": -118.1956, \n "name": "Code for Long Beach", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Long-Beach/upcoming_events", \n "website": "http://www.codeforlb.com"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 135.7006, \n 34.692\n ], \n "type": "Point"\n }, \n "id": "Code-for-Ikoma", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma", \n "city": "Ikoma, Japan", \n "events_url": "", \n "last_updated": 1431382307, \n "latitude": 34.692, \n "longitude": 135.7006, \n "name": "Code for Ikoma", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ikoma/upcoming_events", \n "website": "http://code4ikoma.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -49.2874, \n -25.4952\n ], \n "type": "Point"\n }, \n "id": "Code-for-Curitiba", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba", \n "city": "Curitiba, PR", \n "events_url": "www.meetup.com/openbrazil/", \n "last_updated": 1431382565, \n "latitude": -25.4952, \n "longitude": -49.2874, \n "name": "Code for Curitiba", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba/past_events", \n "projects_list_url": "https://github.com/codeforcuritiba", \n "rss": "https://twitrss.me/twitter_user_to_rss/?user=openbrazil&replies=on", \n "started_on": "2015-04-13", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Curitiba/upcoming_events", \n "website": "http://openbrazil.org/curitiba"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -95.3694, \n 29.7602\n ], \n "type": "Point"\n }, \n "id": "Open-Houston", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Houston/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Houston/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Houston/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Houston/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Houston", \n "city": "Houston, TX", \n "events_url": "http://www.meetup.com/open-houston/", \n "last_updated": 1431382317, \n "latitude": 29.7602, \n "longitude": -95.3694, \n "name": "Open Houston", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Houston/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Houston/upcoming_events", \n "website": "http://ohouston.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 138.2529, \n 36.2048\n ], \n "type": "Point"\n }, \n "id": "Code-for-Japan", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Japan/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Japan/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Japan/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Japan/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Japan", \n "city": "Japan", \n "events_url": "http://codeforjapan.doorkeeper.jp/", \n "last_updated": 1431382161, \n "latitude": 36.2048, \n "longitude": 138.2529, \n "name": "Code for Japan", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Japan/past_events", \n "projects_list_url": "https://github.com/codeforjapan", \n "rss": "", \n "started_on": "2015-05-05", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Japan/upcoming_events", \n "website": "http://code4japan.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.6227, \n 35.4662\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kanagawa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa", \n "city": "Yokohama, Japan", \n "events_url": "", \n "last_updated": 1431382566, \n "latitude": 35.4662, \n "longitude": 139.6227, \n "name": "Code for Kanagawa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kanagawa/upcoming_events", \n "website": "https://www.facebook.com/CodeForKanagawa"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 13.7333, \n 51.0333\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Dresden", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden", \n "city": "Dresden, Germany", \n "events_url": "", \n "last_updated": 1431382725, \n "latitude": 51.0333, \n "longitude": 13.7333, \n "name": "OK Lab Dresden", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Dresden/upcoming_events", \n "website": "http://codefor.de/dresden"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.0365, \n 38.9072\n ], \n "type": "Point"\n }, \n "id": "Data.gov", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Data.gov/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Data.gov/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Data.gov/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Data.gov/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Data.gov", \n "city": "Washington, DC", \n "events_url": "", \n "last_updated": 1431381718, \n "latitude": 38.9072, \n "longitude": -77.0365, \n "name": "Data.gov", \n "past_events": "http://www.codeforamerica.org/api/organizations/Data.gov/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheet/pub?key=0ArHmv-6U1drqdG81Tjh5RjlBTkR3RVdGREFZdDluZ2c&output=csv", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Government", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Data.gov/upcoming_events", \n "website": "http://www.data.gov"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 141.3455, \n 43.0553\n ], \n "type": "Point"\n }, \n "id": "Code-for-Sapporo", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo", \n "city": "Sapporo, Japan", \n "events_url": "", \n "last_updated": 1431382176, \n "latitude": 43.0553, \n "longitude": 141.3455, \n "name": "Code for Sapporo", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo/past_events", \n "projects_list_url": "https://github.com/codeforsapporo", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Sapporo/upcoming_events", \n "website": "http://www.codeforsapporo.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -86.8118, \n 33.5207\n ], \n "type": "Point"\n }, \n "id": "Code-for-Birmingham", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham", \n "city": "Birmingham, AL", \n "events_url": "http://www.meetup.com/Code-for-Birmingham-AL/", \n "last_updated": 1431382346, \n "latitude": 33.5207, \n "longitude": -86.8118, \n "name": "Code for Birmingham", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham/past_events", \n "projects_list_url": "https://github.com/CodeforBirmingham", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Birmingham/upcoming_events", \n "website": "http://www.codeforbirmingham.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.9801, \n 35.8614\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kashiwa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa", \n "city": "Kashiwa, Japan", \n "events_url": "", \n "last_updated": 1431382110, \n "latitude": 35.8614, \n "longitude": 139.9801, \n "name": "Code for Kashiwa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kashiwa/upcoming_events", \n "website": "https://www.facebook.com/code4kashiwa"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 11.5667, \n 48.1333\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-M\u00fcnchen", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen", \n "city": "Munich, Germany", \n "events_url": "", \n "last_updated": 1431381787, \n "latitude": 48.1333, \n "longitude": 11.5667, \n "name": "OK Lab M\u00fcnchen", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen/past_events", \n "projects_list_url": "https://github.com/codeformunich", \n "rss": "", \n "started_on": "2015-03-29", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnchen/upcoming_events", \n "website": "http://codefor.de/muenchen"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -76.1444, \n 43.0469\n ], \n "type": "Point"\n }, \n "id": "Open-Syracuse", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Syracuse/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Syracuse/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Syracuse/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Syracuse/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Syracuse", \n "city": "Syracuse, NY", \n "events_url": "", \n "last_updated": 1431382621, \n "latitude": 43.0469, \n "longitude": -76.1444, \n "name": "Open Syracuse", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Syracuse/past_events", \n "projects_list_url": "https://github.com/OpenSyracuse", \n "rss": "", \n "started_on": "2015-03-29", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Syracuse/upcoming_events", \n "website": "http://opensyracuse.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -84.512, \n 39.1031\n ], \n "type": "Point"\n }, \n "id": "Open-Data-Cincy", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy", \n "city": "Cincinnati, OH", \n "events_url": "", \n "last_updated": 1431382379, \n "latitude": 39.1031, \n "longitude": -84.512, \n "name": "Open Data Cincy", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy/past_events", \n "projects_list_url": "", \n "rss": "http://www.opendatacincy.org/feeds/resources/", \n "started_on": "2015-03-09", \n "type": "Brigade, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Data-Cincy/upcoming_events", \n "website": "http://opendatacincy.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 121.0211, \n 23.5531\n ], \n "type": "Point"\n }, \n "id": "Code-for-Tomorrow", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow", \n "city": "Taiwan", \n "events_url": "http://codefortomorrow.org/events", \n "last_updated": 1431381816, \n "latitude": 23.5531, \n "longitude": 121.0211, \n "name": "Code for Tomorrow", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow/past_events", \n "projects_list_url": "https://github.com/codefortomorrow", \n "rss": "http://codefortomorrow.org/blog/", \n "started_on": "2015-03-09", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tomorrow/upcoming_events", \n "website": "http://codefortomorrow.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 18.4212, \n -33.9205\n ], \n "type": "Point"\n }, \n "id": "Code-for-South-Africa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa", \n "city": "Cape Town, South Africa", \n "events_url": "http://www.meetup.com/Code-for-South-Africa-Hackers", \n "last_updated": 1431382784, \n "latitude": -33.9205, \n "longitude": 18.4212, \n "name": "Code for South Africa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa/past_events", \n "projects_list_url": "https://github.com/code4sa", \n "rss": "http://www.code4sa.org/atom.xml", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-South-Africa/upcoming_events", \n "website": "http://www.code4sa.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -84.5037, \n 38.0406\n ], \n "type": "Point"\n }, \n "id": "Open-Lexington", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Lexington/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Lexington/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Lexington/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Lexington/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Lexington", \n "city": "Lexington, KY", \n "events_url": "http://www.meetup.com/cfabrigade/Lexington-KY", \n "last_updated": 1431382387, \n "latitude": 38.0406, \n "longitude": -84.5037, \n "name": "Open Lexington", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Lexington/past_events", \n "projects_list_url": "https://github.com/openlexington", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Lexington/upcoming_events", \n "website": "http://openlexington.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.0365, \n 38.9072\n ], \n "type": "Point"\n }, \n "id": "US-Census-Bureau", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau", \n "city": "Washington, DC", \n "events_url": "", \n "last_updated": 1431382296, \n "latitude": 38.9072, \n "longitude": -77.0365, \n "name": "US Census Bureau", \n "past_events": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau/past_events", \n "projects_list_url": "https://github.com/uscensusbureau", \n "rss": "", \n "started_on": "2015-05-05", \n "type": "Government", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/US-Census-Bureau/upcoming_events", \n "website": "http://www.census.gov/developers/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 13.4061, \n 52.5192\n ], \n "type": "Point"\n }, \n "id": "Code-for-Germany", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Germany/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Germany/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Germany/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Germany/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Germany", \n "city": "Berlin, Germany", \n "events_url": "http://codefor.de/termine/", \n "last_updated": 1431382022, \n "latitude": 52.5192, \n "longitude": 13.4061, \n "name": "Code for Germany", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Germany/past_events", \n "projects_list_url": "https://github.com/codeforgermany", \n "rss": "http://codefor.de/blog/", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Germany/upcoming_events", \n "website": "http://codefor.de/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 7.6333, \n 51.9667\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-M\u00fcnster", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster", \n "city": "Muenster, Germany", \n "events_url": "", \n "last_updated": 1431382139, \n "latitude": 51.9667, \n "longitude": 7.6333, \n "name": "OK Lab M\u00fcnster", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster/past_events", \n "projects_list_url": "https://github.com/codeformuenster", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-M\u00fcnster/upcoming_events", \n "website": "http://codefor.de/muenster"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -79.9959, \n 40.4406\n ], \n "type": "Point"\n }, \n "id": "Open-Pittsburgh", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh", \n "city": "Pittsburgh, PA", \n "events_url": "http://www.meetup.com/cfabrigade/Pittsburgh-PA/", \n "last_updated": 1431382053, \n "latitude": 40.4406, \n "longitude": -79.9959, \n "name": "Open Pittsburgh", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh/past_events", \n "projects_list_url": "https://github.com/openpgh", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Pittsburgh/upcoming_events", \n "website": "http://opgh.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -81.5217, \n 41.0761\n ], \n "type": "Point"\n }, \n "id": "Akron-Civic-Hackathon", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon", \n "city": "Akron, Ohio", \n "events_url": "http://www.meetup.com/synhak/events/221121577/", \n "last_updated": 1431382299, \n "latitude": 41.0761, \n "longitude": -81.5217, \n "name": "Akron Civic Hackathon", \n "past_events": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon/past_events", \n "projects_list_url": "https://github.com/akroncivichackathon", \n "rss": "", \n "started_on": "2015-03-13", \n "type": "midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Akron-Civic-Hackathon/upcoming_events", \n "website": "http://akroncivichackathon.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -97.7431, \n 30.2672\n ], \n "type": "Point"\n }, \n "id": "Open-Austin", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Austin/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Austin/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Austin/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Austin/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Austin", \n "city": "Austin, TX", \n "events_url": "http://www.meetup.com/Open-Government-Civic-Technology-Meetup-by-Open-Austin", \n "last_updated": 1431382226, \n "latitude": 30.2672, \n "longitude": -97.7431, \n "name": "Open Austin", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Austin/past_events", \n "projects_list_url": "http://data.open-austin.org/Civic_Project/cfapi-pub.csv", \n "rss": "http://www.open-austin.org/feed", \n "started_on": "2015-04-28", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Austin/upcoming_events", \n "website": "http://www.open-austin.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -80.2264, \n 25.789\n ], \n "type": "Point"\n }, \n "id": "Code-for-Miami", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Miami/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Miami/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Miami/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Miami/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Miami", \n "city": "Miami, FL", \n "events_url": "http://www.meetup.com/Code-for-Miami/", \n "last_updated": 1431382089, \n "latitude": 25.789, \n "longitude": -80.2264, \n "name": "Code for Miami", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Miami/past_events", \n "projects_list_url": "https://github.com/code-for-miami", \n "rss": "http://codeformia.tumblr.com/rss", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Miami/upcoming_events", \n "website": "http://codeformiami.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 10.0014, \n 53.5653\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Hamburg", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg", \n "city": "Hamburg, Germany", \n "events_url": "http://www.meetup.com/Open-Knowledge-Lab-Hamburg/", \n "last_updated": 1431382517, \n "latitude": 53.5653, \n "longitude": 10.0014, \n "name": "OK Lab Hamburg", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-29", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Hamburg/upcoming_events", \n "website": "http://codefor.de/hamburg"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -104.9847, \n 39.7392\n ], \n "type": "Point"\n }, \n "id": "Code-for-Denver", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Denver/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Denver/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Denver/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Denver/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Denver", \n "city": "Denver, CO", \n "events_url": "http://www.meetup.com/CodeForDenver/", \n "last_updated": 1431382277, \n "latitude": 39.7392, \n "longitude": -104.9847, \n "name": "Code for Denver", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Denver/past_events", \n "projects_list_url": "https://github.com/codefordenver", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Denver/upcoming_events", \n "website": "http://www.codefordenver.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 16.9291, \n 52.4068\n ], \n "type": "Point"\n }, \n "id": "Code-for-Pozna\u0144", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144", \n "city": "Poznan, Poland", \n "events_url": "", \n "last_updated": 1431382313, \n "latitude": 52.4068, \n "longitude": 16.9291, \n "name": "Code for Pozna\u0144", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144/past_events", \n "projects_list_url": "", \n "rss": "http://blog.epf.org.pl/koduj-dla-polski/poznan/", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Pozna\u0144/upcoming_events", \n "website": "http://blog.epf.org.pl/koduj-dla-polski/poznan/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 8.6909, \n 50.5871\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Gie\u00dfen", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen", \n "city": "Gie\u00dfen, Germany", \n "events_url": "", \n "last_updated": 1431382570, \n "latitude": 50.5871, \n "longitude": 8.6909, \n "name": "OK Lab Gie\u00dfen", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen/past_events", \n "projects_list_url": "https://github.com/CodeForGiessen", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Gie\u00dfen/upcoming_events", \n "website": "http://codefor.de/giessen"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 21.0063, \n 52.2287\n ], \n "type": "Point"\n }, \n "id": "Code-for-Poland", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Poland/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Poland/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Poland/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Poland/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Poland", \n "city": "Warsaw, Poland", \n "events_url": "", \n "last_updated": 1431382290, \n "latitude": 52.2287, \n "longitude": 21.0063, \n "name": "Code for Poland", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Poland/past_events", \n "projects_list_url": "https://github.com/kodujdlapolski", \n "rss": "http://blog.epf.org.pl/koduj-dla-polski/", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Poland/upcoming_events", \n "website": "http://epf.org.pl/kodujdlapolski/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.4137, \n 37.7759\n ], \n "type": "Point"\n }, \n "id": "18F", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/18F/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/18F/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/18F/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/18F/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/18F", \n "city": "San Francisco, CA", \n "events_url": "", \n "last_updated": 1431382573, \n "latitude": 37.7759, \n "longitude": -122.4137, \n "name": "18F", \n "past_events": "http://www.codeforamerica.org/api/organizations/18F/past_events", \n "projects_list_url": "https://github.com/18f", \n "rss": "http://18fblog.tumblr.com/", \n "started_on": "2015-04-17", \n "type": "Government", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/18F/upcoming_events", \n "website": "https://18f.gsa.gov/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 9.1794, \n 48.7786\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Stuttgart", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart", \n "city": "Stuttgart, Germany", \n "events_url": "http://www.meetup.com/OK-Lab-Stuttgart-Meet-Up/", \n "last_updated": 1431382109, \n "latitude": 48.7786, \n "longitude": 9.1794, \n "name": "OK Lab Stuttgart", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Stuttgart/upcoming_events", \n "website": "http://codefor.de/stuttgart"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -0.199, \n 5.5811\n ], \n "type": "Point"\n }, \n "id": "Code-for-Ghana", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana", \n "city": "Accra, Ghana", \n "events_url": "", \n "last_updated": 1431381795, \n "latitude": 5.5811, \n "longitude": -0.199, \n "name": "Code for Ghana", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana/past_events", \n "projects_list_url": "http://github.com/CodeForAfrica", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ghana/upcoming_events", \n "website": "http://codeforghana.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 4.8665, \n 52.3307\n ], \n "type": "Point"\n }, \n "id": "Code-for-the-Netherlands", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands", \n "city": "Amsterdamn, Netherlands", \n "events_url": "", \n "last_updated": 1431382338, \n "latitude": 52.3307, \n "longitude": 4.8665, \n "name": "Code for the Netherlands", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-04-30", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-the-Netherlands/upcoming_events", \n "website": "http://www.codefor.nl/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -76.2922, \n 36.847\n ], \n "type": "Point"\n }, \n "id": "Code-for-Hampton-Roads", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads", \n "city": "Hampton Roads, VA (Region)", \n "events_url": "http://www.meetup.com/Code4HR", \n "last_updated": 1431382363, \n "latitude": 36.847, \n "longitude": -76.2922, \n "name": "Code for Hampton Roads", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheets/d/1Bs2ulkOn6stjM4lp81f3KR_S22G6bvmOATVAioxE_qg/export?format=csv", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Hampton-Roads/upcoming_events", \n "website": "http://Code4HR.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -93.09, \n 44.9537\n ], \n "type": "Point"\n }, \n "id": "Open-Twin-Cities", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities", \n "city": "St. Paul, MN", \n "events_url": "http://www.meetup.com/OpenTwinCities/", \n "last_updated": 1431382506, \n "latitude": 44.9537, \n "longitude": -93.09, \n "name": "Open Twin Cities", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheets/d/1OaIzmWf5btaxChWhPX_KEEttkwsQdzB2t-PVOshCOIw/export?gid=0&format=csv", \n "rss": "http://opentwincities.org/posts/", \n "started_on": "2015-03-10", \n "type": "Brigade, Official, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Twin-Cities/upcoming_events", \n "website": "http://opentwincities.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -80.4106, \n 37.2263\n ], \n "type": "Point"\n }, \n "id": "Code-for-New-River-Valley", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley", \n "city": "Blacksburg, VA", \n "events_url": "http://www.meetup.com/codefornrv/", \n "last_updated": 1431382315, \n "latitude": 37.2263, \n "longitude": -80.4106, \n "name": "Code for New River Valley", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheets/d/1m0s7G4lpTOa5xjeq--ZrMjb2e6EDPGVJ7tHHFtZcC54/export?format=csv", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-New-River-Valley/upcoming_events", \n "website": "http://codefornrv.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 19.4567, \n 51.7666\n ], \n "type": "Point"\n }, \n "id": "Code-for-\u0141\u00f3d\u017a", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a", \n "city": "Lodz, Poland", \n "events_url": "", \n "last_updated": 1431382799, \n "latitude": 51.7666, \n "longitude": 19.4567, \n "name": "Code for \u0141\u00f3d\u017a", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a/past_events", \n "projects_list_url": "", \n "rss": "http://blog.epf.org.pl/koduj-dla-polski/lodz/", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-\u0141\u00f3d\u017a/upcoming_events", \n "website": "http://blog.epf.org.pl/koduj-dla-polski/lodz/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -74.006, \n 40.7144\n ], \n "type": "Point"\n }, \n "id": "Beta-NYC", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Beta-NYC/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Beta-NYC/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Beta-NYC/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Beta-NYC/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Beta-NYC", \n "city": "New York, NY", \n "events_url": "http://www.meetup.com/BetaNYC/", \n "last_updated": 1431382117, \n "latitude": 40.7144, \n "longitude": -74.006, \n "name": "Beta NYC", \n "past_events": "http://www.codeforamerica.org/api/organizations/Beta-NYC/past_events", \n "projects_list_url": "http://projects.betanyc.us/projects", \n "rss": "http://betanyc.tumblr.com/", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Beta-NYC/upcoming_events", \n "website": "http://www.beta.nyc"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -95.998, \n 41.2524\n ], \n "type": "Point"\n }, \n "id": "Open-Nebraska", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Nebraska/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Nebraska/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Nebraska/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Nebraska/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Nebraska", \n "city": "Omaha, NE", \n "events_url": "http://www.meetup.com/Open-Nebraska-Meetup/", \n "last_updated": 1431382368, \n "latitude": 41.2524, \n "longitude": -95.998, \n "name": "Open Nebraska", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Nebraska/past_events", \n "projects_list_url": "https://github.com/opennebraska", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Nebraska/upcoming_events", \n "website": "http://opennebraska.io/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -117.1573, \n 32.7153\n ], \n "type": "Point"\n }, \n "id": "Open-San-Diego", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-San-Diego/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-San-Diego/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-San-Diego/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-San-Diego/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-San-Diego", \n "city": "San Diego, CA", \n "events_url": "http://www.meetup.com/cfabrigade/Open-San-Diego/", \n "last_updated": 1431382355, \n "latitude": 32.7153, \n "longitude": -117.1573, \n "name": "Open San Diego", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-San-Diego/past_events", \n "projects_list_url": "https://github.com/opensandiego", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-San-Diego/upcoming_events", \n "website": "http://opensandiego.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -83.743, \n 42.2808\n ], \n "type": "Point"\n }, \n "id": "Ann-Arbor-Civic-Technology-Meetup", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup", \n "city": "Ann Arbor, MI", \n "events_url": "http://www.meetup.com/a2civictech/", \n "last_updated": 1431382690, \n "latitude": 42.2808, \n "longitude": -83.743, \n "name": "Ann Arbor Civic Technology Meetup", \n "past_events": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup/past_events", \n "projects_list_url": "https://github.com/a2civictech", \n "rss": "http://a2civictech.tumblr.com", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Ann-Arbor-Civic-Technology-Meetup/upcoming_events", \n "website": "http://www.meetup.com/a2civictech/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 136.6469, \n 36.575\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kanazawa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa", \n "city": "Kanazawa, Japan", \n "events_url": "https://www.facebook.com/CodeForKanazawa", \n "last_updated": 1431381982, \n "latitude": 36.575, \n "longitude": 136.6469, \n "name": "Code for Kanazawa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa/past_events", \n "projects_list_url": "https://github.com/codeforkanazawa-org", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kanazawa/upcoming_events", \n "website": "http://www.codeforkanazawa.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 141.0273, \n 38.3014\n ], \n "type": "Point"\n }, \n "id": "Code-for-Shiogama", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama", \n "city": "Shiogama, Japan", \n "events_url": "", \n "last_updated": 1431382138, \n "latitude": 38.3014, \n "longitude": 141.0273, \n "name": "Code for Shiogama", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Shiogama/upcoming_events", \n "website": "https://www.facebook.com/CodeForShiogama"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 120.6124, \n 22.9737\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kaohsiung", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung", \n "city": "Kaohsiung, Taiwan", \n "events_url": "https://www.facebook.com/groups/codeforkaohsiung/", \n "last_updated": 1431382570, \n "latitude": 22.9737, \n "longitude": 120.6124, \n "name": "Code for Kaohsiung", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kaohsiung/upcoming_events", \n "website": "https://www.facebook.com/groups/codeforkaohsiung/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.5439, \n 35.6471\n ], \n "type": "Point"\n }, \n "id": "Code-for-Chofu", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu", \n "city": "Chofu, Japan", \n "events_url": "", \n "last_updated": 1431382713, \n "latitude": 35.6471, \n "longitude": 139.5439, \n "name": "Code for Chofu", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Chofu/upcoming_events", \n "website": "https://www.facebook.com/codeforchofu"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 4.3781, \n 50.8427\n ], \n "type": "Point"\n }, \n "id": "Code-for-Europe", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Europe/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Europe/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Europe/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Europe/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Europe", \n "city": "Europe", \n "events_url": "", \n "last_updated": 1431382632, \n "latitude": 50.8427, \n "longitude": 4.3781, \n "name": "Code for Europe", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Europe/past_events", \n "projects_list_url": "https://github.com/codeforeurope", \n "rss": "http://codeforeurope.net/stories/", \n "started_on": "2015-04-30", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Europe/upcoming_events", \n "website": "http://codeforeurope.net/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.0365, \n 38.9072\n ], \n "type": "Point"\n }, \n "id": "Code-for-DC", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-DC/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-DC/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-DC/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-DC/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-DC", \n "city": "Washington, DC", \n "events_url": "http://www.meetup.com/Code-for-DC/", \n "last_updated": 1431382015, \n "latitude": 38.9072, \n "longitude": -77.0365, \n "name": "Code for DC", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-DC/past_events", \n "projects_list_url": "https://github.com/codefordc", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-DC/upcoming_events", \n "website": "http://codefordc.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -81.6907, \n 41.5047\n ], \n "type": "Point"\n }, \n "id": "Open-Cleveland", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Cleveland/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Cleveland/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Cleveland/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Cleveland/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Cleveland", \n "city": "Cleveland, OH", \n "events_url": "http://www.meetup.com/cleveland-civic-hacking", \n "last_updated": 1431382190, \n "latitude": 41.5047, \n "longitude": -81.6907, \n "name": "Open Cleveland", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Cleveland/past_events", \n "projects_list_url": "https://github.com/opencleveland", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, midwest, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Cleveland/upcoming_events", \n "website": "http://opencleveland.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -111.891, \n 40.7608\n ], \n "type": "Point"\n }, \n "id": "Open-Salt-Lake", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake", \n "city": "Salt Lake City, UT", \n "events_url": "http://www.meetup.com/Open-Salt-Lake/", \n "last_updated": 1431382372, \n "latitude": 40.7608, \n "longitude": -111.891, \n "name": "Open Salt Lake", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake/past_events", \n "projects_list_url": "https://github.com/OpenSaltLake", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Salt-Lake/upcoming_events", \n "website": "http://opensaltlake.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.6756, \n 45.5118\n ], \n "type": "Point"\n }, \n "id": "Code-for-Portland", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Portland/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Portland/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Portland/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Portland/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Portland", \n "city": "Portland, OR", \n "events_url": "http://www.meetup.com/Code-for-Portland/", \n "last_updated": 1431382740, \n "latitude": 45.5118, \n "longitude": -122.6756, \n "name": "Code for Portland", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Portland/past_events", \n "projects_list_url": "https://github.com/codeforportland", \n "rss": "http://www.codeforportland.org/news/", \n "started_on": "2015-03-30", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Portland/upcoming_events", \n "website": "http://www.codeforportland.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 140.392, \n 36.3072\n ], \n "type": "Point"\n }, \n "id": "Code-for-Ibaraki", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki", \n "city": "Ibaraki, Japan", \n "events_url": "", \n "last_updated": 1431382282, \n "latitude": 36.3072, \n "longitude": 140.392, \n "name": "Code for Ibaraki", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki/past_events", \n "projects_list_url": "https://github.com/codeforibaraki", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ibaraki/upcoming_events", \n "website": "http://codeforibaraki.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 1.2578, \n 51.7519\n ], \n "type": "Point"\n }, \n "id": "mySociety", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/mySociety/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/mySociety/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/mySociety/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/mySociety/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/mySociety", \n "city": "Oxford, UK", \n "events_url": "https://www.google.com/calendar/embed?src=9uqu3bbqcdaqek6lkiub442di4%40group.calendar.google.com&ctz=Europe/London", \n "last_updated": 1431382639, \n "latitude": 51.7519, \n "longitude": 1.2578, \n "name": "mySociety", \n "past_events": "http://www.codeforamerica.org/api/organizations/mySociety/past_events", \n "projects_list_url": "https://github.com/mysociety/", \n "rss": "https://www.mysociety.org/feed/", \n "started_on": "2015-03-09", \n "type": "Partner", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/mySociety/upcoming_events", \n "website": "https://www.mysociety.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -94.5831, \n 39.103\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kansas-City", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City", \n "city": "Kansas City, KS & MO", \n "events_url": "http://www.meetup.com/KCBrigade/", \n "last_updated": 1431381822, \n "latitude": 39.103, \n "longitude": -94.5831, \n "name": "Code for Kansas City", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City/past_events", \n "projects_list_url": "https://github.com/codeforkansascity", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kansas-City/upcoming_events", \n "website": "http://codeforkc.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 15.9464, \n 45.793\n ], \n "type": "Point"\n }, \n "id": "Code-for-Croatia", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia", \n "city": "Zagreb, Croatia", \n "events_url": "", \n "last_updated": 1431382024, \n "latitude": 45.793, \n "longitude": 15.9464, \n "name": "Code for Croatia", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Croatia/upcoming_events", \n "website": ""\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -90.1977, \n 38.6272\n ], \n "type": "Point"\n }, \n "id": "Open-Data-STL", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Data-STL/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Data-STL/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Data-STL/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Data-STL/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Data-STL", \n "city": "St Louis, MO", \n "events_url": "http://www.meetup.com/Open-Data-STL", \n "last_updated": 1431382172, \n "latitude": 38.6272, \n "longitude": -90.1977, \n "name": "Open Data STL", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Data-STL/past_events", \n "projects_list_url": "https://github.com/opendatastl", \n "rss": "http://buildforstl.org/feed", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Data-STL/upcoming_events", \n "website": "http://opendatastl.github.io"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 6.9667, \n 50.95\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-K\u00f6ln", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln", \n "city": "Cologne, Germany", \n "events_url": "http://www.meetup.com/OKLab-Koln-Meetup", \n "last_updated": 1431382097, \n "latitude": 50.95, \n "longitude": 6.9667, \n "name": "OK Lab K\u00f6ln", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln/past_events", \n "projects_list_url": "https://github.com/KoelnAPI", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-K\u00f6ln/upcoming_events", \n "website": "http://codefor.de/koeln"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 9.9833, \n 48.4\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Ulm", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm", \n "city": "Ulm, Germany", \n "events_url": "", \n "last_updated": 1431382304, \n "latitude": 48.4, \n "longitude": 9.9833, \n "name": "OK Lab Ulm", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Ulm/upcoming_events", \n "website": "http://codefor.de/ulm"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.0365, \n 38.9072\n ], \n "type": "Point"\n }, \n "id": "Presidential-Innovation-Fellows", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows", \n "city": "Washington, DC", \n "events_url": "", \n "last_updated": 1431382101, \n "latitude": 38.9072, \n "longitude": -77.0365, \n "name": "Presidential Innovation Fellows", \n "past_events": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows/past_events", \n "projects_list_url": "https://github.com/presidential-innovation-fellows", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Government", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Presidential-Innovation-Fellows/upcoming_events", \n "website": "http://presidentialinnovation.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -86.6597, \n 34.7014\n ], \n "type": "Point"\n }, \n "id": "Code-for-Huntsville", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville", \n "city": "Huntsville, AL", \n "events_url": "http://www.facebook.com/groups/code4huntsville", \n "last_updated": 1431382780, \n "latitude": 34.7014, \n "longitude": -86.6597, \n "name": "Code for Huntsville", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville/past_events", \n "projects_list_url": "https://github.com/code4huntsville", \n "rss": "", \n "started_on": "2015-04-08", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Huntsville/upcoming_events", \n "website": "http://www.code4huntsville.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -102.5375, \n 23.6267\n ], \n "type": "Point"\n }, \n "id": "Codeando-M\u00e9xico", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico", \n "city": "Mexico City, Mexico", \n "events_url": "", \n "last_updated": 1431382801, \n "latitude": 23.6267, \n "longitude": -102.5375, \n "name": "Codeando M\u00e9xico", \n "past_events": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico/past_events", \n "projects_list_url": "https://github.com/CodeandoMexico", \n "rss": "http://blog.codeandomexico.org/", \n "started_on": "2015-03-30", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Codeando-M\u00e9xico/upcoming_events", \n "website": "http://codeandomexico.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -115.2383, \n 36.2551\n ], \n "type": "Point"\n }, \n "id": "Code-for-Vegas", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas", \n "city": "Las Vegas, NV", \n "events_url": "http://www.meetup.com/Code-for-Las-Vegas/", \n "last_updated": 1431382235, \n "latitude": 36.2551, \n "longitude": -115.2383, \n "name": "Code for Vegas", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas/past_events", \n "projects_list_url": "https://github.com/CodeForVegas", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Vegas/upcoming_events", \n "website": "http://www.codeforvegas.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -95.9928, \n 36.154\n ], \n "type": "Point"\n }, \n "id": "Code-for-Tulsa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa", \n "city": "Tulsa, OK", \n "events_url": "http://www.meetup.com/Code-for-Tulsa/", \n "last_updated": 1431382320, \n "latitude": 36.154, \n "longitude": -95.9928, \n "name": "Code for Tulsa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa/past_events", \n "projects_list_url": "https://github.com/codefortulsa", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tulsa/upcoming_events", \n "website": "http://codefortulsa.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -106.6765, \n 35.0824\n ], \n "type": "Point"\n }, \n "id": "Code-for-Albuquerque", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque", \n "city": "Albuquerque, NM", \n "events_url": "", \n "last_updated": 1431382132, \n "latitude": 35.0824, \n "longitude": -106.6765, \n "name": "Code for Albuquerque", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque/past_events", \n "projects_list_url": "https://github.com/code4abq", \n "rss": "", \n "started_on": "2015-04-13", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Albuquerque/upcoming_events", \n "website": "http://code4abq.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 12.9167, \n 50.8333\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Chemnitz", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz", \n "city": "Chemnitz, Germany", \n "events_url": "", \n "last_updated": 1431382568, \n "latitude": 50.8333, \n "longitude": 12.9167, \n "name": "OK Lab Chemnitz", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz/past_events", \n "projects_list_url": "https://github.com/CodeforChemnitz", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Chemnitz/upcoming_events", \n "website": "http://codeforchemnitz.de"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -98.4946, \n 29.4245\n ], \n "type": "Point"\n }, \n "id": "Open-San-Antonio", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio", \n "city": "San Antonio, TX", \n "events_url": "", \n "last_updated": 1431382255, \n "latitude": 29.4245, \n "longitude": -98.4946, \n "name": "Open San Antonio", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio/past_events", \n "projects_list_url": "https://github.com/opensatx", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-San-Antonio/upcoming_events", \n "website": "http://opensatx.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -78.7811, \n 35.7915\n ], \n "type": "Point"\n }, \n "id": "Code-for-Cary", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Cary/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Cary/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Cary/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Cary/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Cary", \n "city": "Cary, NC", \n "events_url": "http://www.meetup.com/Triangle-Code-for-America/", \n "last_updated": 1431381968, \n "latitude": 35.7915, \n "longitude": -78.7811, \n "name": "Code for Cary", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Cary/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Cary/upcoming_events", \n "website": "http://www.meetup.com/Triangle-Code-for-America/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 136.7678, \n 35.4102\n ], \n "type": "Point"\n }, \n "id": "Code-for-Gifu", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu", \n "city": "Gifu, Japan", \n "events_url": "", \n "last_updated": 1431382136, \n "latitude": 35.4102, \n "longitude": 136.7678, \n "name": "Code for Gifu", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Gifu/upcoming_events", \n "website": "https://www.facebook.com/pages/CODE-for-GIFU/592157627504886"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -121.8856, \n 37.3386\n ], \n "type": "Point"\n }, \n "id": "Code-for-San-Jose", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose", \n "city": "San Jose, CA", \n "events_url": "http://www.meetup.com/Code-for-San-Jose", \n "last_updated": 1431382058, \n "latitude": 37.3386, \n "longitude": -121.8856, \n "name": "Code for San Jose", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose/past_events", \n "projects_list_url": "https://github.com/codeforsanjose", \n "rss": "http://codeforsanjose.com/category/blog/feed/", \n "started_on": "2015-04-19", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-San-Jose/upcoming_events", \n "website": "http://codeforsanjose.com/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -110.9698, \n 32.2216\n ], \n "type": "Point"\n }, \n "id": "Code-for-Tucson", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson", \n "city": "Tucson, AZ", \n "events_url": "", \n "last_updated": 1431382257, \n "latitude": 32.2216, \n "longitude": -110.9698, \n "name": "Code for Tucson", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson/past_events", \n "projects_list_url": "https://github.com/CodeForTucson", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tucson/upcoming_events", \n "website": "http://codefortucson.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 130.301, \n 33.2487\n ], \n "type": "Point"\n }, \n "id": "Code-for-Saga", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Saga/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Saga/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Saga/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Saga/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Saga", \n "city": "Saga, Japan", \n "events_url": "", \n "last_updated": 1431382706, \n "latitude": 33.2487, \n "longitude": 130.301, \n "name": "Code for Saga", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Saga/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Saga/upcoming_events", \n "website": "http://code4saga.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 21.0063, \n 52.2287\n ], \n "type": "Point"\n }, \n "id": "Code-for-Warsaw", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw", \n "city": "Warsaw, Poland", \n "events_url": "", \n "last_updated": 1431382169, \n "latitude": 52.2287, \n "longitude": 21.0063, \n "name": "Code for Warsaw", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw/past_events", \n "projects_list_url": "", \n "rss": "http://blog.epf.org.pl/koduj-dla-polski/warszawa/", \n "started_on": "2015-04-30", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Warsaw/upcoming_events", \n "website": "http://blog.epf.org.pl/koduj-dla-polski/warszawa/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -73.2121, \n 44.4759\n ], \n "type": "Point"\n }, \n "id": "Code-for-BTV", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-BTV/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-BTV/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-BTV/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-BTV/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-BTV", \n "city": "Burlington, VT", \n "events_url": "http://www.meetup.com/CodeForBTV/", \n "last_updated": 1431382720, \n "latitude": 44.4759, \n "longitude": -73.2121, \n "name": "Code for BTV", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-BTV/past_events", \n "projects_list_url": "https://github.com/codeforbtv", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-BTV/upcoming_events", \n "website": "http://codeforbtv.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -70.2553, \n 43.6615\n ], \n "type": "Point"\n }, \n "id": "Code-for-Maine", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Maine/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Maine/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Maine/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Maine/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Maine", \n "city": "Bangor, ME", \n "events_url": "http://www.meetup.com/Code-for-Maine", \n "last_updated": 1431382259, \n "latitude": 43.6615, \n "longitude": -70.2553, \n "name": "Code for Maine", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Maine/past_events", \n "projects_list_url": "https://github.com/code4maine", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Maine/upcoming_events", \n "website": "http://code4maine.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -49.2874, \n -25.4952\n ], \n "type": "Point"\n }, \n "id": "Open-Brazil", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Brazil/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Brazil/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Brazil/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Brazil/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Brazil", \n "city": "Curitiba, PR", \n "events_url": "www.meetup.com/openbrazil/", \n "last_updated": 1431382302, \n "latitude": -25.4952, \n "longitude": -49.2874, \n "name": "Open Brazil", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Brazil/past_events", \n "projects_list_url": "https://github.com/codeforbrazil", \n "rss": "https://twitrss.me/twitter_user_to_rss/?user=openbrazil&replies=on", \n "started_on": "2015-04-13", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Brazil/upcoming_events", \n "website": "http://openbrazil.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -86.252, \n 41.6764\n ], \n "type": "Point"\n }, \n "id": "Hack-Michiana", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Hack-Michiana/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Hack-Michiana/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Hack-Michiana/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Hack-Michiana/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Hack-Michiana", \n "city": "South Bend, IN", \n "events_url": "", \n "last_updated": 1431382725, \n "latitude": 41.6764, \n "longitude": -86.252, \n "name": "Hack Michiana", \n "past_events": "http://www.codeforamerica.org/api/organizations/Hack-Michiana/past_events", \n "projects_list_url": "https://github.com/hackmichiana", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Hack-Michiana/upcoming_events", \n "website": "http://codejot.com/hackmichiana/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -85.7585, \n 38.2527\n ], \n "type": "Point"\n }, \n "id": "Civic-Data-Alliance", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance", \n "city": "Louisville, KY", \n "events_url": "http://www.meetup.com/Louisville-Civic-Data-Alliance/", \n "last_updated": 1431382085, \n "latitude": 38.2527, \n "longitude": -85.7585, \n "name": "Civic Data Alliance", \n "past_events": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance/past_events", \n "projects_list_url": "https://github.com/civicdata", \n "rss": "http://www.civicdataalliance.org/feed.xml", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Civic-Data-Alliance/upcoming_events", \n "website": "http://www.civicdataalliance.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -87.6298, \n 41.8781\n ], \n "type": "Point"\n }, \n "id": "City-of-Chicago-Department-of-Innovation-and-Technology", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology", \n "city": "Chicago, IL", \n "events_url": "", \n "last_updated": 1431382271, \n "latitude": 41.8781, \n "longitude": -87.6298, \n "name": "City of Chicago Department of Innovation and Technology", \n "past_events": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology/past_events", \n "projects_list_url": "https://github.com/chicago", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Government, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/City-of-Chicago-Department-of-Innovation-and-Technology/upcoming_events", \n "website": "http://www.cityofchicago.org/city/en/depts/doit.html"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -84.388, \n 33.749\n ], \n "type": "Point"\n }, \n "id": "Code-for-Atlanta", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta", \n "city": "Atlanta, GA", \n "events_url": "", \n "last_updated": 1431382384, \n "latitude": 33.749, \n "longitude": -84.388, \n "name": "Code for Atlanta", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta/past_events", \n "projects_list_url": "https://github.com/codeforatlanta", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Atlanta/upcoming_events", \n "website": "http://www.codeforatlanta.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -82.4593, \n 27.9465\n ], \n "type": "Point"\n }, \n "id": "Code-for-Tampa-Bay", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay", \n "city": "Tampa, FL", \n "events_url": "http://www.meetup.com/Code-for-Tampa-Bay-Brigade/", \n "last_updated": 1431382100, \n "latitude": 27.9465, \n "longitude": -82.4593, \n "name": "Code for Tampa Bay", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay/past_events", \n "projects_list_url": "https://github.com/code-for-tb", \n "rss": "", \n "started_on": "2015-03-13", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Tampa-Bay/upcoming_events", \n "website": "http://www.codefortampabay.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.703, \n 35.5309\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kawasaki", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki", \n "city": "Kawasaki, Japan", \n "events_url": "http://codeforkawasaki.connpass.com", \n "last_updated": 1431382295, \n "latitude": 35.5309, \n "longitude": 139.703, \n "name": "Code for Kawasaki", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki/past_events", \n "projects_list_url": "https://github.com/codeforkawasaki", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Code for Japan", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kawasaki/upcoming_events", \n "website": "http://codeforkawasaki.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 15.9464, \n 45.793\n ], \n "type": "Point"\n }, \n "id": "Open-Zagreb", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Zagreb/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Zagreb/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Zagreb/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Zagreb/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Zagreb", \n "city": "Zagreb, Croatia", \n "events_url": "", \n "last_updated": 1431382305, \n "latitude": 45.793, \n "longitude": 15.9464, \n "name": "Open Zagreb", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Zagreb/past_events", \n "projects_list_url": "https://github.com/openzagreb", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Zagreb/upcoming_events", \n "website": "http://zagreb.open.hr"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 121.5319, \n 25.0478\n ], \n "type": "Point"\n }, \n "id": "g0v.tw", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/g0v.tw/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/g0v.tw/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/g0v.tw/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/g0v.tw/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/g0v.tw", \n "city": "Taipei, Taiwan", \n "events_url": "", \n "last_updated": 1431382518, \n "latitude": 25.0478, \n "longitude": 121.5319, \n "name": "g0v.tw", \n "past_events": "http://www.codeforamerica.org/api/organizations/g0v.tw/past_events", \n "projects_list_url": "https://github.com/g0v/", \n "rss": "https://g0vsite.firebaseio.com/feed/blog/articles", \n "started_on": "2015-03-09", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/g0v.tw/upcoming_events", \n "website": "http://g0v.tw/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n null, \n null\n ], \n "type": "Point"\n }, \n "id": "Open-Elections", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Elections/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Elections/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Elections/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Elections/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Elections", \n "city": "", \n "events_url": "", \n "last_updated": 1431382194, \n "latitude": null, \n "longitude": null, \n "name": "Open Elections", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Elections/past_events", \n "projects_list_url": "https://github.com/openelections", \n "rss": "http://blog.openelections.net/", \n "started_on": "2015-05-04", \n "type": "Project", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Elections/upcoming_events", \n "website": "http://openelections.net/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 130.4129, \n 33.584\n ], \n "type": "Point"\n }, \n "id": "Code-for-Fukuoka", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka", \n "city": "Fukuoka, Japan", \n "events_url": "", \n "last_updated": 1431382624, \n "latitude": 33.584, \n "longitude": 130.4129, \n "name": "Code for Fukuoka", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Fukuoka/upcoming_events", \n "website": "http://code4fukuoka.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 127.0165, \n 37.515\n ], \n "type": "Point"\n }, \n "id": "CodeNamu", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/CodeNamu/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/CodeNamu/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/CodeNamu/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/CodeNamu/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/CodeNamu", \n "city": "Seoul, South Korea", \n "events_url": "http://www.meetup.com/Code-for-Seoul", \n "last_updated": 1431382667, \n "latitude": 37.515, \n "longitude": 127.0165, \n "name": "CodeNamu", \n "past_events": "http://www.codeforamerica.org/api/organizations/CodeNamu/past_events", \n "projects_list_url": "https://github.com/codeforseoul", \n "rss": "http://codenamu.org/feed/", \n "started_on": "2015-04-14", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/CodeNamu/upcoming_events", \n "website": "http://codenamu.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -81.519, \n 41.0814\n ], \n "type": "Point"\n }, \n "id": "Code-for-Summit-County", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County", \n "city": "Akron, OH", \n "events_url": "http://www.meetup.com/Code-for-Summit-County/", \n "last_updated": 1431382240, \n "latitude": 41.0814, \n "longitude": -81.519, \n "name": "Code for Summit County", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County/past_events", \n "projects_list_url": "https://github.com/CodeForSummitCounty", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Summit-County/upcoming_events", \n "website": "http://codeforsummitcounty.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.9116, \n 35.8586\n ], \n "type": "Point"\n }, \n "id": "Code-for-Nagareyama", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama", \n "city": "Nagareyama, Japan", \n "events_url": "", \n "last_updated": 1431382345, \n "latitude": 35.8586, \n "longitude": 139.9116, \n "name": "Code for Nagareyama", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nagareyama/upcoming_events", \n "website": "https://www.facebook.com/pages/Code-for-NAGAREYAMA/445633632232347"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -86.7782, \n 36.1678\n ], \n "type": "Point"\n }, \n "id": "Code-for-Nashville", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville", \n "city": "Nashville, TN", \n "events_url": "http://www.meetup.com/code-for-nashville/", \n "last_updated": 1431382673, \n "latitude": 36.1678, \n "longitude": -86.7782, \n "name": "Code for Nashville", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville/past_events", \n "projects_list_url": "https://github.com/code-for-nashville", \n "rss": "http://www.codefornashville.org/blog/", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nashville/upcoming_events", \n "website": "http://www.codefornashville.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -78.6386, \n 35.7721\n ], \n "type": "Point"\n }, \n "id": "Code-for-Raleigh", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh", \n "city": "Raleigh, NC", \n "events_url": "http://www.meetup.com/Triangle-Code-for-America/", \n "last_updated": 1431381813, \n "latitude": 35.7721, \n "longitude": -78.6386, \n "name": "Code for Raleigh", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Raleigh/upcoming_events", \n "website": "http://www.meetup.com/Triangle-Code-for-America/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.3496, \n 35.9985\n ], \n "type": "Point"\n }, \n "id": "Code-for-Saitama", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama", \n "city": "Saitama, Japan", \n "events_url": "", \n "last_updated": 1431382371, \n "latitude": 35.9985, \n "longitude": 139.3496, \n "name": "Code for Saitama", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Saitama/upcoming_events", \n "website": "https://www.facebook.com/groups/186097664924714/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -71.4543, \n 41.4887\n ], \n "type": "Point"\n }, \n "id": "Code-Island", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-Island/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-Island/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-Island/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-Island/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-Island", \n "city": "Rhode Island", \n "events_url": "http://www.meetup.com/Rhode-Island-Code-for-America-Brigade/", \n "last_updated": 1431382251, \n "latitude": 41.4887, \n "longitude": -71.4543, \n "name": "Code Island", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-Island/past_events", \n "projects_list_url": "https://github.com/codeisland", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-Island/upcoming_events", \n "website": "http://code-island.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -82.5515, \n 35.5951\n ], \n "type": "Point"\n }, \n "id": "Code-for-Asheville", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville", \n "city": "Asheville, NC", \n "events_url": "http://www.meetup.com/Code-for-Asheville/", \n "last_updated": 1431381973, \n "latitude": 35.5951, \n "longitude": -82.5515, \n "name": "Code for Asheville", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville/past_events", \n "projects_list_url": "https://github.com/codeforasheville", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Asheville/upcoming_events", \n "website": "http://codeforasheville.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 136.9289, \n 36.5905\n ], \n "type": "Point"\n }, \n "id": "Code-for-Nanto", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto", \n "city": "Nanto, Japan", \n "events_url": "", \n "last_updated": 1431382705, \n "latitude": 36.5905, \n "longitude": 136.9289, \n "name": "Code for Nanto", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Nanto/upcoming_events", \n "website": "http://www.7104.info/codefor/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 36.7654, \n -1.2993\n ], \n "type": "Point"\n }, \n "id": "Code-for-Kenya", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya", \n "city": "Nairobi, Kenya", \n "events_url": "", \n "last_updated": 1431381998, \n "latitude": -1.2993, \n "longitude": 36.7654, \n "name": "Code for Kenya", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya/past_events", \n "projects_list_url": "http://github.com/CodeForAfrica", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Kenya/upcoming_events", \n "website": "http://code4kenya.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 12.3833, \n 51.3333\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Leipzig", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig", \n "city": "Leipzig, Germany", \n "events_url": "", \n "last_updated": 1431382381, \n "latitude": 51.3333, \n "longitude": 12.3833, \n "name": "OK Lab Leipzig", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig/past_events", \n "projects_list_url": "https://github.com/CodeforLeipzig", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Leipzig/upcoming_events", \n "website": "http://codefor.de/leipzig"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -66.116, \n 18.4661\n ], \n "type": "Point"\n }, \n "id": "Code4PuertoRico", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico", \n "city": "San Juan, PR", \n "events_url": "http://code4puertorico.org/events.html", \n "last_updated": 1431381984, \n "latitude": 18.4661, \n "longitude": -66.116, \n "name": "Code4PuertoRico", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico/past_events", \n "projects_list_url": "https://github.com/Code4PuertoRico", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code4PuertoRico/upcoming_events", \n "website": "http://code4puertorico.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -80.1436, \n 26.1237\n ], \n "type": "Point"\n }, \n "id": "Code-for-Fort-Lauderdale", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale", \n "city": "Ft. Lauderdale, FL", \n "events_url": "http://www.meetup.com/Code-for-FTL", \n "last_updated": 1431382237, \n "latitude": 26.1237, \n "longitude": -80.1436, \n "name": "Code for Fort Lauderdale", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale/past_events", \n "projects_list_url": "https://github.com/codeforftl", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Fort-Lauderdale/upcoming_events", \n "website": "http://codeforftl.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.4137, \n 37.7759\n ], \n "type": "Point"\n }, \n "id": "Code-for-America", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-America/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-America/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-America/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-America/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-America", \n "city": "San Francisco, CA", \n "events_url": "", \n "last_updated": 1431382398, \n "latitude": 37.7759, \n "longitude": -122.4137, \n "name": "Code for America", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-America/past_events", \n "projects_list_url": "https://github.com/codeforamerica", \n "rss": "http://www.codeforamerica.org/blog/", \n "started_on": "2015-04-13", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-America/upcoming_events", \n "website": "http://codeforamerica.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.4194, \n 37.7749\n ], \n "type": "Point"\n }, \n "id": "Code-for-San-Francisco", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco", \n "city": "San Francisco, CA", \n "events_url": "http://www.meetup.com/Code-for-San-Francisco-Civic-Hack-Night/", \n "last_updated": 1431382628, \n "latitude": 37.7749, \n "longitude": -122.4194, \n "name": "Code for San Francisco", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheet/pub?key=0ArHmv-6U1drqdDVGZzdiMVlkMnRJLXp2cm1ZTUhMOFE&output=csv", \n "rss": "http://codeforsanfrancisco.org/blog/", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-San-Francisco/upcoming_events", \n "website": "http://codeforsanfrancisco.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -87.6298, \n 41.8781\n ], \n "type": "Point"\n }, \n "id": "Open-Gov-Hack-Night", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night", \n "city": "Chicago, IL", \n "events_url": "http://www.eventbrite.com/e/open-gov-hack-night-registration-4745328405", \n "last_updated": 1431382745, \n "latitude": 41.8781, \n "longitude": -87.6298, \n "name": "Open Gov Hack Night", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night/past_events", \n "projects_list_url": "https://raw.github.com/open-city/civic-json-files/master/projects.json", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Gov-Hack-Night/upcoming_events", \n "website": "http://opengovhacknight.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -99.1332, \n 19.432\n ], \n "type": "Point"\n }, \n "id": "Codigo-para-la-Ciudad-de-Mexico", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico", \n "city": "Mexico City, MX", \n "events_url": "", \n "last_updated": 1431382242, \n "latitude": 19.432, \n "longitude": -99.1332, \n "name": "Codigo para la Ciudad de Mexico", \n "past_events": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico/past_events", \n "projects_list_url": "https://github.com/labplc", \n "rss": "http://labplc.mx/category/conversaciones/", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Codigo-para-la-Ciudad-de-Mexico/upcoming_events", \n "website": "http://codigo.labplc.mx"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.3321, \n 47.6062\n ], \n "type": "Point"\n }, \n "id": "Code-for-Seattle", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle", \n "city": "Seattle, WA", \n "events_url": "http://www.meetup.com/Code-for-Seattle/", \n "last_updated": 1431382024, \n "latitude": 47.6062, \n "longitude": -122.3321, \n "name": "Code for Seattle", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle/past_events", \n "projects_list_url": "http://codeforseattle.org/projects/index.csv", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Seattle/upcoming_events", \n "website": "http://codeforseattle.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -85.6681, \n 42.9634\n ], \n "type": "Point"\n }, \n "id": "Friendly-Code", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Friendly-Code/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Friendly-Code/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Friendly-Code/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Friendly-Code/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Friendly-Code", \n "city": "Grand Rapids, MI", \n "events_url": "http://www.meetup.com/cfabrigade/Grand-Rapids-MI/", \n "last_updated": 1431381789, \n "latitude": 42.9634, \n "longitude": -85.6681, \n "name": "Friendly Code", \n "past_events": "http://www.codeforamerica.org/api/organizations/Friendly-Code/past_events", \n "projects_list_url": "https://github.com/friendlycode", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Friendly-Code/upcoming_events", \n "website": "http://friendlycode.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -74.0776, \n 40.7282\n ], \n "type": "Point"\n }, \n "id": "Code-For-JC", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-For-JC/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-For-JC/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-For-JC/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-For-JC/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-For-JC", \n "city": "Jersey City, NJ", \n "events_url": "http://www.meetup.com/Code-For-Jersey-City", \n "last_updated": 1431382066, \n "latitude": 40.7282, \n "longitude": -74.0776, \n "name": "Code For JC", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-For-JC/past_events", \n "projects_list_url": "https://github.com/CodeForJerseyCity", \n "rss": "", \n "started_on": "2015-04-16", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-For-JC/upcoming_events", \n "website": "http://codeforjc.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 139.93, \n 37.4896\n ], \n "type": "Point"\n }, \n "id": "Code-for-Aizu", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu", \n "city": "Aizuwakamatsu, Japan", \n "events_url": "", \n "last_updated": 1431382344, \n "latitude": 37.4896, \n "longitude": 139.93, \n "name": "Code for Aizu", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Code for Japan", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Aizu/upcoming_events", \n "website": "http://aizu.io/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 144.955, \n -37.8132\n ], \n "type": "Point"\n }, \n "id": "Code-for-Australia", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Australia/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Australia/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Australia/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Australia/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Australia", \n "city": "Melbourne, Australia", \n "events_url": "http://www.meetup.com/Code-for-Melbourne-Community-Drinks-Hacknight/", \n "last_updated": 1431382181, \n "latitude": -37.8132, \n "longitude": 144.955, \n "name": "Code for Australia", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Australia/past_events", \n "projects_list_url": "https://github.com/CodeforAustralia", \n "rss": "http://blog.codeforaustralia.org/feeds/rss", \n "started_on": "2015-03-10", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Australia/upcoming_events", \n "website": "http://www.codeforaustralia.org"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -100.3031, \n 25.6488\n ], \n "type": "Point"\n }, \n "id": "Hacking-Monterrey", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey", \n "city": "Monterrey, Mexico", \n "events_url": "http://www.meetup.com/Open-Data-Monterrey/", \n "last_updated": 1431382352, \n "latitude": 25.6488, \n "longitude": -100.3031, \n "name": "Hacking Monterrey", \n "past_events": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey/past_events", \n "projects_list_url": "https://github.com/hackingmty", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Hacking-Monterrey/upcoming_events", \n "website": "http://hackingmty.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.0365, \n 38.9072\n ], \n "type": "Point"\n }, \n "id": "Project-Open-Data", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Project-Open-Data/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Project-Open-Data/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Project-Open-Data/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Project-Open-Data/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Project-Open-Data", \n "city": "Washington, DC", \n "events_url": "", \n "last_updated": 1431382698, \n "latitude": 38.9072, \n "longitude": -77.0365, \n "name": "Project Open Data", \n "past_events": "http://www.codeforamerica.org/api/organizations/Project-Open-Data/past_events", \n "projects_list_url": "https://github.com/project-open-data", \n "rss": "", \n "started_on": "2015-03-28", \n "type": "Government", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Project-Open-Data/upcoming_events", \n "website": "http://project-open-data.github.io/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -79.7947, \n 36.069\n ], \n "type": "Point"\n }, \n "id": "Code-for-Greensboro", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro", \n "city": "Greensboro, NC", \n "events_url": "http://www.meetup.com/Code-for-Greensboro/", \n "last_updated": 1431382063, \n "latitude": 36.069, \n "longitude": -79.7947, \n "name": "Code for Greensboro", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro/past_events", \n "projects_list_url": "https://github.com/codeforgso", \n "rss": "", \n "started_on": "2015-05-05", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Greensboro/upcoming_events", \n "website": "http://codeforgreensboro.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -8.2439, \n 53.4129\n ], \n "type": "Point"\n }, \n "id": "Code-for-Ireland", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland", \n "city": "Ireland", \n "events_url": "http://codeforireland.com/events/", \n "last_updated": 1431382156, \n "latitude": 53.4129, \n "longitude": -8.2439, \n "name": "Code for Ireland", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland/past_events", \n "projects_list_url": "https://github.com/codeforireland", \n "rss": "", \n "started_on": "2015-04-20", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Ireland/upcoming_events", \n "website": "http://codeforireland.com/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -85.3097, \n 35.0456\n ], \n "type": "Point"\n }, \n "id": "Open-Chattanooga", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga", \n "city": "Chattanooga, TN", \n "events_url": "http://www.meetup.com/cfabrigade/Chattanooga-TN/", \n "last_updated": 1431381807, \n "latitude": 35.0456, \n "longitude": -85.3097, \n "name": "Open Chattanooga", \n "past_events": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga/past_events", \n "projects_list_url": "https://github.com/openchattanooga", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Open-Chattanooga/upcoming_events", \n "website": "http://openchattanooga.com/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 74.3407, \n 31.5451\n ], \n "type": "Point"\n }, \n "id": "Code-for-Pakistan", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan", \n "city": "Lahore, Pakistan", \n "events_url": "http://lahorebrigade.eventbrite.com", \n "last_updated": 1431382206, \n "latitude": 31.5451, \n "longitude": 74.3407, \n "name": "Code for Pakistan", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan/past_events", \n "projects_list_url": "https://github.com/codeforpakistan", \n "rss": "http://codeforpakistan.org/blog", \n "started_on": "2015-03-27", \n "type": "Brigade, Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Pakistan/upcoming_events", \n "website": "http://www.codeforpakistan.org/code-for-all-brigades.html"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -77.1068, \n 38.88\n ], \n "type": "Point"\n }, \n "id": "Code-for-NoVA", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA", \n "city": "Arlington, VA", \n "events_url": "http://www.meetup.com/Arlington-Code-Shop/", \n "last_updated": 1431382359, \n "latitude": 38.88, \n "longitude": -77.1068, \n "name": "Code for NoVA", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-NoVA/upcoming_events", \n "website": "http://www.meetup.com/Arlington-Code-Shop/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 0.0, \n 0.0\n ], \n "type": "Point"\n }, \n "id": "Poplus", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Poplus/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Poplus/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Poplus/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Poplus/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Poplus", \n "city": "", \n "events_url": "https://www.google.com/calendar/embed?src=b9cleffo7lgld26strcs6ec1os%40group.calendar.google.com&ctz=Europe/London", \n "last_updated": 1431382167, \n "latitude": 0.0, \n "longitude": 0.0, \n "name": "Poplus", \n "past_events": "http://www.codeforamerica.org/api/organizations/Poplus/past_events", \n "projects_list_url": "https://docs.google.com/a/codeforamerica.org/spreadsheets/d/14OicIHuBbweZKegkLCYwnbOfiK4lHbuAzcWkknplXOs/export?format=csv", \n "rss": "http://feeds.feedburner.com/poplus/blog", \n "started_on": "2015-03-09", \n "type": "Partner", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Poplus/upcoming_events", \n "website": "http://poplus.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 13.3833, \n 52.5167\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Berlin", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin", \n "city": "Berlin, Germany", \n "events_url": "http://www.meetup.com/OK-Lab-Berlin/", \n "last_updated": 1431382333, \n "latitude": 52.5167, \n "longitude": 13.3833, \n "name": "OK Lab Berlin", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheets/d/1FJJqMiofGyqBERXHBKkvQmlDnNVwxbQdkuRBSsvbUfQ/export?format=csv", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Berlin/upcoming_events", \n "website": "http://codefor.de/berlin"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -83.0458, \n 42.3314\n ], \n "type": "Point"\n }, \n "id": "Code-for-Detroit", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit", \n "city": "Detroit, MI", \n "events_url": "", \n "last_updated": 1431382065, \n "latitude": 42.3314, \n "longitude": -83.0458, \n "name": "Code for Detroit", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade, midwest, ", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Detroit/upcoming_events", \n "website": "https://www.facebook.com/CodeForDetroit"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -149.9003, \n 61.2181\n ], \n "type": "Point"\n }, \n "id": "Code-for-Anchorage", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage", \n "city": "Anchorage, AK", \n "events_url": "http://www.meetup.com/cfabrigade/Anchorage-AK/", \n "last_updated": 1431382076, \n "latitude": 61.2181, \n "longitude": -149.9003, \n "name": "Code for Anchorage", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage/past_events", \n "projects_list_url": "https://github.com/codeforanchorage", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Anchorage/upcoming_events", \n "website": "http://codeforanchorage.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 127.6809, \n 26.2124\n ], \n "type": "Point"\n }, \n "id": "Code-for-Okinawa", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa", \n "city": "Okinawa, Japan", \n "events_url": "", \n "last_updated": 1431382692, \n "latitude": 26.2124, \n "longitude": 127.6809, \n "name": "Code for Okinawa", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa/past_events", \n "projects_list_url": "https://github.com/codeforokinawa", \n "rss": "http://code4okinawa.org/feed", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Okinawa/upcoming_events", \n "website": "http://code4okinawa.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -157.8583, \n 21.3069\n ], \n "type": "Point"\n }, \n "id": "Code-for-Hawaii", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii", \n "city": "Honolulu, HI", \n "events_url": "", \n "last_updated": 1431382695, \n "latitude": 21.3069, \n "longitude": -157.8583, \n "name": "Code for Hawaii", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii/past_events", \n "projects_list_url": "https://github.com/codeforhawaii", \n "rss": "", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Hawaii/upcoming_events", \n "website": "https://plus.google.com/communities/116866725555175272325?banner=pwa"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 8.7714, \n 51.7084\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Padderborn", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn", \n "city": "Paderborn, Germany", \n "events_url": "", \n "last_updated": 1431382111, \n "latitude": 51.7084, \n "longitude": 8.7714, \n "name": "OK Lab Padderborn", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn/past_events", \n "projects_list_url": "https://github.com/codeforpb", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Padderborn/upcoming_events", \n "website": "http://codefor.de/paderborn/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -122.7431, \n 38.0564\n ], \n "type": "Point"\n }, \n "id": "Code-for-Marin", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Marin/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Marin/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Marin/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Marin/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Marin", \n "city": "Marin County, CA", \n "events_url": "", \n "last_updated": 1431382309, \n "latitude": 38.0564, \n "longitude": -122.7431, \n "name": "Code for Marin", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Marin/past_events", \n "projects_list_url": "https://github.com/codeformarin", \n "rss": "", \n "started_on": "2015-05-05", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Marin/upcoming_events", \n "website": "http://codeformarin.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -87.6298, \n 41.8781\n ], \n "type": "Point"\n }, \n "id": "Smart-Chicago-Collaborative", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative", \n "city": "Chicago, IL", \n "events_url": "", \n "last_updated": 1431382728, \n "latitude": 41.8781, \n "longitude": -87.6298, \n "name": "Smart Chicago Collaborative", \n "past_events": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative/past_events", \n "projects_list_url": "https://github.com/smartchicago", \n "rss": "http://www.smartchicagocollaborative.org/feed/", \n "started_on": "2015-03-10", \n "type": "partner, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Smart-Chicago-Collaborative/upcoming_events", \n "website": "http://www.smartchicagocollaborative.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 9.2167, \n 49.15\n ], \n "type": "Point"\n }, \n "id": "OK-Lab-Heilbronn", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn", \n "city": "Heilbronn, Germany", \n "events_url": "", \n "last_updated": 1431382315, \n "latitude": 49.15, \n "longitude": 9.2167, \n "name": "OK Lab Heilbronn", \n "past_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn/past_events", \n "projects_list_url": "", \n "rss": "", \n "started_on": "2015-03-09", \n "type": "Brigade, OK Lab", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/OK-Lab-Heilbronn/upcoming_events", \n "website": "http://codefor.de/heilbronn"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -87.6298, \n 41.8781\n ], \n "type": "Point"\n }, \n "id": "FreeGeekChicago", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago", \n "city": "Chicago, IL", \n "events_url": "", \n "last_updated": 1431382775, \n "latitude": 41.8781, \n "longitude": -87.6298, \n "name": "FreeGeekChicago", \n "past_events": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago/past_events", \n "projects_list_url": "https://github.com/sc3/", \n "rss": "http://freegeekchicago.org/feed", \n "started_on": "2015-03-10", \n "type": "partner, midwest", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/FreeGeekChicago/upcoming_events", \n "website": "http://www.freegeekchicago.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -76.7882, \n 17.971\n ], \n "type": "Point"\n }, \n "id": "Code-for-the-Caribbean", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean", \n "city": "Kingston, Jamaica", \n "events_url": "", \n "last_updated": 1431382330, \n "latitude": 17.971, \n "longitude": -76.7882, \n "name": "Code for the Caribbean", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean/past_events", \n "projects_list_url": "https://github.com/codeforthecaribbean", \n "rss": "http://www.codeforthecaribbean.org/blog", \n "started_on": "2015-03-09", \n "type": "Code for All", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-the-Caribbean/upcoming_events", \n "website": "http://www.codeforthecaribbean.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -80.8395, \n 35.2032\n ], \n "type": "Point"\n }, \n "id": "Code-for-Charlotte", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte", \n "city": "Charlotte, NC", \n "events_url": "http://www.meetup.com/Code-For-Charlotte/", \n "last_updated": 1431382780, \n "latitude": 35.2032, \n "longitude": -80.8395, \n "name": "Code for Charlotte", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte/past_events", \n "projects_list_url": "https://github.com/CodeForCharlotte", \n "rss": "http://www.codeforcharlotte.org/feed", \n "started_on": "2015-03-09", \n "type": "Brigade, Officiial", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Charlotte/upcoming_events", \n "website": "http://www.codeforcharlotte.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 20.4775, \n 53.7759\n ], \n "type": "Point"\n }, \n "id": "Code-for-Olsztyn", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn", \n "city": "Olsztyn, Poland", \n "events_url": "", \n "last_updated": 1431382341, \n "latitude": 53.7759, \n "longitude": 20.4775, \n "name": "Code for Olsztyn", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn/past_events", \n "projects_list_url": "", \n "rss": "http://blog.epf.org.pl/koduj-dla-polski/olsztyn/", \n "started_on": "2015-03-10", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Olsztyn/upcoming_events", \n "website": "http://blog.epf.org.pl/koduj-dla-polski/olsztyn/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n 19.9432, \n 50.0627\n ], \n "type": "Point"\n }, \n "id": "Code-for-Krak\u00f3w", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w", \n "city": "Krak\u00f3w, Poland", \n "events_url": "", \n "last_updated": 1431382361, \n "latitude": 50.0627, \n "longitude": 19.9432, \n "name": "Code for Krak\u00f3w", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w/past_events", \n "projects_list_url": "", \n "rss": "http://blog.epf.org.pl/koduj-dla-polski/krakow/", \n "started_on": "2015-03-09", \n "type": "Brigade", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Krak\u00f3w/upcoming_events", \n "website": "http://blog.epf.org.pl/koduj-dla-polski/krakow/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -75.1638, \n 39.9523\n ], \n "type": "Point"\n }, \n "id": "Code-for-Philly", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Philly/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Philly/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Philly/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Philly/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Philly", \n "city": "Philadelphia, PA", \n "events_url": "http://www.meetup.com/Code-for-America-Philly", \n "last_updated": 1431382029, \n "latitude": 39.9523, \n "longitude": -75.1638, \n "name": "Code for Philly", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Philly/past_events", \n "projects_list_url": "http://codeforphilly.org/projects.csv", \n "rss": "http://codeforphilly.org/project-updates?format=rss", \n "started_on": "2015-03-21", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Philly/upcoming_events", \n "website": "http://codeforphilly.org/"\n }, \n "type": "Feature"\n }, \n {\n "geometry": {\n "coordinates": [\n -121.4944, \n 38.5816\n ], \n "type": "Point"\n }, \n "id": "Code-for-Sacramento", \n "properties": {\n "all_events": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento/events", \n "all_issues": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento/issues", \n "all_projects": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento/projects", \n "all_stories": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento/stories", \n "api_url": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento", \n "city": "Sacramento, CA", \n "events_url": "", \n "last_updated": 1431382395, \n "latitude": 38.5816, \n "longitude": -121.4944, \n "name": "Code for Sacramento", \n "past_events": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento/past_events", \n "projects_list_url": "https://docs.google.com/spreadsheet/pub?key=1k5gff8Mvs6rb3sz6aLll5Dq8joftl65Gmy33DO-7Kv8&output=csv", \n "rss": "http://code4sac.org/cat/blog/", \n "started_on": "2015-03-10", \n "type": "Brigade, Official", \n "upcoming_events": "http://www.codeforamerica.org/api/organizations/Code-for-Sacramento/upcoming_events", \n "website": "http://codeforsacramento.org/"\n }, \n "type": "Feature"\n }\n ], \n "type": "FeatureCollection"\n}''')
elif url.geturl() == 'http://www.codeforamerica.org/fragments/global-header.html':
return response(200,'''HEADER''')
elif url.geturl() == 'http://www.codeforamerica.org/fragments/global-footer.html':
return response(200,'''FOOTER''')
print 'Unknown URL {}'.format(url.geturl())
raise ValueError('Unknown URL {}'.format(url.geturl()))
def test_widget(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/widget')
assert 'https://github.com/TESTORG/TESTREPO/issues/1' in response.data
assert '<h3 class="billboard-label">TEST TITLE</h3>' in response.data
assert 'class="label"' not in response.data
def test_embed_org_names(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/embed')
assert '<option value="Code for America">Code for America</option>' in response.data
def test_widget_org_name(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/widget?organization_name=Code-for-America')
assert 'https://github.com/TESTORG/TESTREPO/issues/1' in response.data
assert '<h3 class="billboard-label">TEST TITLE</h3>' in response.data
def test_widget_labels(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/widget?labels=help wanted,enhancement')
assert '<div class="labels">' in response.data
assert '<div class="label">help wanted</div>' in response.data
assert '<div class="label">enhancement</div>' in response.data
def test_widget_number(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/widget?number=2')
assert (response.data.count('<li class="layout-crotchet">') == 2)
def test_widget_tracking(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/widget?tracking=false')
self.assertTrue("ga('send', 'pageview');" not in response.data)
def test_ga_events(self):
with HTTMock(self.response_content):
response = self.client.get('/geeks/civicissues/widget')
self.assertTrue("ga('send', 'event', 'Civic Issues', 'click', 'https://github.com/TESTORG/TESTREPO/issues/1'" in response.data)
self.assertTrue("ga('send', 'pageview');" in response.data)
self.assertTrue("ga('send', 'event', 'Civic Issue View', 'view', link_and_referrer, 1 )" in response.data)
def test_analytics(self):
response = self.client.get("/geeks/civicissues/analytics")
self.assertEqual(response.status_code, 200)
if __name__ == '__main__':
unittest.main()