rubillow 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.
Files changed (81) hide show
  1. data/.gitignore +6 -0
  2. data/.rspec +2 -0
  3. data/.yardopts +4 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +43 -0
  6. data/LICENSE +21 -0
  7. data/README.md +64 -0
  8. data/Rakefile +38 -0
  9. data/lib/rubillow.rb +29 -0
  10. data/lib/rubillow/configuration.rb +31 -0
  11. data/lib/rubillow/home_valuation.rb +141 -0
  12. data/lib/rubillow/models.rb +83 -0
  13. data/lib/rubillow/models/addressable.rb +38 -0
  14. data/lib/rubillow/models/chart.rb +34 -0
  15. data/lib/rubillow/models/comps.rb +35 -0
  16. data/lib/rubillow/models/deep_comps.rb +35 -0
  17. data/lib/rubillow/models/deep_search_result.rb +44 -0
  18. data/lib/rubillow/models/demographic_value.rb +28 -0
  19. data/lib/rubillow/models/demographics.rb +149 -0
  20. data/lib/rubillow/models/images.rb +24 -0
  21. data/lib/rubillow/models/linkable.rb +39 -0
  22. data/lib/rubillow/models/monthly_payments.rb +64 -0
  23. data/lib/rubillow/models/posting.rb +37 -0
  24. data/lib/rubillow/models/postings.rb +64 -0
  25. data/lib/rubillow/models/property_basics.rb +36 -0
  26. data/lib/rubillow/models/property_chart.rb +26 -0
  27. data/lib/rubillow/models/rate_summary.rb +38 -0
  28. data/lib/rubillow/models/region.rb +44 -0
  29. data/lib/rubillow/models/region_chart.rb +30 -0
  30. data/lib/rubillow/models/region_children.rb +30 -0
  31. data/lib/rubillow/models/search_result.rb +19 -0
  32. data/lib/rubillow/models/updated_property_details.rb +87 -0
  33. data/lib/rubillow/models/zestimateable.rb +77 -0
  34. data/lib/rubillow/models/zpidable.rb +25 -0
  35. data/lib/rubillow/mortgage.rb +75 -0
  36. data/lib/rubillow/neighborhood.rb +129 -0
  37. data/lib/rubillow/postings.rb +46 -0
  38. data/lib/rubillow/property_details.rb +107 -0
  39. data/lib/rubillow/request.rb +67 -0
  40. data/lib/rubillow/version.rb +4 -0
  41. data/rubillow.gemspec +31 -0
  42. data/spec/rubillow/configuration_spec.rb +10 -0
  43. data/spec/rubillow/home_valuation_spec.rb +91 -0
  44. data/spec/rubillow/models/comps_spec.rb +71 -0
  45. data/spec/rubillow/models/deep_comps_spec.rb +93 -0
  46. data/spec/rubillow/models/deep_search_results_spec.rb +47 -0
  47. data/spec/rubillow/models/demographics_spec.rb +60 -0
  48. data/spec/rubillow/models/monthly_payments_spec.rb +20 -0
  49. data/spec/rubillow/models/posting_spec.rb +28 -0
  50. data/spec/rubillow/models/postings_spec.rb +15 -0
  51. data/spec/rubillow/models/property_chart_spec.rb +18 -0
  52. data/spec/rubillow/models/rate_summary_spec.rb +14 -0
  53. data/spec/rubillow/models/region_chart_spec.rb +19 -0
  54. data/spec/rubillow/models/region_children_spec.rb +11 -0
  55. data/spec/rubillow/models/search_result_spec.rb +68 -0
  56. data/spec/rubillow/models/updated_property_details_spec.rb +57 -0
  57. data/spec/rubillow/models_spec.rb +46 -0
  58. data/spec/rubillow/mortgage_spec.rb +37 -0
  59. data/spec/rubillow/neighborhood_spec.rb +55 -0
  60. data/spec/rubillow/postings_spec.rb +19 -0
  61. data/spec/rubillow/property_details_spec.rb +67 -0
  62. data/spec/rubillow/request_spec.rb +65 -0
  63. data/spec/rubillow/rubillow_spec.rb +13 -0
  64. data/spec/spec_helper.rb +15 -0
  65. data/spec/support/have_configuration_matcher.rb +23 -0
  66. data/spec/xml/general_failure.xml +12 -0
  67. data/spec/xml/get_chart.xml +18 -0
  68. data/spec/xml/get_comps.xml +252 -0
  69. data/spec/xml/get_deep_comps.xml +307 -0
  70. data/spec/xml/get_deep_search_results.xml +66 -0
  71. data/spec/xml/get_demographics.xml +791 -0
  72. data/spec/xml/get_monthly_payments.xml +33 -0
  73. data/spec/xml/get_rate_summary.xml +21 -0
  74. data/spec/xml/get_region_chart.xml +25 -0
  75. data/spec/xml/get_region_children.xml +870 -0
  76. data/spec/xml/get_region_postings.xml +2660 -0
  77. data/spec/xml/get_search_results.xml +55 -0
  78. data/spec/xml/get_updated_property_details.xml +74 -0
  79. data/spec/xml/get_zestimate.xml +56 -0
  80. data/spec/xml/near_limit.xml +13 -0
  81. metadata +324 -0
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <MonthlyPayments:paymentsSummary xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:MonthlyPayments="http://www.zillow.com/static/xsd/MonthlyPayments.xsd" xsi:schemaLocation="http://www.zillow.com/static/xsd/MonthlyPayments.xsd http://www.zillowstatic.com/vstatic/6b4ea3e571a1ef97dd8f1e6be94b2725/static/xsd/MonthlyPayments.xsd">
3
+ <request>
4
+ <price>300000</price>
5
+ <down>15</down>
6
+ <zip>98104</zip>
7
+ </request>
8
+ <message>
9
+ <text>Request successfully processed</text>
10
+ <code>0</code>
11
+ </message>
12
+ <response>
13
+ <payment loanType="thirtyYearFixed">
14
+ <rate>4.01</rate>
15
+ <monthlyPrincipalAndInterest>1219</monthlyPrincipalAndInterest>
16
+ <monthlyMortgageInsurance>93</monthlyMortgageInsurance>
17
+ </payment>
18
+ <payment loanType="fifteenYearFixed">
19
+ <rate>3.27</rate>
20
+ <monthlyPrincipalAndInterest>1795</monthlyPrincipalAndInterest>
21
+ <monthlyMortgageInsurance>93</monthlyMortgageInsurance>
22
+ </payment>
23
+ <payment loanType="fiveOneARM">
24
+ <rate>3.27</rate>
25
+ <monthlyPrincipalAndInterest>1039</monthlyPrincipalAndInterest>
26
+ <monthlyMortgageInsurance>93</monthlyMortgageInsurance>
27
+ </payment>
28
+ <downPayment>45000</downPayment>
29
+ <monthlyPropertyTaxes>193</monthlyPropertyTaxes>
30
+ <monthlyHazardInsurance>50</monthlyHazardInsurance>
31
+ </response>
32
+ </MonthlyPayments:paymentsSummary>
33
+ <!-- H:119 T:14ms S:792 R:Fri Aug 26 13:04:02 PDT 2011 B:3.0.121144.20110823141116-comp_rel_b -->
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <RateSummary:rateSummary xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:RateSummary="http://www.zillow.com/static/xsd/RateSummary.xsd" xsi:schemaLocation="http://www.zillow.com/static/xsd/RateSummary.xsd http://www.zillowstatic.com/vstatic/6b4ea3e571a1ef97dd8f1e6be94b2725/static/xsd/RateSummary.xsd">
3
+ <request/>
4
+ <message>
5
+ <text>Request successfully processed</text>
6
+ <code>0</code>
7
+ </message>
8
+ <response>
9
+ <today>
10
+ <rate count="359" loanType="thirtyYearFixed">4.01</rate>
11
+ <rate count="246" loanType="fifteenYearFixed">3.27</rate>
12
+ <rate count="331" loanType="fiveOneARM">2.73</rate>
13
+ </today>
14
+ <lastWeek>
15
+ <rate count="51077" loanType="thirtyYearFixed">4.02</rate>
16
+ <rate count="36886" loanType="fifteenYearFixed">3.27</rate>
17
+ <rate count="36549" loanType="fiveOneARM">2.84</rate>
18
+ </lastWeek>
19
+ </response>
20
+ </RateSummary:rateSummary>
21
+ <!-- H:117 T:1ms S:159 R:Fri Aug 26 13:02:35 PDT 2011 B:3.0.121144.20110823141116-comp_rel_b -->
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <RegionChart:regionchart xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:RegionChart="http://www.zillow.com/static/xsd/RegionChart.xsd" xsi:schemaLocation="http://www.zillow.com/static/xsd/RegionChart.xsd http://www.zillowstatic.com/vstatic/6b4ea3e571a1ef97dd8f1e6be94b2725/static/xsd/RegionChart.xsd">
3
+ <request>
4
+ <city>seattle</city>
5
+ <state>WA</state>
6
+ <unit-type>percent</unit-type>
7
+ <width>300</width>
8
+ <height>150</height>
9
+ </request>
10
+ <message>
11
+ <text>Request successfully processed</text>
12
+ <code>0</code>
13
+ </message>
14
+ <response>
15
+ <url>http://www.zillow.com/app?chartDuration=1year&amp;chartType=partner&amp;cityRegionId=16037&amp;countyRegionId=0&amp;height=150&amp;nationRegionId=0&amp;neighborhoodRegionId=0&amp;page=webservice%2FGetRegionChart&amp;service=chart&amp;showCity=true&amp;showPercent=true&amp;stateRegionId=0&amp;width=300&amp;zipRegionId=0</url>
16
+ <link>http://www.zillow.com/homes/Seattle-WA/</link>
17
+ <links>
18
+ <local>http://www.zillow.com/local-info/WA-Seattle-home-value/r_16037/</local>
19
+ <forSale>http://www.zillow.com/homes/for_sale/Seattle-WA/</forSale>
20
+ <forSaleByOwner>http://www.zillow.com/homes/fsbo/Seattle-WA/</forSaleByOwner>
21
+ </links>
22
+ <zindex currency="USD"/>
23
+ </response>
24
+ </RegionChart:regionchart>
25
+ <!-- H:117 T:20ms S:344 R:Sat Aug 27 10:05:13 PDT 2011 B:3.0.121144.20110823141116-comp_rel_b -->
@@ -0,0 +1,870 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <RegionChildren:regionchildren xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:RegionChildren="http://www.zillow.com/static/xsd/RegionChildren.xsd" xsi:schemaLocation="http://www.zillow.com/static/xsd/RegionChildren.xsd http://www.zillowstatic.com/vstatic/6b4ea3e571a1ef97dd8f1e6be94b2725/static/xsd/RegionChildren.xsd">
3
+ <request>
4
+ <state>wa</state>
5
+ <city>seattle</city>
6
+ <childtype>neighborhood</childtype>
7
+ </request>
8
+ <message>
9
+ <text>Request successfully processed</text>
10
+ <code>0</code>
11
+ </message>
12
+ <response>
13
+ <region>
14
+ <id>16037</id>
15
+ <latitude>47.559364</latitude>
16
+ <longitude>-122.313755</longitude>
17
+ </region>
18
+ <subregiontype>neighborhood</subregiontype>
19
+ <list>
20
+ <count>107</count>
21
+ <region>
22
+ <id>343997</id>
23
+ <name>Alki</name>
24
+ <zindex currency="USD">433642</zindex>
25
+ <url>http://www.zillow.com/local-info/WA-Seattle/Alki/r_343997/</url>
26
+ <latitude>47.576465</latitude>
27
+ <longitude>-122.398841</longitude>
28
+ </region>
29
+ <region>
30
+ <id>250788</id>
31
+ <name>Greenwood</name>
32
+ <zindex currency="USD">307964</zindex>
33
+ <url>http://www.zillow.com/local-info/WA-Seattle/Greenwood/r_250788/</url>
34
+ <latitude>47.694211</latitude>
35
+ <longitude>-122.355281</longitude>
36
+ </region>
37
+ <region>
38
+ <id>252248</id>
39
+ <name>Wallingford</name>
40
+ <zindex currency="USD">442547</zindex>
41
+ <url>http://www.zillow.com/local-info/WA-Seattle/Wallingford/r_252248/</url>
42
+ <latitude>47.658763</latitude>
43
+ <longitude>-122.334464</longitude>
44
+ </region>
45
+ <region>
46
+ <id>250150</id>
47
+ <name>Broadway</name>
48
+ <url>http://www.zillow.com/local-info/WA-Seattle/Broadway/r_250150/</url>
49
+ <latitude>47.62622</latitude>
50
+ <longitude>-122.321453</longitude>
51
+ </region>
52
+ <region>
53
+ <id>344019</id>
54
+ <name>Admiral</name>
55
+ <zindex currency="USD">388661</zindex>
56
+ <url>http://www.zillow.com/local-info/WA-Seattle/Admiral/r_344019/</url>
57
+ <latitude>47.581726</latitude>
58
+ <longitude>-122.387363</longitude>
59
+ </region>
60
+ <region>
61
+ <id>250050</id>
62
+ <name>Beacon Hill</name>
63
+ <zindex currency="USD">264395</zindex>
64
+ <url>http://www.zillow.com/local-info/WA-Seattle/Beacon-Hill/r_250050/</url>
65
+ <latitude>47.556114</latitude>
66
+ <longitude>-122.302826</longitude>
67
+ </region>
68
+ <region>
69
+ <id>344000</id>
70
+ <name>Maple Leaf</name>
71
+ <zindex currency="USD">352603</zindex>
72
+ <url>http://www.zillow.com/local-info/WA-Seattle/Maple-Leaf/r_344000/</url>
73
+ <latitude>47.695036</latitude>
74
+ <longitude>-122.316631</longitude>
75
+ </region>
76
+ <region>
77
+ <id>344001</id>
78
+ <name>Wedgwood</name>
79
+ <zindex currency="USD">387054</zindex>
80
+ <url>http://www.zillow.com/local-info/WA-Seattle/Wedgwood/r_344001/</url>
81
+ <latitude>47.690135</latitude>
82
+ <longitude>-122.298087</longitude>
83
+ </region>
84
+ <region>
85
+ <id>271961</id>
86
+ <name>Phinney Ridge</name>
87
+ <zindex currency="USD">421508</zindex>
88
+ <url>http://www.zillow.com/local-info/WA-Seattle/Phinney-Ridge/r_271961/</url>
89
+ <latitude>47.672705</latitude>
90
+ <longitude>-122.355277</longitude>
91
+ </region>
92
+ <region>
93
+ <id>251709</id>
94
+ <name>Ravenna</name>
95
+ <zindex currency="USD">419260</zindex>
96
+ <url>http://www.zillow.com/local-info/WA-Seattle/Ravenna/r_251709/</url>
97
+ <latitude>47.672136</latitude>
98
+ <longitude>-122.301112</longitude>
99
+ </region>
100
+ <region>
101
+ <id>271808</id>
102
+ <name>Belltown</name>
103
+ <zindex currency="USD">293932</zindex>
104
+ <url>http://www.zillow.com/local-info/WA-Seattle/Belltown/r_271808/</url>
105
+ <latitude>47.614593</latitude>
106
+ <longitude>-122.348464</longitude>
107
+ </region>
108
+ <region>
109
+ <id>271932</id>
110
+ <name>North Beacon Hill</name>
111
+ <zindex currency="USD">282984</zindex>
112
+ <url>http://www.zillow.com/local-info/WA-Seattle/North-Beacon-Hill/r_271932/</url>
113
+ <latitude>47.578054</latitude>
114
+ <longitude>-122.308872</longitude>
115
+ </region>
116
+ <region>
117
+ <id>250692</id>
118
+ <name>Fremont</name>
119
+ <zindex currency="USD">376994</zindex>
120
+ <url>http://www.zillow.com/local-info/WA-Seattle/Fremont/r_250692/</url>
121
+ <latitude>47.656187</latitude>
122
+ <longitude>-122.352183</longitude>
123
+ </region>
124
+ <region>
125
+ <id>271942</id>
126
+ <name>North Queen Anne</name>
127
+ <zindex currency="USD">468167</zindex>
128
+ <url>http://www.zillow.com/local-info/WA-Seattle/North-Queen-Anne/r_271942/</url>
129
+ <latitude>47.649292</latitude>
130
+ <longitude>-122.36301</longitude>
131
+ </region>
132
+ <region>
133
+ <id>251170</id>
134
+ <name>Loyal Heights</name>
135
+ <zindex currency="USD">381498</zindex>
136
+ <url>http://www.zillow.com/local-info/WA-Seattle/Loyal-Heights/r_251170/</url>
137
+ <latitude>47.683237</latitude>
138
+ <longitude>-122.384853</longitude>
139
+ </region>
140
+ <region>
141
+ <id>250206</id>
142
+ <name>Capitol Hill</name>
143
+ <zindex currency="USD">319398</zindex>
144
+ <url>http://www.zillow.com/local-info/WA-Seattle/Capitol-Hill/r_250206/</url>
145
+ <latitude>47.62622</latitude>
146
+ <longitude>-122.315979</longitude>
147
+ </region>
148
+ <region>
149
+ <id>271900</id>
150
+ <name>Lawton Park</name>
151
+ <url>http://www.zillow.com/local-info/WA-Seattle/Lawton-Park/r_271900/</url>
152
+ <latitude>47.659378</latitude>
153
+ <longitude>-122.409137</longitude>
154
+ </region>
155
+ <region>
156
+ <id>250780</id>
157
+ <name>Green Lake</name>
158
+ <zindex currency="USD">411173</zindex>
159
+ <url>http://www.zillow.com/local-info/WA-Seattle/Green-Lake/r_250780/</url>
160
+ <latitude>47.679958</latitude>
161
+ <longitude>-122.333709</longitude>
162
+ </region>
163
+ <region>
164
+ <id>250801</id>
165
+ <name>Haller Lake</name>
166
+ <zindex currency="USD">278259</zindex>
167
+ <url>http://www.zillow.com/local-info/WA-Seattle/Haller-Lake/r_250801/</url>
168
+ <latitude>47.719604</latitude>
169
+ <longitude>-122.33475</longitude>
170
+ </region>
171
+ <region>
172
+ <id>271819</id>
173
+ <name>Broadview</name>
174
+ <zindex currency="USD">380873</zindex>
175
+ <url>http://www.zillow.com/local-info/WA-Seattle/Broadview/r_271819/</url>
176
+ <latitude>47.71965</latitude>
177
+ <longitude>-122.368416</longitude>
178
+ </region>
179
+ <region>
180
+ <id>252056</id>
181
+ <name>Sunset Hill</name>
182
+ <zindex currency="USD">412797</zindex>
183
+ <url>http://www.zillow.com/local-info/WA-Seattle/Sunset-Hill/r_252056/</url>
184
+ <latitude>47.677581</latitude>
185
+ <longitude>-122.401054</longitude>
186
+ </region>
187
+ <region>
188
+ <id>271856</id>
189
+ <name>East Queen Anne</name>
190
+ <zindex currency="USD">491715</zindex>
191
+ <url>http://www.zillow.com/local-info/WA-Seattle/East-Queen-Anne/r_271856/</url>
192
+ <latitude>47.637701</latitude>
193
+ <longitude>-122.350189</longitude>
194
+ </region>
195
+ <region>
196
+ <id>344022</id>
197
+ <name>Gatewood</name>
198
+ <zindex currency="USD">336869</zindex>
199
+ <url>http://www.zillow.com/local-info/WA-Seattle/Gatewood/r_344022/</url>
200
+ <latitude>47.537449</latitude>
201
+ <longitude>-122.387363</longitude>
202
+ </region>
203
+ <region>
204
+ <id>343996</id>
205
+ <name>View Ridge</name>
206
+ <zindex currency="USD">487688</zindex>
207
+ <url>http://www.zillow.com/local-info/WA-Seattle/View-Ridge/r_343996/</url>
208
+ <latitude>47.683937</latitude>
209
+ <longitude>-122.27431</longitude>
210
+ </region>
211
+ <region>
212
+ <id>271913</id>
213
+ <name>Matthews Beach</name>
214
+ <zindex currency="USD">403163</zindex>
215
+ <url>http://www.zillow.com/local-info/WA-Seattle/Matthews-Beach/r_271913/</url>
216
+ <latitude>47.703815</latitude>
217
+ <longitude>-122.279033</longitude>
218
+ </region>
219
+ <region>
220
+ <id>344024</id>
221
+ <name>Arbor Heights</name>
222
+ <zindex currency="USD">302329</zindex>
223
+ <url>http://www.zillow.com/local-info/WA-Seattle/Arbor-Heights/r_344024/</url>
224
+ <latitude>47.506979</latitude>
225
+ <longitude>-122.381278</longitude>
226
+ </region>
227
+ <region>
228
+ <id>272018</id>
229
+ <name>West Queen Anne</name>
230
+ <zindex currency="USD">508529</zindex>
231
+ <url>http://www.zillow.com/local-info/WA-Seattle/West-Queen-Anne/r_272018/</url>
232
+ <latitude>47.63334</latitude>
233
+ <longitude>-122.366405</longitude>
234
+ </region>
235
+ <region>
236
+ <id>251704</id>
237
+ <name>Rainier Beach</name>
238
+ <zindex currency="USD">252856</zindex>
239
+ <url>http://www.zillow.com/local-info/WA-Seattle/Rainier-Beach/r_251704/</url>
240
+ <latitude>47.511647</latitude>
241
+ <longitude>-122.257972</longitude>
242
+ </region>
243
+ <region>
244
+ <id>271815</id>
245
+ <name>Briarcliff</name>
246
+ <url>http://www.zillow.com/local-info/WA-Seattle/Briarcliff/r_271815/</url>
247
+ <latitude>47.642577</latitude>
248
+ <longitude>-122.408081</longitude>
249
+ </region>
250
+ <region>
251
+ <id>272001</id>
252
+ <name>University District</name>
253
+ <zindex currency="USD">383825</zindex>
254
+ <url>http://www.zillow.com/local-info/WA-Seattle/University-District/r_272001/</url>
255
+ <latitude>47.660898</latitude>
256
+ <longitude>-122.305045</longitude>
257
+ </region>
258
+ <region>
259
+ <id>344023</id>
260
+ <name>Fauntleroy</name>
261
+ <zindex currency="USD">397751</zindex>
262
+ <url>http://www.zillow.com/local-info/WA-Seattle/Fauntleroy/r_344023/</url>
263
+ <latitude>47.522216</latitude>
264
+ <longitude>-122.389197</longitude>
265
+ </region>
266
+ <region>
267
+ <id>271957</id>
268
+ <name>Olympic Hills</name>
269
+ <zindex currency="USD">280717</zindex>
270
+ <url>http://www.zillow.com/local-info/WA-Seattle/Olympic-Hills/r_271957/</url>
271
+ <latitude>47.726604</latitude>
272
+ <longitude>-122.302455</longitude>
273
+ </region>
274
+ <region>
275
+ <id>271901</id>
276
+ <name>Leschi</name>
277
+ <zindex currency="USD">463027</zindex>
278
+ <url>http://www.zillow.com/local-info/WA-Seattle/Leschi/r_271901/</url>
279
+ <latitude>47.599748</latitude>
280
+ <longitude>-122.290462</longitude>
281
+ </region>
282
+ <region>
283
+ <id>344008</id>
284
+ <name>East Ballard</name>
285
+ <zindex currency="USD">374599</zindex>
286
+ <url>http://www.zillow.com/local-info/WA-Seattle/East-Ballard/r_344008/</url>
287
+ <latitude>47.666069</latitude>
288
+ <longitude>-122.368621</longitude>
289
+ </region>
290
+ <region>
291
+ <id>344029</id>
292
+ <name>Highland Park</name>
293
+ <zindex currency="USD">214606</zindex>
294
+ <url>http://www.zillow.com/local-info/WA-Seattle/Highland-Park/r_344029/</url>
295
+ <latitude>47.527126</latitude>
296
+ <longitude>-122.341404</longitude>
297
+ </region>
298
+ <region>
299
+ <id>271869</id>
300
+ <name>First Hill</name>
301
+ <zindex currency="USD">270261</zindex>
302
+ <url>http://www.zillow.com/local-info/WA-Seattle/First-Hill/r_271869/</url>
303
+ <latitude>47.60819</latitude>
304
+ <longitude>-122.323829</longitude>
305
+ </region>
306
+ <region>
307
+ <id>250017</id>
308
+ <name>Ballard</name>
309
+ <zindex currency="USD">305134</zindex>
310
+ <url>http://www.zillow.com/local-info/WA-Seattle/Ballard/r_250017/</url>
311
+ <latitude>47.668329</latitude>
312
+ <longitude>-122.384536</longitude>
313
+ </region>
314
+ <region>
315
+ <id>271990</id>
316
+ <name>Magnolia</name>
317
+ <zindex currency="USD">456634</zindex>
318
+ <url>http://www.zillow.com/local-info/WA-Seattle/Magnolia/r_271990/</url>
319
+ <latitude>47.650941</latitude>
320
+ <longitude>-122.409137</longitude>
321
+ </region>
322
+ <region>
323
+ <id>251100</id>
324
+ <name>Laurelhurst</name>
325
+ <zindex currency="USD">750350</zindex>
326
+ <url>http://www.zillow.com/local-info/WA-Seattle/Laurelhurst/r_251100/</url>
327
+ <latitude>47.658207</latitude>
328
+ <longitude>-122.278598</longitude>
329
+ </region>
330
+ <region>
331
+ <id>252336</id>
332
+ <name>Whittier Heights</name>
333
+ <zindex currency="USD">389533</zindex>
334
+ <url>http://www.zillow.com/local-info/WA-Seattle/Whittier-Heights/r_252336/</url>
335
+ <latitude>47.683315</latitude>
336
+ <longitude>-122.371425</longitude>
337
+ </region>
338
+ <region>
339
+ <id>271814</id>
340
+ <name>Bitter Lake</name>
341
+ <zindex currency="USD">271674</zindex>
342
+ <url>http://www.zillow.com/local-info/WA-Seattle/Bitter-Lake/r_271814/</url>
343
+ <latitude>47.719625</latitude>
344
+ <longitude>-122.350124</longitude>
345
+ </region>
346
+ <region>
347
+ <id>343999</id>
348
+ <name>North College Park</name>
349
+ <zindex currency="USD">288780</zindex>
350
+ <url>http://www.zillow.com/local-info/WA-Seattle/North-College-Park/r_343999/</url>
351
+ <latitude>47.699481</latitude>
352
+ <longitude>-122.336868</longitude>
353
+ </region>
354
+ <region>
355
+ <id>344003</id>
356
+ <name>Bryant</name>
357
+ <zindex currency="USD">410961</zindex>
358
+ <url>http://www.zillow.com/local-info/WA-Seattle/Bryant/r_344003/</url>
359
+ <latitude>47.672037</latitude>
360
+ <longitude>-122.286167</longitude>
361
+ </region>
362
+ <region>
363
+ <id>272005</id>
364
+ <name>Victory Heights</name>
365
+ <zindex currency="USD">324205</zindex>
366
+ <url>http://www.zillow.com/local-info/WA-Seattle/Victory-Heights/r_272005/</url>
367
+ <latitude>47.709842</latitude>
368
+ <longitude>-122.303947</longitude>
369
+ </region>
370
+ <region>
371
+ <id>251186</id>
372
+ <name>Madison Park</name>
373
+ <zindex currency="USD">759789</zindex>
374
+ <url>http://www.zillow.com/local-info/WA-Seattle/Madison-Park/r_251186/</url>
375
+ <latitude>47.632468</latitude>
376
+ <longitude>-122.282596</longitude>
377
+ </region>
378
+ <region>
379
+ <id>271906</id>
380
+ <name>Lower Queen Anne</name>
381
+ <zindex currency="USD">354248</zindex>
382
+ <url>http://www.zillow.com/local-info/WA-Seattle/Lower-Queen-Anne/r_271906/</url>
383
+ <latitude>47.628862</latitude>
384
+ <longitude>-122.354041</longitude>
385
+ </region>
386
+ <region>
387
+ <id>271921</id>
388
+ <name>Minor</name>
389
+ <zindex currency="USD">336416</zindex>
390
+ <url>http://www.zillow.com/local-info/WA-Seattle/Minor/r_271921/</url>
391
+ <latitude>47.60607</latitude>
392
+ <longitude>-122.309627</longitude>
393
+ </region>
394
+ <region>
395
+ <id>344021</id>
396
+ <name>Fairmount Park</name>
397
+ <zindex currency="USD">305545</zindex>
398
+ <url>http://www.zillow.com/local-info/WA-Seattle/Fairmount-Park/r_344021/</url>
399
+ <latitude>47.555063</latitude>
400
+ <longitude>-122.379867</longitude>
401
+ </region>
402
+ <region>
403
+ <id>344031</id>
404
+ <name>South Delridge</name>
405
+ <zindex currency="USD">211037</zindex>
406
+ <url>http://www.zillow.com/local-info/WA-Seattle/South-Delridge/r_344031/</url>
407
+ <latitude>47.52674</latitude>
408
+ <longitude>-122.361156</longitude>
409
+ </region>
410
+ <region>
411
+ <id>250146</id>
412
+ <name>Brighton</name>
413
+ <zindex currency="USD">248964</zindex>
414
+ <url>http://www.zillow.com/local-info/WA-Seattle/Brighton/r_250146/</url>
415
+ <latitude>47.538786</latitude>
416
+ <longitude>-122.275962</longitude>
417
+ </region>
418
+ <region>
419
+ <id>344026</id>
420
+ <name>Genesee</name>
421
+ <zindex currency="USD">347617</zindex>
422
+ <url>http://www.zillow.com/local-info/WA-Seattle/Genesee/r_344026/</url>
423
+ <latitude>47.56896</latitude>
424
+ <longitude>-122.282714</longitude>
425
+ </region>
426
+ <region>
427
+ <id>344028</id>
428
+ <name>Mt. Baker</name>
429
+ <zindex currency="USD">469952</zindex>
430
+ <url>http://www.zillow.com/local-info/WA-Seattle/Mt.-Baker/r_344028</url>
431
+ <latitude>47.581626</latitude>
432
+ <longitude>-122.289298</longitude>
433
+ </region>
434
+ <region>
435
+ <id>271831</id>
436
+ <name>Cedar Park</name>
437
+ <zindex currency="USD">332176</zindex>
438
+ <url>http://www.zillow.com/local-info/WA-Seattle/Cedar-Park/r_271831/</url>
439
+ <latitude>47.724626</latitude>
440
+ <longitude>-122.287479</longitude>
441
+ </region>
442
+ <region>
443
+ <id>251187</id>
444
+ <name>Madrona</name>
445
+ <zindex currency="USD">519566</zindex>
446
+ <url>http://www.zillow.com/local-info/WA-Seattle/Madrona/r_251187/</url>
447
+ <latitude>47.61269</latitude>
448
+ <longitude>-122.288997</longitude>
449
+ </region>
450
+ <region>
451
+ <id>344030</id>
452
+ <name>Roxhill</name>
453
+ <zindex currency="USD">256802</zindex>
454
+ <url>http://www.zillow.com/local-info/WA-Seattle/Roxhill/r_344030/</url>
455
+ <latitude>47.527391</latitude>
456
+ <longitude>-122.370662</longitude>
457
+ </region>
458
+ <region>
459
+ <id>343994</id>
460
+ <name>South Beacon Hill</name>
461
+ <zindex currency="USD">232575</zindex>
462
+ <url>http://www.zillow.com/local-info/WA-Seattle/South-Beacon-Hill/r_343994/</url>
463
+ <latitude>47.524379</latitude>
464
+ <longitude>-122.289554</longitude>
465
+ </region>
466
+ <region>
467
+ <id>343993</id>
468
+ <name>Pinehurst</name>
469
+ <zindex currency="USD">280725</zindex>
470
+ <url>http://www.zillow.com/local-info/WA-Seattle/Pinehurst/r_343993/</url>
471
+ <latitude>47.723129</latitude>
472
+ <longitude>-122.320342</longitude>
473
+ </region>
474
+ <region>
475
+ <id>344034</id>
476
+ <name>Riverview</name>
477
+ <zindex currency="USD">252369</zindex>
478
+ <url>http://www.zillow.com/local-info/WA-Seattle/Riverview/r_344034/</url>
479
+ <latitude>47.546365</latitude>
480
+ <longitude>-122.352741</longitude>
481
+ </region>
482
+ <region>
483
+ <id>250478</id>
484
+ <name>Dunlap</name>
485
+ <zindex currency="USD">228776</zindex>
486
+ <url>http://www.zillow.com/local-info/WA-Seattle/Dunlap/r_250478/</url>
487
+ <latitude>47.525358</latitude>
488
+ <longitude>-122.270274</longitude>
489
+ </region>
490
+ <region>
491
+ <id>271849</id>
492
+ <name>Downtown</name>
493
+ <zindex currency="USD">454967</zindex>
494
+ <url>http://www.zillow.com/local-info/WA-Seattle/Downtown/r_271849/</url>
495
+ <latitude>47.607345</latitude>
496
+ <longitude>-122.33509</longitude>
497
+ </region>
498
+ <region>
499
+ <id>251076</id>
500
+ <name>Lakewood</name>
501
+ <zindex currency="USD">364752</zindex>
502
+ <url>http://www.zillow.com/local-info/WA-Seattle/Lakewood/r_251076/</url>
503
+ <latitude>47.559577</latitude>
504
+ <longitude>-122.266502</longitude>
505
+ </region>
506
+ <region>
507
+ <id>344027</id>
508
+ <name>Rainier View</name>
509
+ <zindex currency="USD">198142</zindex>
510
+ <url>http://www.zillow.com/local-info/WA-Seattle/Rainier-View/r_344027/</url>
511
+ <latitude>47.500984</latitude>
512
+ <longitude>-122.256076</longitude>
513
+ </region>
514
+ <region>
515
+ <id>271857</id>
516
+ <name>Eastlake</name>
517
+ <zindex currency="USD">345435</zindex>
518
+ <url>http://www.zillow.com/local-info/WA-Seattle/Eastlake/r_271857/</url>
519
+ <latitude>47.638485</latitude>
520
+ <longitude>-122.329231</longitude>
521
+ </region>
522
+ <region>
523
+ <id>271977</id>
524
+ <name>Seward Park</name>
525
+ <zindex currency="USD">427200</zindex>
526
+ <url>http://www.zillow.com/local-info/WA-Seattle/Seward-Park/r_271977/</url>
527
+ <latitude>47.547012</latitude>
528
+ <longitude>-122.259807</longitude>
529
+ </region>
530
+ <region>
531
+ <id>271915</id>
532
+ <name>Meadowbrook</name>
533
+ <zindex currency="USD">327922</zindex>
534
+ <url>http://www.zillow.com/local-info/WA-Seattle/Meadowbrook/r_271915/</url>
535
+ <latitude>47.706501</latitude>
536
+ <longitude>-122.298034</longitude>
537
+ </region>
538
+ <region>
539
+ <id>344025</id>
540
+ <name>Hillman City</name>
541
+ <zindex currency="USD">260377</zindex>
542
+ <url>http://www.zillow.com/local-info/WA-Seattle/Hillman-City/r_344025/</url>
543
+ <latitude>47.549944</latitude>
544
+ <longitude>-122.281021</longitude>
545
+ </region>
546
+ <region>
547
+ <id>271923</id>
548
+ <name>Montlake</name>
549
+ <zindex currency="USD">610920</zindex>
550
+ <url>http://www.zillow.com/local-info/WA-Seattle/Montlake/r_271923/</url>
551
+ <latitude>47.640871</latitude>
552
+ <longitude>-122.308456</longitude>
553
+ </region>
554
+ <region>
555
+ <id>250383</id>
556
+ <name>Crown Hill</name>
557
+ <zindex currency="USD">310520</zindex>
558
+ <url>http://www.zillow.com/local-info/WA-Seattle/Crown-Hill/r_250383/</url>
559
+ <latitude>47.696054</latitude>
560
+ <longitude>-122.371379</longitude>
561
+ </region>
562
+ <region>
563
+ <id>344020</id>
564
+ <name>Junction</name>
565
+ <zindex currency="USD">335269</zindex>
566
+ <url>http://www.zillow.com/local-info/WA-Seattle/Junction/r_344020/</url>
567
+ <latitude>47.564802</latitude>
568
+ <longitude>-122.385207</longitude>
569
+ </region>
570
+ <region>
571
+ <id>344009</id>
572
+ <name>North Beach</name>
573
+ <zindex currency="USD">477310</zindex>
574
+ <url>http://www.zillow.com/local-info/WA-Seattle/North-Beach/r_344009/</url>
575
+ <latitude>47.696701</latitude>
576
+ <longitude>-122.397186</longitude>
577
+ </region>
578
+ <region>
579
+ <id>251971</id>
580
+ <name>South Park</name>
581
+ <zindex currency="USD">200453</zindex>
582
+ <url>http://www.zillow.com/local-info/WA-Seattle/South-Park/r_251971/</url>
583
+ <latitude>47.529861</latitude>
584
+ <longitude>-122.321971</longitude>
585
+ </region>
586
+ <region>
587
+ <id>271839</id>
588
+ <name>Columbia City</name>
589
+ <zindex currency="USD">290702</zindex>
590
+ <url>http://www.zillow.com/local-info/WA-Seattle/Columbia-City/r_271839/</url>
591
+ <latitude>47.5648</latitude>
592
+ <longitude>-122.286002</longitude>
593
+ </region>
594
+ <region>
595
+ <id>272022</id>
596
+ <name>Westlake</name>
597
+ <zindex currency="USD">324613</zindex>
598
+ <url>http://www.zillow.com/local-info/WA-Seattle/Westlake/r_272022/</url>
599
+ <latitude>47.634922</latitude>
600
+ <longitude>-122.341613</longitude>
601
+ </region>
602
+ <region>
603
+ <id>344005</id>
604
+ <name>Olympic Manor</name>
605
+ <zindex currency="USD">514622</zindex>
606
+ <url>http://www.zillow.com/local-info/WA-Seattle/Olympic-Manor/r_344005/</url>
607
+ <latitude>47.696056</latitude>
608
+ <longitude>-122.382183</longitude>
609
+ </region>
610
+ <region>
611
+ <id>344033</id>
612
+ <name>High Point</name>
613
+ <zindex currency="USD">248930</zindex>
614
+ <url>http://www.zillow.com/local-info/WA-Seattle/High-Point/r_344033/</url>
615
+ <latitude>47.543745</latitude>
616
+ <longitude>-122.368504</longitude>
617
+ </region>
618
+ <region>
619
+ <id>344015</id>
620
+ <name>Judkins Park</name>
621
+ <zindex currency="USD">282799</zindex>
622
+ <url>http://www.zillow.com/local-info/WA-Seattle/Judkins-Park/r_344015/</url>
623
+ <latitude>47.596023</latitude>
624
+ <longitude>-122.301551</longitude>
625
+ </region>
626
+ <region>
627
+ <id>344006</id>
628
+ <name>Blue Ridge</name>
629
+ <zindex currency="USD">448532</zindex>
630
+ <url>http://www.zillow.com/local-info/WA-Seattle/Blue-Ridge/r_344006/</url>
631
+ <latitude>47.705358</latitude>
632
+ <longitude>-122.37735</longitude>
633
+ </region>
634
+ <region>
635
+ <id>344013</id>
636
+ <name>Central</name>
637
+ <zindex currency="USD">375173</zindex>
638
+ <url>http://www.zillow.com/local-info/WA-Seattle/Central/r_344013/</url>
639
+ <latitude>47.615919</latitude>
640
+ <longitude>-122.306362</longitude>
641
+ </region>
642
+ <region>
643
+ <id>344032</id>
644
+ <name>North Delridge</name>
645
+ <zindex currency="USD">249099</zindex>
646
+ <url>http://www.zillow.com/local-info/WA-Seattle/North-Delridge/r_344032/</url>
647
+ <latitude>47.562585</latitude>
648
+ <longitude>-122.363921</longitude>
649
+ </region>
650
+ <region>
651
+ <id>344010</id>
652
+ <name>Uptown</name>
653
+ <zindex currency="USD">259295</zindex>
654
+ <url>http://www.zillow.com/local-info/WA-Seattle/Uptown/r_344010/</url>
655
+ <latitude>47.622282</latitude>
656
+ <longitude>-122.354228</longitude>
657
+ </region>
658
+ <region>
659
+ <id>272026</id>
660
+ <name>Windermere</name>
661
+ <zindex currency="USD">695781</zindex>
662
+ <url>http://www.zillow.com/local-info/WA-Seattle/Windermere/r_272026/</url>
663
+ <latitude>47.670198</latitude>
664
+ <longitude>-122.262973</longitude>
665
+ </region>
666
+ <region>
667
+ <id>344002</id>
668
+ <name>Roosevelt</name>
669
+ <zindex currency="USD">389291</zindex>
670
+ <url>http://www.zillow.com/local-info/WA-Seattle/Roosevelt/r_344002/</url>
671
+ <latitude>47.677045</latitude>
672
+ <longitude>-122.316322</longitude>
673
+ </region>
674
+ <region>
675
+ <id>344004</id>
676
+ <name>Hawthorne Hills</name>
677
+ <zindex currency="USD">544816</zindex>
678
+ <url>http://www.zillow.com/local-info/WA-Seattle/Hawthorne-Hills/r_344004/</url>
679
+ <latitude>47.671894</latitude>
680
+ <longitude>-122.271549</longitude>
681
+ </region>
682
+ <region>
683
+ <id>344014</id>
684
+ <name>Garfield</name>
685
+ <zindex currency="USD">317096</zindex>
686
+ <url>http://www.zillow.com/local-info/WA-Seattle/Garfield/r_344014/</url>
687
+ <latitude>47.607286</latitude>
688
+ <longitude>-122.299503</longitude>
689
+ </region>
690
+ <region>
691
+ <id>344012</id>
692
+ <name>Madison Valley</name>
693
+ <zindex currency="USD">436468</zindex>
694
+ <url>http://www.zillow.com/local-info/WA-Seattle/Madison-Valley/r_344012/</url>
695
+ <latitude>47.626805</latitude>
696
+ <longitude>-122.294018</longitude>
697
+ </region>
698
+ <region>
699
+ <id>250889</id>
700
+ <name>Holly Park</name>
701
+ <zindex currency="USD">238686</zindex>
702
+ <url>http://www.zillow.com/local-info/WA-Seattle/Holly-Park/r_250889/</url>
703
+ <latitude>47.53795</latitude>
704
+ <longitude>-122.288787</longitude>
705
+ </region>
706
+ <region>
707
+ <id>271964</id>
708
+ <name>Portage Bay</name>
709
+ <zindex currency="USD">560689</zindex>
710
+ <url>http://www.zillow.com/local-info/WA-Seattle/Portage-Bay/r_271964/</url>
711
+ <latitude>47.647442</latitude>
712
+ <longitude>-122.31855</longitude>
713
+ </region>
714
+ <region>
715
+ <id>344011</id>
716
+ <name>Denny - Blaine</name>
717
+ <zindex currency="USD">1025177</zindex>
718
+ <url>http://www.zillow.com/local-info/WA-Seattle/Denny----Blaine/r_344011/</url>
719
+ <latitude>47.617123</latitude>
720
+ <longitude>-122.284957</longitude>
721
+ </region>
722
+ <region>
723
+ <id>343998</id>
724
+ <name>Northgate</name>
725
+ <zindex currency="USD">189044</zindex>
726
+ <url>http://www.zillow.com/local-info/WA-Seattle/Northgate/r_343998/</url>
727
+ <latitude>47.707712</latitude>
728
+ <longitude>-122.321105</longitude>
729
+ </region>
730
+ <region>
731
+ <id>250149</id>
732
+ <name>Broadmoor</name>
733
+ <zindex currency="USD">1488353</zindex>
734
+ <url>http://www.zillow.com/local-info/WA-Seattle/Broadmoor/r_250149/</url>
735
+ <latitude>47.637394</latitude>
736
+ <longitude>-122.290645</longitude>
737
+ </region>
738
+ <region>
739
+ <id>250714</id>
740
+ <name>Georgetown</name>
741
+ <zindex currency="USD">220114</zindex>
742
+ <url>http://www.zillow.com/local-info/WA-Seattle/Georgetown/r_250714/</url>
743
+ <latitude>47.540345</latitude>
744
+ <longitude>-122.316844</longitude>
745
+ </region>
746
+ <region>
747
+ <id>250939</id>
748
+ <name>Interbay</name>
749
+ <zindex currency="USD">331345</zindex>
750
+ <url>http://www.zillow.com/local-info/WA-Seattle/Interbay/r_250939/</url>
751
+ <latitude>47.642471</latitude>
752
+ <longitude>-122.379722</longitude>
753
+ </region>
754
+ <region>
755
+ <id>344016</id>
756
+ <name>Jackson Place</name>
757
+ <zindex currency="USD">277641</zindex>
758
+ <url>http://www.zillow.com/local-info/WA-Seattle/Jackson-Place/r_344016/</url>
759
+ <latitude>47.594795</latitude>
760
+ <longitude>-122.3102</longitude>
761
+ </region>
762
+ <region>
763
+ <id>271963</id>
764
+ <name>Pioneer Square</name>
765
+ <zindex currency="USD">371352</zindex>
766
+ <url>http://www.zillow.com/local-info/WA-Seattle/Pioneer-Square/r_271963/</url>
767
+ <latitude>47.597828</latitude>
768
+ <longitude>-122.332927</longitude>
769
+ </region>
770
+ <region>
771
+ <id>271893</id>
772
+ <name>International District</name>
773
+ <zindex currency="USD">181694</zindex>
774
+ <url>http://www.zillow.com/local-info/WA-Seattle/International-District/r_271893/</url>
775
+ <latitude>47.596944</latitude>
776
+ <longitude>-122.324714</longitude>
777
+ </region>
778
+ <region>
779
+ <id>344018</id>
780
+ <name>Waterfront</name>
781
+ <zindex currency="USD">394807</zindex>
782
+ <url>http://www.zillow.com/local-info/WA-Seattle/Waterfront/r_344018/</url>
783
+ <latitude>47.605507</latitude>
784
+ <longitude>-122.348037</longitude>
785
+ </region>
786
+ <region>
787
+ <id>271892</id>
788
+ <name>Industrial District</name>
789
+ <url>http://www.zillow.com/local-info/WA-Seattle/Industrial-District/r_271892/</url>
790
+ <latitude>47.566396</latitude>
791
+ <longitude>-122.347362</longitude>
792
+ </region>
793
+ <region>
794
+ <id>271804</id>
795
+ <name>Atlantic</name>
796
+ <zindex currency="USD">283511</zindex>
797
+ <url>http://www.zillow.com/local-info/WA-Seattle/Atlantic/r_271804/</url>
798
+ <latitude>47.583337</latitude>
799
+ <longitude>-122.301715</longitude>
800
+ </region>
801
+ <region>
802
+ <id>343995</id>
803
+ <name>Denny Triangle</name>
804
+ <zindex currency="USD">349068</zindex>
805
+ <url>http://www.zillow.com/local-info/WA-Seattle/Denny-Triangle/r_343995/</url>
806
+ <latitude>47.615618</latitude>
807
+ <longitude>-122.337897</longitude>
808
+ </region>
809
+ <region>
810
+ <id>252396</id>
811
+ <name>Yesler Terrace</name>
812
+ <url>http://www.zillow.com/local-info/WA-Seattle/Yesler-Terrace/r_252396/</url>
813
+ <latitude>47.602123</latitude>
814
+ <longitude>-122.320735</longitude>
815
+ </region>
816
+ <region>
817
+ <id>271827</id>
818
+ <name>Cascade</name>
819
+ <url>http://www.zillow.com/local-info/WA-Seattle/Cascade/r_271827/</url>
820
+ <latitude>47.622201</latitude>
821
+ <longitude>-122.331382</longitude>
822
+ </region>
823
+ <region>
824
+ <id>271886</id>
825
+ <name>Harbor Island</name>
826
+ <url>http://www.zillow.com/local-info/WA-Seattle/Harbor-Island/r_271886/</url>
827
+ <latitude>47.5799</latitude>
828
+ <longitude>-122.352043</longitude>
829
+ </region>
830
+ <region>
831
+ <id>271975</id>
832
+ <name>Sand Point</name>
833
+ <url>http://www.zillow.com/local-info/WA-Seattle/Sand-Point/r_271975/</url>
834
+ <latitude>47.681854</latitude>
835
+ <longitude>-122.256442</longitude>
836
+ </region>
837
+ <region>
838
+ <id>271987</id>
839
+ <name>South Lake Union</name>
840
+ <zindex currency="USD">277056</zindex>
841
+ <url>http://www.zillow.com/local-info/WA-Seattle/South-Lake-Union/r_271987/</url>
842
+ <latitude>47.622163</latitude>
843
+ <longitude>-122.342368</longitude>
844
+ </region>
845
+ <region>
846
+ <id>344007</id>
847
+ <name>Woodland</name>
848
+ <url>http://www.zillow.com/local-info/WA-Seattle/Woodland/r_344007/</url>
849
+ <latitude>47.670467</latitude>
850
+ <longitude>-122.347194</longitude>
851
+ </region>
852
+ <region>
853
+ <id>344017</id>
854
+ <name>Little Saigon</name>
855
+ <url>http://www.zillow.com/local-info/WA-Seattle/Little-Saigon/r_344017/</url>
856
+ <latitude>47.595203</latitude>
857
+ <longitude>-122.314853</longitude>
858
+ </region>
859
+ <region>
860
+ <id>56654</id>
861
+ <name>Seaview</name>
862
+ <zindex currency="USD">347960</zindex>
863
+ <url>http://www.zillow.com/local-info/WA-Seattle/Seaview/r_56654/</url>
864
+ <latitude>47.550758</latitude>
865
+ <longitude>-122.395767</longitude>
866
+ </region>
867
+ </list>
868
+ </response>
869
+ </RegionChildren:regionchildren>
870
+ <!-- H:117 T:380ms S:13465 R:Sat Aug 27 09:55:27 PDT 2011 B:3.0.121144.20110823141116-comp_rel_b -->