sba 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +41 -0
- data/.rspec +3 -0
- data/Gemfile +4 -0
- data/LICENSE.md +10 -0
- data/LICENSE.mkd +20 -0
- data/README.mkd +72 -0
- data/Rakefile +16 -0
- data/autotest/discover.rb +1 -0
- data/lib/faraday/multipart.rb +29 -0
- data/lib/faraday/raise_error.rb +31 -0
- data/lib/faraday/response/raise_error.rb +32 -0
- data/lib/sba.rb +51 -0
- data/lib/sba/client.rb +44 -0
- data/lib/sba/client/connection.rb +37 -0
- data/lib/sba/client/data.rb +73 -0
- data/lib/sba/client/licenses.rb +111 -0
- data/lib/sba/client/loans.rb +125 -0
- data/lib/sba/client/request.rb +37 -0
- data/lib/sba/client/sites.rb +71 -0
- data/lib/sba/client/urls.rb +134 -0
- data/lib/sba/configuration.rb +44 -0
- data/lib/sba/version.rb +3 -0
- data/sba.gemspec +37 -0
- data/spec/data_spec.rb +103 -0
- data/spec/fixtures/all_sites_keywords.json +1393 -0
- data/spec/fixtures/business_type_state.json +81 -0
- data/spec/fixtures/business_type_state_city.json +131 -0
- data/spec/fixtures/business_type_state_county.json +101 -0
- data/spec/fixtures/business_type_zip.json +111 -0
- data/spec/fixtures/by_business_type.json +601 -0
- data/spec/fixtures/by_state.json +71 -0
- data/spec/fixtures/city_links_for_state.json +30 -0
- data/spec/fixtures/data_city.json +87543 -0
- data/spec/fixtures/data_city_county.json +88355 -0
- data/spec/fixtures/data_county.json +813 -0
- data/spec/fixtures/data_specific_city.json +15 -0
- data/spec/fixtures/data_specific_county.json +2493 -0
- data/spec/fixtures/doing_business_as.json +591 -0
- data/spec/fixtures/employer_requirements.json +2211 -0
- data/spec/fixtures/entity_filing.json +551 -0
- data/spec/fixtures/federal_and_state_financing_for.json +973 -0
- data/spec/fixtures/loan_grants.json +901 -0
- data/spec/fixtures/loan_grants_by_industry_specialty.json +533 -0
- data/spec/fixtures/loan_grants_by_specialty.json +210 -0
- data/spec/fixtures/loan_grants_industry.json +324 -0
- data/spec/fixtures/loan_grants_state_ind_spec.json +381 -0
- data/spec/fixtures/loan_grants_state_industry.json +381 -0
- data/spec/fixtures/loan_grants_state_specialty.json +362 -0
- data/spec/fixtures/primary_url_for_athens.json +15 -0
- data/spec/fixtures/primary_url_for_clarke_county.json +29 -0
- data/spec/fixtures/rec_sites_categories.json +249 -0
- data/spec/fixtures/rec_sites_categories.xml +1 -0
- data/spec/fixtures/rec_sites_domain.json +9 -0
- data/spec/fixtures/rec_sites_domain.xml +1 -0
- data/spec/fixtures/rec_sites_keyword.json +17 -0
- data/spec/fixtures/rec_sites_keywords.xml +1 -0
- data/spec/fixtures/rec_sites_master_term.json +9 -0
- data/spec/fixtures/rec_sites_master_term.xml +1 -0
- data/spec/fixtures/state_financing_for.json +73 -0
- data/spec/fixtures/state_licenses.json +11191 -0
- data/spec/fixtures/tax_registration.json +1101 -0
- data/spec/fixtures/url_city.json +6063 -0
- data/spec/fixtures/url_city_county.json +6875 -0
- data/spec/fixtures/url_county.json +813 -0
- data/spec/fixtures/url_specific_city.json +141 -0
- data/spec/fixtures/url_specific_county.json +477 -0
- data/spec/helper.rb +27 -0
- data/spec/licenses_spec.rb +148 -0
- data/spec/loans_spec.rb +193 -0
- data/spec/sba_ruby/client_spec.rb +8 -0
- data/spec/sba_spec.rb +9 -0
- data/spec/sites_spec.rb +101 -0
- data/spec/urls_spec.rb +188 -0
- metadata +345 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
[
|
|
2
|
+
{"name": "Dallas" ,
|
|
3
|
+
"fips_county_cd": "85" ,
|
|
4
|
+
"feat_class": "Populated Place" ,
|
|
5
|
+
"county_name": "Collin" ,
|
|
6
|
+
"primary_latitude": "32.78" ,
|
|
7
|
+
"state_name": "Texas" ,
|
|
8
|
+
"url": "http://www.dallascityhall.com/" ,
|
|
9
|
+
"state_abbreviation": "TX" ,
|
|
10
|
+
"description": null ,
|
|
11
|
+
"primary_longitude": "-96.8" ,
|
|
12
|
+
"link_title": null ,
|
|
13
|
+
"feature_id": 1380944 ,
|
|
14
|
+
"full_county_name": "Collin County" ,
|
|
15
|
+
"fips_class": "C1"},
|
|
16
|
+
{"name": "Dallas" ,
|
|
17
|
+
"fips_county_cd": "113" ,
|
|
18
|
+
"feat_class": "Populated Place" ,
|
|
19
|
+
"county_name": "Dallas" ,
|
|
20
|
+
"primary_latitude": "32.78" ,
|
|
21
|
+
"state_name": "Texas" ,
|
|
22
|
+
"url": "http://www.dallascityhall.com/" ,
|
|
23
|
+
"state_abbreviation": "TX" ,
|
|
24
|
+
"description": null ,
|
|
25
|
+
"primary_longitude": "-96.8" ,
|
|
26
|
+
"link_title": null ,
|
|
27
|
+
"feature_id": 1380944 ,
|
|
28
|
+
"full_county_name": "Dallas County" ,
|
|
29
|
+
"fips_class": "C1"},
|
|
30
|
+
{"name": "Dallas" ,
|
|
31
|
+
"fips_county_cd": "121" ,
|
|
32
|
+
"feat_class": "Populated Place" ,
|
|
33
|
+
"county_name": "Denton" ,
|
|
34
|
+
"primary_latitude": "32.78" ,
|
|
35
|
+
"state_name": "Texas" ,
|
|
36
|
+
"url": "http://www.dallascityhall.com/" ,
|
|
37
|
+
"state_abbreviation": "TX" ,
|
|
38
|
+
"description": null ,
|
|
39
|
+
"primary_longitude": "-96.8" ,
|
|
40
|
+
"link_title": null ,
|
|
41
|
+
"feature_id": 1380944 ,
|
|
42
|
+
"full_county_name": "Denton County" ,
|
|
43
|
+
"fips_class": "C1"},
|
|
44
|
+
{"name": "Dallas" ,
|
|
45
|
+
"fips_county_cd": "257" ,
|
|
46
|
+
"feat_class": "Populated Place" ,
|
|
47
|
+
"county_name": "Kaufman" ,
|
|
48
|
+
"primary_latitude": "32.78" ,
|
|
49
|
+
"state_name": "Texas" ,
|
|
50
|
+
"url": "http://www.dallascityhall.com/" ,
|
|
51
|
+
"state_abbreviation": "TX" ,
|
|
52
|
+
"description": null ,
|
|
53
|
+
"primary_longitude": "-96.8" ,
|
|
54
|
+
"link_title": null ,
|
|
55
|
+
"feature_id": 1380944 ,
|
|
56
|
+
"full_county_name": "Kaufman County" ,
|
|
57
|
+
"fips_class": "C1"},
|
|
58
|
+
{"name": "Dallas" ,
|
|
59
|
+
"fips_county_cd": "397" ,
|
|
60
|
+
"feat_class": "Populated Place" ,
|
|
61
|
+
"county_name": "Rockwall" ,
|
|
62
|
+
"primary_latitude": "32.78" ,
|
|
63
|
+
"state_name": "Texas" ,
|
|
64
|
+
"url": "http://www.dallascityhall.com/" ,
|
|
65
|
+
"state_abbreviation": "TX" ,
|
|
66
|
+
"description": null ,
|
|
67
|
+
"primary_longitude": "-96.8" ,
|
|
68
|
+
"link_title": null ,
|
|
69
|
+
"feature_id": 1380944 ,
|
|
70
|
+
"full_county_name": "Rockwall County" ,
|
|
71
|
+
"fips_class": "C1"},
|
|
72
|
+
{"name": "Dallas" ,
|
|
73
|
+
"fips_county_cd": "85" ,
|
|
74
|
+
"feat_class": "Populated Place" ,
|
|
75
|
+
"county_name": "Collin" ,
|
|
76
|
+
"primary_latitude": "32.78" ,
|
|
77
|
+
"state_name": "Texas" ,
|
|
78
|
+
"url": "http://www.greendallas.net/" ,
|
|
79
|
+
"state_abbreviation": "TX" ,
|
|
80
|
+
"description": null ,
|
|
81
|
+
"primary_longitude": "-96.8" ,
|
|
82
|
+
"link_title": null ,
|
|
83
|
+
"feature_id": 1380944 ,
|
|
84
|
+
"full_county_name": "Collin County" ,
|
|
85
|
+
"fips_class": "C1"},
|
|
86
|
+
{"name": "Dallas" ,
|
|
87
|
+
"fips_county_cd": "113" ,
|
|
88
|
+
"feat_class": "Populated Place" ,
|
|
89
|
+
"county_name": "Dallas" ,
|
|
90
|
+
"primary_latitude": "32.78" ,
|
|
91
|
+
"state_name": "Texas" ,
|
|
92
|
+
"url": "http://www.greendallas.net/" ,
|
|
93
|
+
"state_abbreviation": "TX" ,
|
|
94
|
+
"description": null ,
|
|
95
|
+
"primary_longitude": "-96.8" ,
|
|
96
|
+
"link_title": null ,
|
|
97
|
+
"feature_id": 1380944 ,
|
|
98
|
+
"full_county_name": "Dallas County" ,
|
|
99
|
+
"fips_class": "C1"},
|
|
100
|
+
{"name": "Dallas" ,
|
|
101
|
+
"fips_county_cd": "121" ,
|
|
102
|
+
"feat_class": "Populated Place" ,
|
|
103
|
+
"county_name": "Denton" ,
|
|
104
|
+
"primary_latitude": "32.78" ,
|
|
105
|
+
"state_name": "Texas" ,
|
|
106
|
+
"url": "http://www.greendallas.net/" ,
|
|
107
|
+
"state_abbreviation": "TX" ,
|
|
108
|
+
"description": null ,
|
|
109
|
+
"primary_longitude": "-96.8" ,
|
|
110
|
+
"link_title": null ,
|
|
111
|
+
"feature_id": 1380944 ,
|
|
112
|
+
"full_county_name": "Denton County" ,
|
|
113
|
+
"fips_class": "C1"},
|
|
114
|
+
{"name": "Dallas" ,
|
|
115
|
+
"fips_county_cd": "257" ,
|
|
116
|
+
"feat_class": "Populated Place" ,
|
|
117
|
+
"county_name": "Kaufman" ,
|
|
118
|
+
"primary_latitude": "32.78" ,
|
|
119
|
+
"state_name": "Texas" ,
|
|
120
|
+
"url": "http://www.greendallas.net/" ,
|
|
121
|
+
"state_abbreviation": "TX" ,
|
|
122
|
+
"description": null ,
|
|
123
|
+
"primary_longitude": "-96.8" ,
|
|
124
|
+
"link_title": null ,
|
|
125
|
+
"feature_id": 1380944 ,
|
|
126
|
+
"full_county_name": "Kaufman County" ,
|
|
127
|
+
"fips_class": "C1"},
|
|
128
|
+
{"name": "Dallas" ,
|
|
129
|
+
"fips_county_cd": "397" ,
|
|
130
|
+
"feat_class": "Populated Place" ,
|
|
131
|
+
"county_name": "Rockwall" ,
|
|
132
|
+
"primary_latitude": "32.78" ,
|
|
133
|
+
"state_name": "Texas" ,
|
|
134
|
+
"url": "http://www.greendallas.net/" ,
|
|
135
|
+
"state_abbreviation": "TX" ,
|
|
136
|
+
"description": null ,
|
|
137
|
+
"primary_longitude": "-96.8" ,
|
|
138
|
+
"link_title": null ,
|
|
139
|
+
"feature_id": 1380944 ,
|
|
140
|
+
"full_county_name": "Rockwall County" ,
|
|
141
|
+
"fips_class": "C1"}]
|
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
[
|
|
2
|
+
{"name": "Aliso Viejo" ,
|
|
3
|
+
"fips_county_cd": "59" ,
|
|
4
|
+
"feat_class": "Populated Place" ,
|
|
5
|
+
"county_name": "Orange" ,
|
|
6
|
+
"primary_latitude": "33.6" ,
|
|
7
|
+
"state_name": "California" ,
|
|
8
|
+
"url": "http://ci.aliso-viejo.ca.us/" ,
|
|
9
|
+
"state_abbreviation": "CA" ,
|
|
10
|
+
"description": null ,
|
|
11
|
+
"primary_longitude": "-117.74" ,
|
|
12
|
+
"link_title": null ,
|
|
13
|
+
"feature_id": 252532 ,
|
|
14
|
+
"full_county_name": "Orange County" ,
|
|
15
|
+
"fips_class": "C1"},
|
|
16
|
+
{"name": "Anaheim" ,
|
|
17
|
+
"fips_county_cd": "59" ,
|
|
18
|
+
"feat_class": "Populated Place" ,
|
|
19
|
+
"county_name": "Orange" ,
|
|
20
|
+
"primary_latitude": "33.83" ,
|
|
21
|
+
"state_name": "California" ,
|
|
22
|
+
"url": "http://www.anaheim.net/" ,
|
|
23
|
+
"state_abbreviation": "CA" ,
|
|
24
|
+
"description": null ,
|
|
25
|
+
"primary_longitude": "-117.91" ,
|
|
26
|
+
"link_title": null ,
|
|
27
|
+
"feature_id": 1652663 ,
|
|
28
|
+
"full_county_name": "Orange County" ,
|
|
29
|
+
"fips_class": "C1"},
|
|
30
|
+
{"name": "Brea" ,
|
|
31
|
+
"fips_county_cd": "59" ,
|
|
32
|
+
"feat_class": "Populated Place" ,
|
|
33
|
+
"county_name": "Orange" ,
|
|
34
|
+
"primary_latitude": "33.91" ,
|
|
35
|
+
"state_name": "California" ,
|
|
36
|
+
"url": "http://www.ci.brea.ca.us/" ,
|
|
37
|
+
"state_abbreviation": "CA" ,
|
|
38
|
+
"description": null ,
|
|
39
|
+
"primary_longitude": "-117.9" ,
|
|
40
|
+
"link_title": null ,
|
|
41
|
+
"feature_id": 1660373 ,
|
|
42
|
+
"full_county_name": "Orange County" ,
|
|
43
|
+
"fips_class": "C1"},
|
|
44
|
+
{"name": "Costa Mesa" ,
|
|
45
|
+
"fips_county_cd": "59" ,
|
|
46
|
+
"feat_class": "Populated Place" ,
|
|
47
|
+
"county_name": "Orange" ,
|
|
48
|
+
"primary_latitude": "33.64" ,
|
|
49
|
+
"state_name": "California" ,
|
|
50
|
+
"url": "http://www.ci.costa-mesa.ca.us/" ,
|
|
51
|
+
"state_abbreviation": "CA" ,
|
|
52
|
+
"description": null ,
|
|
53
|
+
"primary_longitude": "-117.91" ,
|
|
54
|
+
"link_title": null ,
|
|
55
|
+
"feature_id": 1652692 ,
|
|
56
|
+
"full_county_name": "Orange County" ,
|
|
57
|
+
"fips_class": "C1"},
|
|
58
|
+
{"name": "Cypress" ,
|
|
59
|
+
"fips_county_cd": "59" ,
|
|
60
|
+
"feat_class": "Populated Place" ,
|
|
61
|
+
"county_name": "Orange" ,
|
|
62
|
+
"primary_latitude": "33.81" ,
|
|
63
|
+
"state_name": "California" ,
|
|
64
|
+
"url": "http://www.ci.cypress.ca.us/" ,
|
|
65
|
+
"state_abbreviation": "CA" ,
|
|
66
|
+
"description": null ,
|
|
67
|
+
"primary_longitude": "-118.03" ,
|
|
68
|
+
"link_title": null ,
|
|
69
|
+
"feature_id": 1652696 ,
|
|
70
|
+
"full_county_name": "Orange County" ,
|
|
71
|
+
"fips_class": "C1"},
|
|
72
|
+
{"name": "Dana Point" ,
|
|
73
|
+
"fips_county_cd": "59" ,
|
|
74
|
+
"feat_class": "Populated Place" ,
|
|
75
|
+
"county_name": "Orange" ,
|
|
76
|
+
"primary_latitude": "33.46" ,
|
|
77
|
+
"state_name": "California" ,
|
|
78
|
+
"url": "http://www.danapoint.org/" ,
|
|
79
|
+
"state_abbreviation": "CA" ,
|
|
80
|
+
"description": null ,
|
|
81
|
+
"primary_longitude": "-117.69" ,
|
|
82
|
+
"link_title": null ,
|
|
83
|
+
"feature_id": 1656474 ,
|
|
84
|
+
"full_county_name": "Orange County" ,
|
|
85
|
+
"fips_class": "C1"},
|
|
86
|
+
{"name": "Fountain Valley" ,
|
|
87
|
+
"fips_county_cd": "59" ,
|
|
88
|
+
"feat_class": "Populated Place" ,
|
|
89
|
+
"county_name": "Orange" ,
|
|
90
|
+
"primary_latitude": "33.7" ,
|
|
91
|
+
"state_name": "California" ,
|
|
92
|
+
"url": "http://www.fountainvalley.org/" ,
|
|
93
|
+
"state_abbreviation": "CA" ,
|
|
94
|
+
"description": null ,
|
|
95
|
+
"primary_longitude": "-117.95" ,
|
|
96
|
+
"link_title": null ,
|
|
97
|
+
"feature_id": 1652712 ,
|
|
98
|
+
"full_county_name": "Orange County" ,
|
|
99
|
+
"fips_class": "C1"},
|
|
100
|
+
{"name": "Fullerton" ,
|
|
101
|
+
"fips_county_cd": "59" ,
|
|
102
|
+
"feat_class": "Populated Place" ,
|
|
103
|
+
"county_name": "Orange" ,
|
|
104
|
+
"primary_latitude": "33.87" ,
|
|
105
|
+
"state_name": "California" ,
|
|
106
|
+
"url": "http://www.ci.fullerton.ca.us/" ,
|
|
107
|
+
"state_abbreviation": "CA" ,
|
|
108
|
+
"description": null ,
|
|
109
|
+
"primary_longitude": "-117.92" ,
|
|
110
|
+
"link_title": null ,
|
|
111
|
+
"feature_id": 1660658 ,
|
|
112
|
+
"full_county_name": "Orange County" ,
|
|
113
|
+
"fips_class": "C1"},
|
|
114
|
+
{"name": "Garden Grove" ,
|
|
115
|
+
"fips_county_cd": "59" ,
|
|
116
|
+
"feat_class": "Populated Place" ,
|
|
117
|
+
"county_name": "Orange" ,
|
|
118
|
+
"primary_latitude": "33.77" ,
|
|
119
|
+
"state_name": "California" ,
|
|
120
|
+
"url": "http://www.ci.garden-grove.ca.us/" ,
|
|
121
|
+
"state_abbreviation": "CA" ,
|
|
122
|
+
"description": null ,
|
|
123
|
+
"primary_longitude": "-117.94" ,
|
|
124
|
+
"link_title": null ,
|
|
125
|
+
"feature_id": 1660662 ,
|
|
126
|
+
"full_county_name": "Orange County" ,
|
|
127
|
+
"fips_class": "C1"},
|
|
128
|
+
{"name": "Huntington Beach" ,
|
|
129
|
+
"fips_county_cd": "59" ,
|
|
130
|
+
"feat_class": "Populated Place" ,
|
|
131
|
+
"county_name": "Orange" ,
|
|
132
|
+
"primary_latitude": "33.66" ,
|
|
133
|
+
"state_name": "California" ,
|
|
134
|
+
"url": "http://www.huntingtonbeachca.gov/" ,
|
|
135
|
+
"state_abbreviation": "CA" ,
|
|
136
|
+
"description": null ,
|
|
137
|
+
"primary_longitude": "-117.99" ,
|
|
138
|
+
"link_title": null ,
|
|
139
|
+
"feature_id": 1652724 ,
|
|
140
|
+
"full_county_name": "Orange County" ,
|
|
141
|
+
"fips_class": "C1"},
|
|
142
|
+
{"name": "Irvine" ,
|
|
143
|
+
"fips_county_cd": "59" ,
|
|
144
|
+
"feat_class": "Populated Place" ,
|
|
145
|
+
"county_name": "Orange" ,
|
|
146
|
+
"primary_latitude": "33.66" ,
|
|
147
|
+
"state_name": "California" ,
|
|
148
|
+
"url": "http://www.cityofirvine.org" ,
|
|
149
|
+
"state_abbreviation": "CA" ,
|
|
150
|
+
"description": null ,
|
|
151
|
+
"primary_longitude": "-117.82" ,
|
|
152
|
+
"link_title": null ,
|
|
153
|
+
"feature_id": 1660804 ,
|
|
154
|
+
"full_county_name": "Orange County" ,
|
|
155
|
+
"fips_class": "C1"},
|
|
156
|
+
{"name": "La Habra" ,
|
|
157
|
+
"fips_county_cd": "59" ,
|
|
158
|
+
"feat_class": "Populated Place" ,
|
|
159
|
+
"county_name": "Orange" ,
|
|
160
|
+
"primary_latitude": "33.93" ,
|
|
161
|
+
"state_name": "California" ,
|
|
162
|
+
"url": "http://www.lahabracity.com/" ,
|
|
163
|
+
"state_abbreviation": "CA" ,
|
|
164
|
+
"description": null ,
|
|
165
|
+
"primary_longitude": "-117.94" ,
|
|
166
|
+
"link_title": null ,
|
|
167
|
+
"feature_id": 1652735 ,
|
|
168
|
+
"full_county_name": "Orange County" ,
|
|
169
|
+
"fips_class": "C1"},
|
|
170
|
+
{"name": "La Palma" ,
|
|
171
|
+
"fips_county_cd": "59" ,
|
|
172
|
+
"feat_class": "Populated Place" ,
|
|
173
|
+
"county_name": "Orange" ,
|
|
174
|
+
"primary_latitude": "33.84" ,
|
|
175
|
+
"state_name": "California" ,
|
|
176
|
+
"url": "http://www.cityoflapalma.org/" ,
|
|
177
|
+
"state_abbreviation": "CA" ,
|
|
178
|
+
"description": null ,
|
|
179
|
+
"primary_longitude": "-118.04" ,
|
|
180
|
+
"link_title": null ,
|
|
181
|
+
"feature_id": 1652737 ,
|
|
182
|
+
"full_county_name": "Orange County" ,
|
|
183
|
+
"fips_class": "C1"},
|
|
184
|
+
{"name": "Laguna Beach" ,
|
|
185
|
+
"fips_county_cd": "59" ,
|
|
186
|
+
"feat_class": "Populated Place" ,
|
|
187
|
+
"county_name": "Orange" ,
|
|
188
|
+
"primary_latitude": "33.54" ,
|
|
189
|
+
"state_name": "California" ,
|
|
190
|
+
"url": "http://www.lagunabeachcity.net/" ,
|
|
191
|
+
"state_abbreviation": "CA" ,
|
|
192
|
+
"description": null ,
|
|
193
|
+
"primary_longitude": "-117.78" ,
|
|
194
|
+
"link_title": null ,
|
|
195
|
+
"feature_id": 1660874 ,
|
|
196
|
+
"full_county_name": "Orange County" ,
|
|
197
|
+
"fips_class": "C1"},
|
|
198
|
+
{"name": "Laguna Hills" ,
|
|
199
|
+
"fips_county_cd": "59" ,
|
|
200
|
+
"feat_class": "Populated Place" ,
|
|
201
|
+
"county_name": "Orange" ,
|
|
202
|
+
"primary_latitude": "33.61" ,
|
|
203
|
+
"state_name": "California" ,
|
|
204
|
+
"url": "http://www.ci.laguna-hills.ca.us/" ,
|
|
205
|
+
"state_abbreviation": "CA" ,
|
|
206
|
+
"description": null ,
|
|
207
|
+
"primary_longitude": "-117.71" ,
|
|
208
|
+
"link_title": null ,
|
|
209
|
+
"feature_id": 1667917 ,
|
|
210
|
+
"full_county_name": "Orange County" ,
|
|
211
|
+
"fips_class": "C1"},
|
|
212
|
+
{"name": "Laguna Niguel" ,
|
|
213
|
+
"fips_county_cd": "59" ,
|
|
214
|
+
"feat_class": "Populated Place" ,
|
|
215
|
+
"county_name": "Orange" ,
|
|
216
|
+
"primary_latitude": "33.52" ,
|
|
217
|
+
"state_name": "California" ,
|
|
218
|
+
"url": "http://www.ci.laguna-niguel.ca.us/" ,
|
|
219
|
+
"state_abbreviation": "CA" ,
|
|
220
|
+
"description": null ,
|
|
221
|
+
"primary_longitude": "-117.7" ,
|
|
222
|
+
"link_title": null ,
|
|
223
|
+
"feature_id": 1660875 ,
|
|
224
|
+
"full_county_name": "Orange County" ,
|
|
225
|
+
"fips_class": "C1"},
|
|
226
|
+
{"name": "Laguna Woods" ,
|
|
227
|
+
"fips_county_cd": "59" ,
|
|
228
|
+
"feat_class": "Populated Place" ,
|
|
229
|
+
"county_name": "Orange" ,
|
|
230
|
+
"primary_latitude": "33.61" ,
|
|
231
|
+
"state_name": "California" ,
|
|
232
|
+
"url": "http://www.lagunawoodscity.org/" ,
|
|
233
|
+
"state_abbreviation": "CA" ,
|
|
234
|
+
"description": null ,
|
|
235
|
+
"primary_longitude": "-117.72" ,
|
|
236
|
+
"link_title": null ,
|
|
237
|
+
"feature_id": 1848119 ,
|
|
238
|
+
"full_county_name": "Orange County" ,
|
|
239
|
+
"fips_class": "C1"},
|
|
240
|
+
{"name": "Lake Forest" ,
|
|
241
|
+
"fips_county_cd": "59" ,
|
|
242
|
+
"feat_class": "Populated Place" ,
|
|
243
|
+
"county_name": "Orange" ,
|
|
244
|
+
"primary_latitude": "33.64" ,
|
|
245
|
+
"state_name": "California" ,
|
|
246
|
+
"url": "http://www.lakeforestca.gov/" ,
|
|
247
|
+
"state_abbreviation": "CA" ,
|
|
248
|
+
"description": null ,
|
|
249
|
+
"primary_longitude": "-117.68" ,
|
|
250
|
+
"link_title": null ,
|
|
251
|
+
"feature_id": 1656503 ,
|
|
252
|
+
"full_county_name": "Orange County" ,
|
|
253
|
+
"fips_class": "C1"},
|
|
254
|
+
{"name": "Los Alamitos" ,
|
|
255
|
+
"fips_county_cd": "59" ,
|
|
256
|
+
"feat_class": "Populated Place" ,
|
|
257
|
+
"county_name": "Orange" ,
|
|
258
|
+
"primary_latitude": "33.8" ,
|
|
259
|
+
"state_name": "California" ,
|
|
260
|
+
"url": "http://www.ci.los-alamitos.ca.us/" ,
|
|
261
|
+
"state_abbreviation": "CA" ,
|
|
262
|
+
"description": null ,
|
|
263
|
+
"primary_longitude": "-118.07" ,
|
|
264
|
+
"link_title": null ,
|
|
265
|
+
"feature_id": 1652748 ,
|
|
266
|
+
"full_county_name": "Orange County" ,
|
|
267
|
+
"fips_class": "C1"},
|
|
268
|
+
{"name": "Mission Viejo" ,
|
|
269
|
+
"fips_county_cd": "59" ,
|
|
270
|
+
"feat_class": "Populated Place" ,
|
|
271
|
+
"county_name": "Orange" ,
|
|
272
|
+
"primary_latitude": "33.6" ,
|
|
273
|
+
"state_name": "California" ,
|
|
274
|
+
"url": "http://www.cityofmissionviejo.org/" ,
|
|
275
|
+
"state_abbreviation": "CA" ,
|
|
276
|
+
"description": null ,
|
|
277
|
+
"primary_longitude": "-117.67" ,
|
|
278
|
+
"link_title": null ,
|
|
279
|
+
"feature_id": 1661045 ,
|
|
280
|
+
"full_county_name": "Orange County" ,
|
|
281
|
+
"fips_class": "C1"},
|
|
282
|
+
{"name": "Newport Beach" ,
|
|
283
|
+
"fips_county_cd": "59" ,
|
|
284
|
+
"feat_class": "Populated Place" ,
|
|
285
|
+
"county_name": "Orange" ,
|
|
286
|
+
"primary_latitude": "33.61" ,
|
|
287
|
+
"state_name": "California" ,
|
|
288
|
+
"url": "http://www.city.newport-beach.ca.us/" ,
|
|
289
|
+
"state_abbreviation": "CA" ,
|
|
290
|
+
"description": null ,
|
|
291
|
+
"primary_longitude": "-117.92" ,
|
|
292
|
+
"link_title": null ,
|
|
293
|
+
"feature_id": 1661104 ,
|
|
294
|
+
"full_county_name": "Orange County" ,
|
|
295
|
+
"fips_class": "C1"},
|
|
296
|
+
{"name": "Orange" ,
|
|
297
|
+
"fips_county_cd": "59" ,
|
|
298
|
+
"feat_class": "Populated Place" ,
|
|
299
|
+
"county_name": "Orange" ,
|
|
300
|
+
"primary_latitude": "33.78" ,
|
|
301
|
+
"state_name": "California" ,
|
|
302
|
+
"url": "http://www.cityoforange.org/" ,
|
|
303
|
+
"state_abbreviation": "CA" ,
|
|
304
|
+
"description": null ,
|
|
305
|
+
"primary_longitude": "-117.85" ,
|
|
306
|
+
"link_title": null ,
|
|
307
|
+
"feature_id": 1652765 ,
|
|
308
|
+
"full_county_name": "Orange County" ,
|
|
309
|
+
"fips_class": "C1"},
|
|
310
|
+
{"name": "Placentia" ,
|
|
311
|
+
"fips_county_cd": "59" ,
|
|
312
|
+
"feat_class": "Populated Place" ,
|
|
313
|
+
"county_name": "Orange" ,
|
|
314
|
+
"primary_latitude": "33.87" ,
|
|
315
|
+
"state_name": "California" ,
|
|
316
|
+
"url": "http://placentia.org/" ,
|
|
317
|
+
"state_abbreviation": "CA" ,
|
|
318
|
+
"description": null ,
|
|
319
|
+
"primary_longitude": "-117.87" ,
|
|
320
|
+
"link_title": null ,
|
|
321
|
+
"feature_id": 1661237 ,
|
|
322
|
+
"full_county_name": "Orange County" ,
|
|
323
|
+
"fips_class": "C1"},
|
|
324
|
+
{"name": "Rancho Santa Margarita" ,
|
|
325
|
+
"fips_county_cd": "59" ,
|
|
326
|
+
"feat_class": "Populated Place" ,
|
|
327
|
+
"county_name": "Orange" ,
|
|
328
|
+
"primary_latitude": "33.64" ,
|
|
329
|
+
"state_name": "California" ,
|
|
330
|
+
"url": "http://www.cityofrsm.org/" ,
|
|
331
|
+
"state_abbreviation": "CA" ,
|
|
332
|
+
"description": null ,
|
|
333
|
+
"primary_longitude": "-117.6" ,
|
|
334
|
+
"link_title": null ,
|
|
335
|
+
"feature_id": 1867054 ,
|
|
336
|
+
"full_county_name": "Orange County" ,
|
|
337
|
+
"fips_class": "C1"},
|
|
338
|
+
{"name": "San Clemente" ,
|
|
339
|
+
"fips_county_cd": "59" ,
|
|
340
|
+
"feat_class": "Populated Place" ,
|
|
341
|
+
"county_name": "Orange" ,
|
|
342
|
+
"primary_latitude": "33.42" ,
|
|
343
|
+
"state_name": "California" ,
|
|
344
|
+
"url": "http://www.san-clemente.org/" ,
|
|
345
|
+
"state_abbreviation": "CA" ,
|
|
346
|
+
"description": null ,
|
|
347
|
+
"primary_longitude": "-117.61" ,
|
|
348
|
+
"link_title": null ,
|
|
349
|
+
"feature_id": 1661376 ,
|
|
350
|
+
"full_county_name": "Orange County" ,
|
|
351
|
+
"fips_class": "C1"},
|
|
352
|
+
{"name": "San Juan Capistrano" ,
|
|
353
|
+
"fips_county_cd": "59" ,
|
|
354
|
+
"feat_class": "Populated Place" ,
|
|
355
|
+
"county_name": "Orange" ,
|
|
356
|
+
"primary_latitude": "33.5" ,
|
|
357
|
+
"state_name": "California" ,
|
|
358
|
+
"url": "http://www.sanjuancapistrano.org/" ,
|
|
359
|
+
"state_abbreviation": "CA" ,
|
|
360
|
+
"description": null ,
|
|
361
|
+
"primary_longitude": "-117.66" ,
|
|
362
|
+
"link_title": null ,
|
|
363
|
+
"feature_id": 1661383 ,
|
|
364
|
+
"full_county_name": "Orange County" ,
|
|
365
|
+
"fips_class": "C1"},
|
|
366
|
+
{"name": "Santa Ana" ,
|
|
367
|
+
"fips_county_cd": "59" ,
|
|
368
|
+
"feat_class": "Populated Place" ,
|
|
369
|
+
"county_name": "Orange" ,
|
|
370
|
+
"primary_latitude": "33.74" ,
|
|
371
|
+
"state_name": "California" ,
|
|
372
|
+
"url": "http://www.ci.santa-ana.ca.us/" ,
|
|
373
|
+
"state_abbreviation": "CA" ,
|
|
374
|
+
"description": null ,
|
|
375
|
+
"primary_longitude": "-117.86" ,
|
|
376
|
+
"link_title": null ,
|
|
377
|
+
"feature_id": 1652790 ,
|
|
378
|
+
"full_county_name": "Orange County" ,
|
|
379
|
+
"fips_class": "C1"},
|
|
380
|
+
{"name": "Seal Beach" ,
|
|
381
|
+
"fips_county_cd": "59" ,
|
|
382
|
+
"feat_class": "Populated Place" ,
|
|
383
|
+
"county_name": "Orange" ,
|
|
384
|
+
"primary_latitude": "33.74" ,
|
|
385
|
+
"state_name": "California" ,
|
|
386
|
+
"url": "http://www.ci.seal-beach.ca.us/" ,
|
|
387
|
+
"state_abbreviation": "CA" ,
|
|
388
|
+
"description": null ,
|
|
389
|
+
"primary_longitude": "-118.1" ,
|
|
390
|
+
"link_title": null ,
|
|
391
|
+
"feature_id": 1661416 ,
|
|
392
|
+
"full_county_name": "Orange County" ,
|
|
393
|
+
"fips_class": "C1"},
|
|
394
|
+
{"name": "Stanton" ,
|
|
395
|
+
"fips_county_cd": "59" ,
|
|
396
|
+
"feat_class": "Populated Place" ,
|
|
397
|
+
"county_name": "Orange" ,
|
|
398
|
+
"primary_latitude": "33.8" ,
|
|
399
|
+
"state_name": "California" ,
|
|
400
|
+
"url": "http://www.ci.stanton.ca.us/" ,
|
|
401
|
+
"state_abbreviation": "CA" ,
|
|
402
|
+
"description": null ,
|
|
403
|
+
"primary_longitude": "-117.99" ,
|
|
404
|
+
"link_title": null ,
|
|
405
|
+
"feature_id": 1661501 ,
|
|
406
|
+
"full_county_name": "Orange County" ,
|
|
407
|
+
"fips_class": "C1"},
|
|
408
|
+
{"name": "Tustin" ,
|
|
409
|
+
"fips_county_cd": "59" ,
|
|
410
|
+
"feat_class": "Populated Place" ,
|
|
411
|
+
"county_name": "Orange" ,
|
|
412
|
+
"primary_latitude": "33.74" ,
|
|
413
|
+
"state_name": "California" ,
|
|
414
|
+
"url": "http://www.tustinca.org/" ,
|
|
415
|
+
"state_abbreviation": "CA" ,
|
|
416
|
+
"description": null ,
|
|
417
|
+
"primary_longitude": "-117.82" ,
|
|
418
|
+
"link_title": null ,
|
|
419
|
+
"feature_id": 1661590 ,
|
|
420
|
+
"full_county_name": "Orange County" ,
|
|
421
|
+
"fips_class": "C1"},
|
|
422
|
+
{"name": "Villa Park" ,
|
|
423
|
+
"fips_county_cd": "59" ,
|
|
424
|
+
"feat_class": "Populated Place" ,
|
|
425
|
+
"county_name": "Orange" ,
|
|
426
|
+
"primary_latitude": "33.81" ,
|
|
427
|
+
"state_name": "California" ,
|
|
428
|
+
"url": "http://www.villapark.org/" ,
|
|
429
|
+
"state_abbreviation": "CA" ,
|
|
430
|
+
"description": null ,
|
|
431
|
+
"primary_longitude": "-117.81" ,
|
|
432
|
+
"link_title": null ,
|
|
433
|
+
"feature_id": 1661640 ,
|
|
434
|
+
"full_county_name": "Orange County" ,
|
|
435
|
+
"fips_class": "C1"},
|
|
436
|
+
{"name": "Westminster" ,
|
|
437
|
+
"fips_county_cd": "59" ,
|
|
438
|
+
"feat_class": "Populated Place" ,
|
|
439
|
+
"county_name": "Orange" ,
|
|
440
|
+
"primary_latitude": "33.75" ,
|
|
441
|
+
"state_name": "California" ,
|
|
442
|
+
"url": "http://www.westminster-ca.gov/" ,
|
|
443
|
+
"state_abbreviation": "CA" ,
|
|
444
|
+
"description": null ,
|
|
445
|
+
"primary_longitude": "-118" ,
|
|
446
|
+
"link_title": null ,
|
|
447
|
+
"feature_id": 1652811 ,
|
|
448
|
+
"full_county_name": "Orange County" ,
|
|
449
|
+
"fips_class": "C1"},
|
|
450
|
+
{"name": "Yorba Linda" ,
|
|
451
|
+
"fips_county_cd": "59" ,
|
|
452
|
+
"feat_class": "Populated Place" ,
|
|
453
|
+
"county_name": "Orange" ,
|
|
454
|
+
"primary_latitude": "33.88" ,
|
|
455
|
+
"state_name": "California" ,
|
|
456
|
+
"url": "http://www.ci.yorba-linda.ca.us/" ,
|
|
457
|
+
"state_abbreviation": "CA" ,
|
|
458
|
+
"description": null ,
|
|
459
|
+
"primary_longitude": "-117.81" ,
|
|
460
|
+
"link_title": null ,
|
|
461
|
+
"feature_id": 1652817 ,
|
|
462
|
+
"full_county_name": "Orange County" ,
|
|
463
|
+
"fips_class": "C1"},
|
|
464
|
+
{"name": "Orange County" ,
|
|
465
|
+
"fips_county_cd": "59" ,
|
|
466
|
+
"feat_class": "Civil" ,
|
|
467
|
+
"county_name": null ,
|
|
468
|
+
"primary_latitude": "33.7" ,
|
|
469
|
+
"state_name": "California" ,
|
|
470
|
+
"url": "http://egov.ocgov.com" ,
|
|
471
|
+
"state_abbreviation": "CA" ,
|
|
472
|
+
"description": null ,
|
|
473
|
+
"primary_longitude": "-117.76" ,
|
|
474
|
+
"link_title": null ,
|
|
475
|
+
"feature_id": 277294 ,
|
|
476
|
+
"full_county_name": null ,
|
|
477
|
+
"fips_class": "H1"}]
|