data-anonymization 0.1.2 → 0.2.0
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/.documentup.json +1 -0
- data/.travis.yml +0 -1
- data/README.md +277 -52
- data/blacklist_dsl.rb +1 -3
- data/data-anonymization.gemspec +4 -0
- data/lib/core/dsl.rb +1 -1
- data/lib/data-anonymization.rb +3 -0
- data/lib/strategy/base.rb +21 -11
- data/lib/strategy/blacklist.rb +2 -1
- data/lib/strategy/field/contact/geojson_base.rb +24 -0
- data/lib/strategy/field/contact/random_address.rb +17 -0
- data/lib/strategy/field/contact/random_city.rb +17 -0
- data/lib/strategy/field/contact/random_phone_number.rb +13 -0
- data/lib/strategy/field/contact/random_province.rb +17 -0
- data/lib/strategy/field/contact/random_zipcode.rb +17 -0
- data/lib/strategy/field/datetime/anonymize_date.rb +39 -0
- data/lib/strategy/field/datetime/anonymize_datetime.rb +15 -0
- data/lib/strategy/field/datetime/anonymize_time.rb +58 -0
- data/lib/strategy/field/datetime/date_delta.rb +21 -0
- data/lib/strategy/field/{date_time_delta.rb → datetime/date_time_delta.rb} +3 -3
- data/lib/strategy/field/datetime/time_delta.rb +12 -0
- data/lib/strategy/field/default_anon.rb +12 -7
- data/lib/strategy/field/email/gmail_template.rb +16 -0
- data/lib/strategy/field/{random_email.rb → email/random_email.rb} +0 -0
- data/lib/strategy/field/{random_mailinator_email.rb → email/random_mailinator_email.rb} +0 -2
- data/lib/strategy/field/fields.rb +51 -20
- data/lib/strategy/field/name/random_first_name.rb +14 -0
- data/lib/strategy/field/{random_full_name.rb → name/random_full_name.rb} +0 -0
- data/lib/strategy/field/name/random_last_name.rb +14 -0
- data/lib/strategy/field/{random_user_name.rb → name/random_user_name.rb} +0 -0
- data/lib/strategy/field/number/random_float.rb +23 -0
- data/lib/strategy/field/{random_float_delta.rb → number/random_float_delta.rb} +2 -4
- data/lib/strategy/field/{random_int.rb → number/random_integer.rb} +1 -1
- data/lib/strategy/field/{random_integer_delta.rb → number/random_integer_delta.rb} +2 -5
- data/lib/strategy/field/{random_phone_number.rb → string/formatted_string_numbers.rb} +4 -1
- data/lib/strategy/field/{lorem_ipsum.rb → string/lorem_ipsum.rb} +0 -0
- data/lib/strategy/field/{random_string.rb → string/random_string.rb} +0 -0
- data/lib/strategy/field/{distinct_column_values.rb → string/select_from_database.rb} +2 -3
- data/lib/strategy/field/string/select_from_file.rb +18 -0
- data/lib/strategy/field/string/select_from_list.rb +17 -0
- data/lib/strategy/field/{string_template.rb → string/string_template.rb} +0 -0
- data/lib/strategy/whitelist.rb +4 -2
- data/lib/utils/database.rb +8 -6
- data/lib/utils/geojson_parser.rb +42 -0
- data/lib/utils/logging.rb +0 -9
- data/lib/utils/progress_bar.rb +29 -0
- data/lib/utils/random_float.rb +12 -0
- data/lib/utils/random_int.rb +3 -7
- data/lib/utils/resource.rb +4 -0
- data/lib/version.rb +1 -1
- data/resources/UK_addresses.geojson +300 -0
- data/resources/US_addresses.geojson +300 -0
- data/spec/acceptance/rdbms_blacklist_spec.rb +2 -2
- data/spec/acceptance/rdbms_whitelist_spec.rb +6 -8
- data/spec/resource/sample.geojson +1 -0
- data/spec/spec_helper.rb +3 -2
- data/spec/strategy/field/contact/random_address_spec.rb +12 -0
- data/spec/strategy/field/contact/random_city_spec.rb +14 -0
- data/spec/strategy/field/contact/random_phone_number_spec.rb +16 -0
- data/spec/strategy/field/contact/random_province_spec.rb +14 -0
- data/spec/strategy/field/contact/random_zipcode_spec.rb +14 -0
- data/spec/strategy/field/datetime/anonymize_date_spec.rb +27 -0
- data/spec/strategy/field/datetime/anonymize_datetime_spec.rb +57 -0
- data/spec/strategy/field/datetime/anonymize_time_spec.rb +57 -0
- data/spec/strategy/field/datetime/date_delta_spec.rb +36 -0
- data/spec/strategy/field/{date_time_delta_spec.rb → datetime/date_time_delta_spec.rb} +3 -2
- data/spec/strategy/field/datetime/time_delta_spec.rb +44 -0
- data/spec/strategy/field/default_anon_spec.rb +42 -0
- data/spec/strategy/field/email/gmail_template_spec.rb +17 -0
- data/spec/strategy/field/{random_email_spec.rb → email/random_email_spec.rb} +2 -2
- data/spec/strategy/field/email/random_mailinator_email_spec.rb +14 -0
- data/spec/strategy/field/{random_first_name_spec.rb → name/random_first_name_spec.rb} +2 -2
- data/spec/strategy/field/{random_full_name_spec.rb → name/random_full_name_spec.rb} +2 -2
- data/spec/strategy/field/{random_last_name_spec.rb → name/random_last_name_spec.rb} +2 -2
- data/spec/strategy/field/{random_user_name_spec.rb → name/random_user_name_spec.rb} +2 -2
- data/spec/strategy/field/{random_float_delta_spec.rb → number/random_float_delta_spec.rb} +2 -2
- data/spec/strategy/field/number/random_float_spec.rb +28 -0
- data/spec/strategy/field/{random_integer_delta_spec.rb → number/random_integer_delta_spec.rb} +3 -5
- data/spec/strategy/field/{random_int_spec.rb → number/random_integer_spec.rb} +4 -4
- data/spec/strategy/field/random_boolean_spec.rb +2 -2
- data/spec/strategy/field/string/formatted_string_numbers_spec.rb +15 -0
- data/spec/strategy/field/{lorem_ipsum_spec.rb → string/lorem_ipsum_spec.rb} +2 -2
- data/spec/strategy/field/{random_string_spec.rb → string/random_string_spec.rb} +2 -2
- data/spec/strategy/field/{distinct_column_values_spec.rb → string/select_from_database_spec.rb} +3 -3
- data/spec/strategy/field/{random_selection_spec.rb → string/select_from_list_spec.rb} +5 -5
- data/spec/strategy/field/{string_template_spec.rb → string/string_template_spec.rb} +2 -2
- data/spec/strategy/field/whitelist_spec.rb +2 -2
- data/spec/support/customer_sample.rb +1 -1
- data/spec/utils/database_spec.rb +2 -2
- data/spec/utils/geojson_parser_spec.rb +38 -0
- data/whitelist_dsl.rb +4 -6
- metadata +163 -59
- data/lib/strategy/field/anonymize_time.rb +0 -57
- data/lib/strategy/field/gmail_template.rb +0 -17
- data/lib/strategy/field/random_first_name.rb +0 -18
- data/lib/strategy/field/random_last_name.rb +0 -19
- data/lib/strategy/field/random_selection.rb +0 -23
- data/lib/strategy/field/user_name_template.rb +0 -22
- data/spec/strategy/field/anonymize_time_spec.rb +0 -23
- data/spec/strategy/field/gmail_template_spec.rb +0 -14
- data/spec/strategy/field/random_mailinator_email_spec.rb +0 -21
- data/spec/strategy/field/random_phone_number_spec.rb +0 -35
- data/spec/strategy/field/user_name_template_spec.rb +0 -13
data/lib/utils/random_int.rb
CHANGED
@@ -2,13 +2,9 @@ module DataAnon
|
|
2
2
|
module Utils
|
3
3
|
class RandomInt
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
def self.generate min = nil, max = nil
|
9
|
-
@min = min || DEFAULT_MIN
|
10
|
-
@max = max || DEFAULT_MAX
|
11
|
-
Random.new.rand @min...@max
|
5
|
+
def self.generate min, max
|
6
|
+
return 0 if (min == 0 && max == 0)
|
7
|
+
Random.new.rand min...max
|
12
8
|
end
|
13
9
|
end
|
14
10
|
end
|
data/lib/utils/resource.rb
CHANGED
data/lib/version.rb
CHANGED
@@ -0,0 +1,300 @@
|
|
1
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_0j38SC9wgiREv11uIzZh49_52.030571_-0.472539@1300740013", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Country Wide Sheds Ltd.", "tags": ["shed", "joiner", "greenhouse", "carpenter"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Buildings"}, {"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1525 862232", "href": "http://api.simplegeo.com/1.0/features/SG_0j38SC9wgiREv11uIzZh49_52.030571_-0.472539@1300740013.json", "address": "Unit 6a Woodside Farm, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
2
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4949940145, 52.0279464722]}, "type": "Feature", "id": "SG_1TuEK6R9TeS9lfO66ORnhJ_52.027946_-0.494994@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Guardian Environmental Services Ltd.", "tags": ["refrigeration", "air conditioning"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Household Appliances"}], "phone": "+44 1525 862208", "href": "http://api.simplegeo.com/1.0/features/SG_1TuEK6R9TeS9lfO66ORnhJ_52.027946_-0.494994@1300740015.json", "address": "117 Clockhill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
3
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_61HS9gdJy3RS7SHh5Ap30R_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "CNA Executive Search", "tags": ["consultant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Employment Agencies"}], "phone": "+44 1525 862424", "href": "http://api.simplegeo.com/1.0/features/SG_61HS9gdJy3RS7SHh5Ap30R_52.026245_-0.435333@1300740015.json", "address": "117 Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
4
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_7BEmxafnb3rOf0vwTPWqzb_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "D E L Forklift", "tags": ["equipment"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_7BEmxafnb3rOf0vwTPWqzb_52.030571_-0.472539@1300740015.json", "address": "Woodside Farm, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
5
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_4oqqF0gqdwO9sX4XEkQ4Ko_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Executive Travel", "tags": ["chauffeur", "driven", "car"], "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Motorcycle Sales"}], "phone": "+44 1525 862201", "href": "http://api.simplegeo.com/1.0/features/SG_4oqqF0gqdwO9sX4XEkQ4Ko_52.030571_-0.472539@1300740015.json", "address": "Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
6
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4307369888, 52.0262794495]}, "type": "Feature", "id": "SG_50o3nQpazAFFndxwkDZG1V_52.026279_-0.430737@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "B & R Haulage", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1525 862525", "href": "http://api.simplegeo.com/1.0/features/SG_50o3nQpazAFFndxwkDZG1V_52.026279_-0.430737@1300740015.json", "address": "131 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
7
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4949940145, 52.0279464722]}, "type": "Feature", "id": "SG_3wAeFDXwQ80SzH2QmPBAhb_52.027946_-0.494994@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Woodside Pine Furniture", "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Furniture"}], "phone": "+44 1525 862433", "href": "http://api.simplegeo.com/1.0/features/SG_3wAeFDXwQ80SzH2QmPBAhb_52.027946_-0.494994@1300740015.json", "address": "Unit 7b Woodside Farm, Clophill Rd", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
8
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_18Ncj8ChPmbR2RJ4h6PZnE_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Acorn Distribution", "tags": ["distribution"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "href": "http://api.simplegeo.com/1.0/features/SG_18Ncj8ChPmbR2RJ4h6PZnE_52.030571_-0.472539@1300740015.json", "address": "Sunnyside Nurseries, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
9
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4313139915, 52.0262908936]}, "type": "Feature", "id": "SG_5DBO2zp01WKy2Vj1iHM3P2_52.026291_-0.431314@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Evergreen Displays (Growers) Ltd", "tags": ["landscape", "contractor"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Landscaping Services"}], "phone": "+44 1525 860330", "href": "http://api.simplegeo.com/1.0/features/SG_5DBO2zp01WKy2Vj1iHM3P2_52.026291_-0.431314@1300740015.json", "address": "129 Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
10
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4354299903, 52.0259857178]}, "type": "Feature", "id": "SG_1XhYXeVPZo9n1Jw2JWxUa2_52.025986_-0.435430@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Trevor Hazzard Associates", "tags": ["architectural"], "country": "GB", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Architect"}], "phone": "+44 1525 860602", "href": "http://api.simplegeo.com/1.0/features/SG_1XhYXeVPZo9n1Jw2JWxUa2_52.025986_-0.435430@1300740015.json", "address": "136 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
11
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_2xzq5Cp65FKwF1E4xj8To9_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Jack Burgoine Florist", "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Florist"}], "phone": "+44 1525 860366", "href": "http://api.simplegeo.com/1.0/features/SG_2xzq5Cp65FKwF1E4xj8To9_52.026245_-0.435333@1300740015.json", "address": "117 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
12
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_7BCIRPNAESb1vhTDSZcucu_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Oakley Flowers", "tags": ["import", "export", "agent"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+44 1525 861884", "href": "http://api.simplegeo.com/1.0/features/SG_7BCIRPNAESb1vhTDSZcucu_52.030571_-0.472539@1300740015.json", "address": "Sunnyside Nurseries, Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
13
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_11f6JRnFrigqWwD3YU3ro7_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "P A L Packaging", "tags": ["product"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Rubber & Plastics"}], "phone": "+44 1525 861645", "href": "http://api.simplegeo.com/1.0/features/SG_11f6JRnFrigqWwD3YU3ro7_52.026245_-0.435333@1300740015.json", "address": "117 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
14
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_4FGpfTvPwslLbmJUu06KpK_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Independent Packaging", "tags": ["product"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Rubber & Plastics"}], "phone": "+44 1525 862882", "href": "http://api.simplegeo.com/1.0/features/SG_4FGpfTvPwslLbmJUu06KpK_52.026245_-0.435333@1300740015.json", "address": "117, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
15
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_33YViwQZ0HBjL0ZtGwmwsN_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "I.Q Insurance", "country": "GB", "classifiers": [{"category": "Insurance", "type": "Services", "subcategory": "Insurance Agent"}], "phone": "+44 1525 861123", "href": "http://api.simplegeo.com/1.0/features/SG_33YViwQZ0HBjL0ZtGwmwsN_52.026245_-0.435333@1300740015.json", "address": "117 Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
16
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_1eF9cRIhGs0wUoYOy8xGAf_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Blastek Ltd.", "tags": ["blast"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+44 1525 860366", "href": "http://api.simplegeo.com/1.0/features/SG_1eF9cRIhGs0wUoYOy8xGAf_52.030571_-0.472539@1300740015.json", "address": "Unit 7 Woodside Farm Industrial Estate, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
17
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_6fuWPXHjcywqTuO5HUlCGw_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Workbench", "tags": ["decorator", "painter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1525 862323", "href": "http://api.simplegeo.com/1.0/features/SG_6fuWPXHjcywqTuO5HUlCGw_52.026245_-0.435333@1300740015.json", "address": "Unit 5 117 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
18
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4341259897, 52.0261497498]}, "type": "Feature", "id": "SG_0EBVLR0In1NsdgIlFjBvsj_52.026150_-0.434126@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Shorey's Travel", "tags": ["hire", "coach"], "country": "GB", "classifiers": [{"category": "Bus Charters", "type": "Transportation", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_0EBVLR0In1NsdgIlFjBvsj_52.026150_-0.434126@1300740015.json", "address": "119 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
19
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_0Fall22WPwxIHQz02Ycgvj_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Adroit Recruitment", "tags": ["consultant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Employment Agencies"}], "phone": "+44 1525 862282", "href": "http://api.simplegeo.com/1.0/features/SG_0Fall22WPwxIHQz02Ycgvj_52.026245_-0.435333@1300740015.json", "address": "117 Clophill Rd", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
20
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_1T8dToINsWmzBNmMtnvF7r_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Rush Movements Ltd", "tags": ["forwarders"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1525 862780", "href": "http://api.simplegeo.com/1.0/features/SG_1T8dToINsWmzBNmMtnvF7r_52.030571_-0.472539@1300740015.json", "address": "Woodside Farm, Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
21
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4353330135, 52.0262451172]}, "type": "Feature", "id": "SG_6OOdHqLimiYubu968ecMny_52.026245_-0.435333@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Bolton,Geoff,", "tags": ["concrete", "product"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Building Materials"}], "href": "http://api.simplegeo.com/1.0/features/SG_6OOdHqLimiYubu968ecMny_52.026245_-0.435333@1300740015.json", "address": "117 Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AE"}}
|
22
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_7Iz6DejEfGb4SF0cVuPbZq_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Farr & Daughters Ltd.", "tags": ["nursery", "centre"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Garden Supply"}], "phone": "+44 1525 861266", "href": "http://api.simplegeo.com/1.0/features/SG_7Iz6DejEfGb4SF0cVuPbZq_52.030571_-0.472539@1300740015.json", "address": "Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AD"}}
|
23
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_25uquL5lwwrQdQffjIdaXG_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "K Soloman", "tags": ["pubs", "inn"], "country": "GB", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+44 1525 860237", "href": "http://api.simplegeo.com/1.0/features/SG_25uquL5lwwrQdQffjIdaXG_52.030571_-0.472539@1300740015.json", "address": "Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AD"}}
|
24
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4416890144, 52.0273284912]}, "type": "Feature", "id": "SG_4AvteqYzMy6IMa70ORvVBb_52.027328_-0.441689@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Whinnett,C L,", "tags": ["landscape", "contractor"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Landscaping Services"}], "href": "http://api.simplegeo.com/1.0/features/SG_4AvteqYzMy6IMa70ORvVBb_52.027328_-0.441689@1300740015.json", "address": "Badger Hill Nurseries, Clophill Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AD"}}
|
25
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4949940145, 52.0279464722]}, "type": "Feature", "id": "SG_31ritxA0TXsgfAe9586r0j_52.027946_-0.494994@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Flitwick Mower Service", "tags": ["lawnmowers", "machinery"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Hardware"}], "phone": "+44 1525 862000", "href": "http://api.simplegeo.com/1.0/features/SG_31ritxA0TXsgfAe9586r0j_52.027946_-0.494994@1300740015.json", "address": "Farrs Garden Centre, Clophill Road", "owner": "simplegeo", "postcode": "MK45 2AD"}}
|
26
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4416890144, 52.0273284912]}, "type": "Feature", "id": "SG_3zOomXwwSdKTMhFXYYmTLF_52.027328_-0.441689@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Badger Hill Farm Training", "tags": ["product", "centre"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Special Training"}], "phone": "+44 1525 861613", "href": "http://api.simplegeo.com/1.0/features/SG_3zOomXwwSdKTMhFXYYmTLF_52.027328_-0.441689@1300740015.json", "address": "Badger Hill Farm, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AD"}}
|
27
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4306190014, 52.0261535645]}, "type": "Feature", "id": "SG_3VANNwg1bkF076qSIlMVYo_52.026154_-0.430619@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "P D Izzard", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1525 860482", "href": "http://api.simplegeo.com/1.0/features/SG_3VANNwg1bkF076qSIlMVYo_52.026154_-0.430619@1300740015.json", "address": "166 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AF"}}
|
28
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4261789918, 52.0270805359]}, "type": "Feature", "id": "SG_08AYeDSGVoYj2k1xMmuyef_52.027081_-0.426179@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "A & F Motors", "tags": ["modification", "garage"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+44 1525 860292", "href": "http://api.simplegeo.com/1.0/features/SG_08AYeDSGVoYj2k1xMmuyef_52.027081_-0.426179@1300740015.json", "address": "208 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AF"}}
|
29
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4269460142, 52.0271911621]}, "type": "Feature", "id": "SG_3dF8lA3kvRFuDoz2rdOJCT_52.027191_-0.426946@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Agriseal Ltd", "tags": ["merchant", "agricultural"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}, {"category": "Shopping", "type": "Retail Goods", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_3dF8lA3kvRFuDoz2rdOJCT_52.027191_-0.426946@1300740015.json", "address": "145 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AF"}}
|
30
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4282949865, 52.0269241333]}, "type": "Feature", "id": "SG_3kvlCqoxGpMwEfn8vXkmAZ_52.026924_-0.428295@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Leemoll Services", "tags": ["top", "heating", "central", "publishing", "desk"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}, {"category": "Professional", "type": "Services", "subcategory": "Printing & Photocopies"}], "phone": "+44 1525 860646", "href": "http://api.simplegeo.com/1.0/features/SG_3kvlCqoxGpMwEfn8vXkmAZ_52.026924_-0.428295@1300740015.json", "address": "137 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AF"}}
|
31
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4269460142, 52.0271911621]}, "type": "Feature", "id": "SG_1npc1AC0haRYfO4t8zNiqZ_52.027191_-0.426946@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "B W Platt", "tags": ["heating"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+44 1525 860470", "href": "http://api.simplegeo.com/1.0/features/SG_1npc1AC0haRYfO4t8zNiqZ_52.027191_-0.426946@1300740015.json", "address": "145b Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AF"}}
|
32
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4949940145, 52.0279464722]}, "type": "Feature", "id": "SG_0snPwbsSvX4DFLhoQb97Hm_52.027946_-0.494994@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "A J Pattinson & Co.", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1525 402164", "href": "http://api.simplegeo.com/1.0/features/SG_0snPwbsSvX4DFLhoQb97Hm_52.027946_-0.494994@1300740015.json", "address": "Old Farm, Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AA"}}
|
33
|
+
{"geometry": {"type": "Point", "coordinates": [-0.454587996, 52.0276527405]}, "type": "Feature", "id": "SG_4TpgfPs6vIF3OpT26jbM8U_52.027653_-0.454588@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "C C Tools", "tags": ["power"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Tools & Machinery"}], "href": "http://api.simplegeo.com/1.0/features/SG_4TpgfPs6vIF3OpT26jbM8U_52.027653_-0.454588@1300740015.json", "address": "Unit 3, 29 Clophill Road", "owner": "simplegeo", "postcode": "MK45 2AA"}}
|
34
|
+
{"geometry": {"type": "Point", "coordinates": [-0.454587996, 52.0276527405]}, "type": "Feature", "id": "SG_0rbOfTkzPElXf2ofes5aYo_52.027653_-0.454588@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "M J Hillson Ltd.", "tags": ["builder", "joiner", "carpenter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1525 409400", "href": "http://api.simplegeo.com/1.0/features/SG_0rbOfTkzPElXf2ofes5aYo_52.027653_-0.454588@1300740015.json", "address": "29 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AA"}}
|
35
|
+
{"geometry": {"type": "Point", "coordinates": [-0.454587996, 52.0276527405]}, "type": "Feature", "id": "SG_4FgWkLSbHc0UXn481I7cH2_52.027653_-0.454588@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Concept Solutions", "tags": ["draughtsman", "drawing"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Job Training"}], "phone": "+44 1525 840659", "href": "http://api.simplegeo.com/1.0/features/SG_4FgWkLSbHc0UXn481I7cH2_52.027653_-0.454588@1300740015.json", "address": "Unit 5 29 Clophill Rd", "owner": "simplegeo", "postcode": "MK45 2AA"}}
|
36
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4511370063, 52.0269165039]}, "type": "Feature", "id": "SG_3tAlUIKPUAGsOEIJnEd3bC_52.026917_-0.451137@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Matramar Builders", "tags": ["builder"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1525 403828", "href": "http://api.simplegeo.com/1.0/features/SG_3tAlUIKPUAGsOEIJnEd3bC_52.026917_-0.451137@1300740015.json", "address": "56 Clophill Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AA"}}
|
37
|
+
{"geometry": {"type": "Point", "coordinates": [0.3705649972, 51.4290542603]}, "type": "Feature", "id": "SG_4aXhrf5lOfGl7hcLhyL6dR_51.429054_0.370565@1300740015", "properties": {"province": "Kent", "city": "Gravesend", "name": "A1 Roofing Services", "tags": ["builder"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_4aXhrf5lOfGl7hcLhyL6dR_51.429054_0.370565@1300740015.json", "address": "10 Central Avenue", "owner": "simplegeo", "postcode": "DA12 5AD"}}
|
38
|
+
{"geometry": {"type": "Point", "coordinates": [0.3711819947, 51.4270782471]}, "type": "Feature", "id": "SG_4QM6LY1bN7Dm9ikBROFfpG_51.427078_0.371182@1300740015", "properties": {"province": "Kent", "city": "Gravesend", "name": "Peter L Diggory", "tags": ["plumber", "heating"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+44 1474 326333", "href": "http://api.simplegeo.com/1.0/features/SG_4QM6LY1bN7Dm9ikBROFfpG_51.427078_0.371182@1300740015.json", "address": "76 Central Avenue", "owner": "simplegeo", "postcode": "DA12 5AD"}}
|
39
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4949940145, 52.0279464722]}, "type": "Feature", "id": "SG_0xU08mgc3gobFQv0klZZvV_52.027946_-0.494994@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "H J & A J Cole", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_0xU08mgc3gobFQv0klZZvV_52.027946_-0.494994@1300740015.json", "address": "8 Hall End Close, Maulden", "owner": "simplegeo", "postcode": "MK45 2AH"}}
|
40
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4578070045, 52.0299911499]}, "type": "Feature", "id": "SG_3Xl2PXj4n69jeUmfJerFw0_52.029991_-0.457807@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Maulden Lower School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+44 1525 402286", "href": "http://api.simplegeo.com/1.0/features/SG_3Xl2PXj4n69jeUmfJerFw0_52.029991_-0.457807@1300740015.json", "address": "Church Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AU"}}
|
41
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4577580094, 52.0306472778]}, "type": "Feature", "id": "SG_4wIT7orDorVxuCOhseFMjp_52.030647_-0.457758@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "The Pension Fund Partnership", "tags": ["market"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Research"}], "phone": "+44 1525 841668", "href": "http://api.simplegeo.com/1.0/features/SG_4wIT7orDorVxuCOhseFMjp_52.030647_-0.457758@1300740015.json", "address": "12 Church Rd, Maulden", "owner": "simplegeo", "postcode": "MK45 2AU"}}
|
42
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_2xxZ9LUWYM8HqT7kvOW9cE_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Bedfordia Livestock Ltd.", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1525 402103", "href": "http://api.simplegeo.com/1.0/features/SG_2xxZ9LUWYM8HqT7kvOW9cE_52.030571_-0.472539@1300740015.json", "address": "Longview Farm, Silsoe Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AX"}}
|
43
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4585799873, 52.0274581909]}, "type": "Feature", "id": "SG_4O0MUm9qdFGsXTwSyihU4r_52.027458_-0.458580@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "N R Owen", "tags": ["modification", "garage"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+44 1525 406034", "href": "http://api.simplegeo.com/1.0/features/SG_4O0MUm9qdFGsXTwSyihU4r_52.027458_-0.458580@1300740015.json", "address": "Springfield Farm, Silsoe Road Malden", "owner": "simplegeo", "postcode": "MK45 2AX"}}
|
44
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4559159875, 52.0237236023]}, "type": "Feature", "id": "SG_25iZrsxr9xWjE9iM9SgzCp_52.023724_-0.455916@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "Chris Cole Plant Hire", "tags": ["plant", "machinery"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Equipment Rental"}], "href": "http://api.simplegeo.com/1.0/features/SG_25iZrsxr9xWjE9iM9SgzCp_52.023724_-0.455916@1300740015.json", "address": "27 Silsoe Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AX"}}
|
45
|
+
{"geometry": {"type": "Point", "coordinates": [-0.4725390077, 52.0305709839]}, "type": "Feature", "id": "SG_2EZRHBMve4WIZmbp0Z0aCX_52.030571_-0.472539@1300740015", "properties": {"province": "Bedfordshire", "city": "Bedford", "name": "L W Vass (Agricultural) Ltd.", "tags": ["merchant"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": ""}], "phone": "+44 1525 403041", "href": "http://api.simplegeo.com/1.0/features/SG_2EZRHBMve4WIZmbp0Z0aCX_52.030571_-0.472539@1300740015.json", "address": "Springfield Farm, Silsoe Road, Maulden", "owner": "simplegeo", "postcode": "MK45 2AX"}}
|
46
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6311089993, 53.6916046143]}, "type": "Feature", "id": "SG_0UjyZtAwU26ck9MaIpCSaz_53.691605_-1.631109@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "Pet Heaven", "tags": ["cemetery", "crematorium"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Pets & Pet Supplies"}], "phone": "+44 1924 462555", "href": "http://api.simplegeo.com/1.0/features/SG_0UjyZtAwU26ck9MaIpCSaz_53.691605_-1.631109@1300740015.json", "address": "36 Beech Walk, Eightlands", "owner": "simplegeo", "postcode": "WF13 2PJ"}}
|
47
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6311089993, 53.6916046143]}, "type": "Feature", "id": "SG_4TxAz8pA5YC5LxSsVpinzL_53.691605_-1.631109@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "Abbotts of Dewsbury Ltd", "tags": ["equipment", "cleaning"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Building Materials"}], "phone": "+44 1924 439994", "href": "http://api.simplegeo.com/1.0/features/SG_4TxAz8pA5YC5LxSsVpinzL_53.691605_-1.631109@1300740015.json", "address": "8 Beech Walk", "owner": "simplegeo", "postcode": "WF13 2PJ"}}
|
48
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6334190369, 53.6929664612]}, "type": "Feature", "id": "SG_4epVwJrJgfI6CjTDH5nw7R_53.692966_-1.633419@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "Dewsbury County Court", "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Court House"}], "phone": "+44 1924 465860", "href": "http://api.simplegeo.com/1.0/features/SG_4epVwJrJgfI6CjTDH5nw7R_53.692966_-1.633419@1300740015.json", "address": "Eightlands Road", "owner": "simplegeo", "postcode": "WF13 2PE"}}
|
49
|
+
{"geometry": {"type": "Point", "coordinates": [0.0919860005, 53.0304412842]}, "type": "Feature", "id": "SG_0ewNPq4dbZP23HTA1t29eS_53.030441_0.091986@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "George Young", "tags": ["mixed", "crop"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "phone": "+44 1205 870503", "href": "http://api.simplegeo.com/1.0/features/SG_0ewNPq4dbZP23HTA1t29eS_53.030441_0.091986@1300740015.json", "address": "Southfields Lane, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LW"}}
|
50
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6334190369, 53.6929664612]}, "type": "Feature", "id": "SG_6VTzCFgQE49klQFSdY4hT6_53.692966_-1.633419@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "J Hicks", "tags": ["practitioners"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+44 1924 454473", "href": "http://api.simplegeo.com/1.0/features/SG_6VTzCFgQE49klQFSdY4hT6_53.692966_-1.633419@1300740015.json", "address": "Eightlands Road", "owner": "simplegeo", "postcode": "WF13 2PG"}}
|
51
|
+
{"geometry": {"type": "Point", "coordinates": [0.0973320007, 53.0319290161]}, "type": "Feature", "id": "SG_2JNDzr7AK6EjCPdEDSpE9n_53.031929_0.097332@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "White Cat Caravan & Camping Park", "tags": ["operator", "site", "camping"], "country": "GB", "classifiers": [{"category": "Recreation", "type": "Entertainment", "subcategory": "Campground"}], "phone": "+44 1205 870121", "href": "http://api.simplegeo.com/1.0/features/SG_2JNDzr7AK6EjCPdEDSpE9n_53.031929_0.097332@1300740015.json", "address": "The Cottage, Shaws Lane, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LQ"}}
|
52
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6332449913, 53.6936035156]}, "type": "Feature", "id": "SG_30WRb1cFYVkfETbgcb4etD_53.693604_-1.633245@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "Eightlands Pharmacy", "tags": ["pharmacist", "dispensing", "chemist"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Pharmacy"}], "phone": "+44 1924 458132", "href": "http://api.simplegeo.com/1.0/features/SG_30WRb1cFYVkfETbgcb4etD_53.693604_-1.633245@1300740015.json", "address": "20 Swindon Road", "owner": "simplegeo", "postcode": "WF13 2PA"}}
|
53
|
+
{"geometry": {"type": "Point", "coordinates": [0.0702600032, 53.0260810852]}, "type": "Feature", "id": "SG_0myqjZO5MD46FpVOaXFz80_53.026081_0.070260@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "The Meadows", "tags": ["housing", "sheltered"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Adult Care"}], "phone": "+44 1205 870655", "href": "http://api.simplegeo.com/1.0/features/SG_0myqjZO5MD46FpVOaXFz80_53.026081_0.070260@1300740015.json", "address": "Old Leake", "owner": "simplegeo", "postcode": "PE22 9LS"}}
|
54
|
+
{"geometry": {"type": "Point", "coordinates": [0.0973320007, 53.0319290161]}, "type": "Feature", "id": "SG_50NQn3py67nY0J23kRY2F3_53.031929_0.097332@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "W Young", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_50NQn3py67nY0J23kRY2F3_53.031929_0.097332@1300740015.json", "address": "Elmdene, Crackholt Lane, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LR"}}
|
55
|
+
{"geometry": {"type": "Point", "coordinates": [0.0973320007, 53.0319290161]}, "type": "Feature", "id": "SG_5FOkUtPY0YBJQOsAJIStdm_53.031929_0.097332@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "R F Codd & Sons", "tags": ["mixed", "crop"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_5FOkUtPY0YBJQOsAJIStdm_53.031929_0.097332@1300740015.json", "address": "Crackholt Farm, Crackholt Lane, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LR"}}
|
56
|
+
{"geometry": {"type": "Point", "coordinates": [-3.2779240608, 51.4113464355]}, "type": "Feature", "id": "SG_73dCEV1WgXJ2ImczBSEyp8_51.411346_-3.277924@1300740015", "properties": {"province": "The Vale of Glamorgan", "city": "Barry", "name": "The Breathing Clinic", "tags": ["private"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+44 1446 700706", "href": "http://api.simplegeo.com/1.0/features/SG_73dCEV1WgXJ2ImczBSEyp8_51.411346_-3.277924@1300740015.json", "address": "St Barrac Unit, Colcot Rd", "owner": "simplegeo", "postcode": "CF62 8YH"}}
|
57
|
+
{"geometry": {"type": "Point", "coordinates": [0.0997600034, 53.0294914246]}, "type": "Feature", "id": "SG_29C7cj5VFkWN0uAkqKDMGy_53.029491_0.099760@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "Bloom, I R B", "tags": ["practitioners"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+44 1205 870666", "href": "http://api.simplegeo.com/1.0/features/SG_29C7cj5VFkWN0uAkqKDMGy_53.029491_0.099760@1300740015.json", "address": "Medical Centre, Church End", "owner": "simplegeo", "postcode": "PE22 9LE"}}
|
58
|
+
{"geometry": {"type": "Point", "coordinates": [0.0997600034, 53.0294914246]}, "type": "Feature", "id": "SG_5HgVXYrJLTdwvmJFsXgC0j_53.029491_0.099760@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "Medical Centre", "tags": ["practitioners"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+44 1205 870666", "href": "http://api.simplegeo.com/1.0/features/SG_5HgVXYrJLTdwvmJFsXgC0j_53.029491_0.099760@1300740015.json", "address": "Old Leake", "owner": "simplegeo", "postcode": "PE22 9LE"}}
|
59
|
+
{"geometry": {"type": "Point", "coordinates": [0.1229600012, 53.0363082886]}, "type": "Feature", "id": "SG_69MV8E6VJYkqHVNvNY5fJs_53.036308_0.122960@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "R Royle", "tags": ["plant", "machinery"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Equipment Rental"}], "phone": "+44 1205 870532", "href": "http://api.simplegeo.com/1.0/features/SG_69MV8E6VJYkqHVNvNY5fJs_53.036308_0.122960@1300740015.json", "address": "Church End, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LE"}}
|
60
|
+
{"geometry": {"type": "Point", "coordinates": [0.1229600012, 53.0363082886]}, "type": "Feature", "id": "SG_6PioawEPamMOJnWvin1GT8_53.036308_0.122960@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "The Giles School", "tags": ["college", "local"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 1205 870693", "href": "http://api.simplegeo.com/1.0/features/SG_6PioawEPamMOJnWvin1GT8_53.036308_0.122960@1300740015.json", "address": "Church End, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LD"}}
|
61
|
+
{"geometry": {"type": "Point", "coordinates": [0.0946369991, 53.0341682434]}, "type": "Feature", "id": "SG_4zmI40eLpCRP1VIgKb712U_53.034168_0.094637@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "Leicestershire Legal Services Ltd", "tags": ["solicitor"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+44 1205 870909", "href": "http://api.simplegeo.com/1.0/features/SG_4zmI40eLpCRP1VIgKb712U_53.034168_0.094637@1300740015.json", "address": "19 Bert Allen Drive, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LG"}}
|
62
|
+
{"geometry": {"type": "Point", "coordinates": [-3.2779939175, 51.4017829895]}, "type": "Feature", "id": "SG_2vTsSDSGjYl6GMVvtvRVeI_51.401783_-3.277994@1300740015", "properties": {"province": "The Vale of Glamorgan", "city": "Barry", "name": "Thomas Directory", "tags": ["self", "catering"], "country": "GB", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "href": "http://api.simplegeo.com/1.0/features/SG_2vTsSDSGjYl6GMVvtvRVeI_51.401783_-3.277994@1300740015.json", "address": "P O Box 22", "owner": "simplegeo", "postcode": "CF62 8YB"}}
|
63
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6370040178, 53.6914749146]}, "type": "Feature", "id": "SG_55XTj0UE9LaJXKhuGflMGC_53.691475_-1.637004@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "Designs Hair Salon", "tags": ["unisex", "hairdresser"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "href": "http://api.simplegeo.com/1.0/features/SG_55XTj0UE9LaJXKhuGflMGC_53.691475_-1.637004@1300740015.json", "address": "34 Vulcan Gardens", "owner": "simplegeo", "postcode": "WF13 2PP"}}
|
64
|
+
{"geometry": {"type": "Point", "coordinates": [0.0922000036, 53.034740448]}, "type": "Feature", "id": "SG_2YeEOMwaMANqUQGrGWKrQs_53.034740_0.092200@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "Hadwick Motors", "tags": ["car"], "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Automobile Sales"}], "href": "http://api.simplegeo.com/1.0/features/SG_2YeEOMwaMANqUQGrGWKrQs_53.034740_0.092200@1300740015.json", "address": "Church Road, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LB"}}
|
65
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_1vNFYn4u6hnPBYfzdGAu6U_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Easton Business Centre", "tags": ["accomodation"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+44 117 941 5888", "href": "http://api.simplegeo.com/1.0/features/SG_1vNFYn4u6hnPBYfzdGAu6U_51.478325_-2.691005@1300740015.json", "address": "Felix Road, Easton", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
66
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6915380955, 51.4789352417]}, "type": "Feature", "id": "SG_1iLS0kpALLKWMlkx0vXAlT_51.478935_-2.691538@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Presswise Ltd.", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "phone": "+44 117 941 5889", "href": "http://api.simplegeo.com/1.0/features/SG_1iLS0kpALLKWMlkx0vXAlT_51.478935_-2.691538@1300740015.json", "address": "Unit 25 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
67
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_27qR5brQRhSOA0LO8Migzc_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Topfix Suspended Ceilings", "tags": ["ceiling", "contractor"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 117 941 5893", "href": "http://api.simplegeo.com/1.0/features/SG_27qR5brQRhSOA0LO8Migzc_51.462448_-2.567759@1300740015.json", "address": "Unit 18 Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
68
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_1dBFAGmEm33pKoeC84ocJI_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "I G S Services Western", "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}], "phone": "+44 117 941 5895", "href": "http://api.simplegeo.com/1.0/features/SG_1dBFAGmEm33pKoeC84ocJI_51.462448_-2.567759@1300740015.json", "address": "Easton Business Centre, 42 Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
69
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_4EP6hOxS7SR7XYfmIzwXrm_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Multicare Hygiene Products Ltd", "tags": ["cleaning", "supply"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Discount & Variety Stores"}], "phone": "+44 117 941 5818", "href": "http://api.simplegeo.com/1.0/features/SG_4EP6hOxS7SR7XYfmIzwXrm_51.462448_-2.567759@1300740015.json", "address": "Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
70
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6919639111, 51.4788246155]}, "type": "Feature", "id": "SG_7CQ15IXkXAYwYTnJGpM3yW_51.478825_-2.691964@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Contact Communication Services", "tags": ["radio"], "country": "GB", "classifiers": [{"category": "Utilities", "type": "Services", "subcategory": "Telephone"}], "phone": "+44 117 941 5816", "href": "http://api.simplegeo.com/1.0/features/SG_7CQ15IXkXAYwYTnJGpM3yW_51.478825_-2.691964@1300740015.json", "address": "Unit 12 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
71
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4781112671]}, "type": "Feature", "id": "SG_0AuvRg4DLDBVfzXoOyBZsj_51.478111_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Connexion Developments Ltd.", "tags": ["valve"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_0AuvRg4DLDBVfzXoOyBZsj_51.478111_-2.691005@1300740015.json", "address": "Unit 1, Easton Business Centre", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
72
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5693039894, 51.4632644653]}, "type": "Feature", "id": "SG_40DZpFzL03gF4okk0511lt_51.463264_-2.569304@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "S.D Cleaning Services", "tags": ["commercial"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+44 117 941 5812", "href": "http://api.simplegeo.com/1.0/features/SG_40DZpFzL03gF4okk0511lt_51.463264_-2.569304@1300740015.json", "address": "Unit 11, Felix Rd, Easton", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
73
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6915380955, 51.4789352417]}, "type": "Feature", "id": "SG_0VI2JjEs38UTHgbB8Zr0am_51.478935_-2.691538@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "A B Couriers", "tags": ["messenger", "courier"], "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Post Office"}], "phone": "+44 117 941 5828", "href": "http://api.simplegeo.com/1.0/features/SG_0VI2JjEs38UTHgbB8Zr0am_51.478935_-2.691538@1300740015.json", "address": "Unit 22 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
74
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_50xQd6wzGo7BGVdeKy3kCi_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Metro Rod", "tags": ["drain", "clearance", "sewer"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+44 117 941 5820", "href": "http://api.simplegeo.com/1.0/features/SG_50xQd6wzGo7BGVdeKy3kCi_51.462448_-2.567759@1300740015.json", "address": "Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
75
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6913330555, 51.4783782959]}, "type": "Feature", "id": "SG_05ouHYQEkqcnWf6EhjlODB_51.478378_-2.691333@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Progress (South West) Ltd.", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "phone": "+44 117 941 5849", "href": "http://api.simplegeo.com/1.0/features/SG_05ouHYQEkqcnWf6EhjlODB_51.478378_-2.691333@1300740015.json", "address": "Unit 4 Easton Business Centre, Felix Road Easton", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
76
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_4CjEDP3tXd0v81M9bkibFY_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Bristol & District People First", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "phone": "+44 117 941 5842", "href": "http://api.simplegeo.com/1.0/features/SG_4CjEDP3tXd0v81M9bkibFY_51.462448_-2.567759@1300740015.json", "address": "Unit 35, Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
77
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_5IjaIMzwbDtiWH76fF5bgx_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Gardener,Devon", "tags": ["heating"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "href": "http://api.simplegeo.com/1.0/features/SG_5IjaIMzwbDtiWH76fF5bgx_51.478325_-2.691005@1300740015.json", "address": "Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
78
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_2cR25XgH7BN1NY3Zm7Hlo6_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Children's Information Service for Bristol (Bristol Cis)", "tags": ["information"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+44 845 129 7217", "href": "http://api.simplegeo.com/1.0/features/SG_2cR25XgH7BN1NY3Zm7Hlo6_51.478325_-2.691005@1300740015.json", "address": "Unit 40, Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
79
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_29kcHvKiD1j45ifR3ZEuWt_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "East Bristol Enterprise Ltd.", "tags": ["consultant", "business"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+44 117 955 4812", "href": "http://api.simplegeo.com/1.0/features/SG_29kcHvKiD1j45ifR3ZEuWt_51.478325_-2.691005@1300740015.json", "address": "Felix Road, Easton", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
80
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_54V92UREdAD9nW8edmv5cp_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Wellman Aerospace (Midcast Engineering)", "tags": ["aircraft", "component"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Aerospace"}], "phone": "+44 117 941 5880", "href": "http://api.simplegeo.com/1.0/features/SG_54V92UREdAD9nW8edmv5cp_51.462448_-2.567759@1300740015.json", "address": "Unit 37 Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
81
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_0Wq1yITMHTkX7uCg8MHykp_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Safe Transport", "tags": ["messenger", "courier"], "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Post Office"}], "phone": "+44 117 941 5876", "href": "http://api.simplegeo.com/1.0/features/SG_0Wq1yITMHTkX7uCg8MHykp_51.462448_-2.567759@1300740015.json", "address": "Unit 12 Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
82
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_0S6IVYDOYfBsIxGjYyBMG2_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Vision Print", "tags": ["tape", "video"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Computers & Home Electronics"}], "phone": "+44 117 941 5869", "href": "http://api.simplegeo.com/1.0/features/SG_0S6IVYDOYfBsIxGjYyBMG2_51.478325_-2.691005@1300740015.json", "address": "Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
83
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_0aMRDZHHFVZlvF7BdcchUy_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Time2share", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "phone": "+44 117 941 5868", "href": "http://api.simplegeo.com/1.0/features/SG_0aMRDZHHFVZlvF7BdcchUy_51.478325_-2.691005@1300740015.json", "address": "Unit 55, Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
84
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_4oaKrFkpqwOVJXz5UEiKeQ_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Groups in Learning", "tags": ["product", "centre"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Special Training"}], "href": "http://api.simplegeo.com/1.0/features/SG_4oaKrFkpqwOVJXz5UEiKeQ_51.478325_-2.691005@1300740015.json", "address": "Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
85
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6916029453, 51.4789772034]}, "type": "Feature", "id": "SG_47GnMehBXXPj70aqkf4ycC_51.478977_-2.691603@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Wardrobe Design Centre", "tags": ["design"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Furniture"}], "phone": "+44 117 941 5858", "href": "http://api.simplegeo.com/1.0/features/SG_47GnMehBXXPj70aqkf4ycC_51.478977_-2.691603@1300740015.json", "address": "Unit 17 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
86
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_2GUbAUJorCf2EkOaNQ69JM_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Western Eye Television", "tags": ["audio-visual"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_2GUbAUJorCf2EkOaNQ69JM_51.478325_-2.691005@1300740015.json", "address": "Easton Business Centre Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
87
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_0PL4FShczYmlPOIsS4NDHH_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Avon Citizen Advocacy", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "phone": "+44 117 941 5838", "href": "http://api.simplegeo.com/1.0/features/SG_0PL4FShczYmlPOIsS4NDHH_51.462448_-2.567759@1300740015.json", "address": "46 Easton Business Centre, Felix Rd", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
88
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6918339729, 51.4787406921]}, "type": "Feature", "id": "SG_4rYV9ftZ191aRIGhnYgwQJ_51.478741_-2.691834@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Electrio Ltd.", "tags": ["contractor", "electrical", "engineer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}], "phone": "+44 117 941 5833", "href": "http://api.simplegeo.com/1.0/features/SG_4rYV9ftZ191aRIGhnYgwQJ_51.478741_-2.691834@1300740015.json", "address": "Unit 9 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
89
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_0YOeRMrT0R1v2PjnbTHiuN_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Webbair Ltd.", "tags": ["equipment", "pneumatic", "system"], "country": "GB", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Machinery & Supplies"}], "href": "http://api.simplegeo.com/1.0/features/SG_0YOeRMrT0R1v2PjnbTHiuN_51.478325_-2.691005@1300740015.json", "address": "Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
90
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6917328835, 51.479057312]}, "type": "Feature", "id": "SG_5sYoqIbEtDZEgNx6btLHn7_51.479057_-2.691733@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Piston Broke", "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Motorcycle Sales"}], "phone": "+44 117 941 2300", "href": "http://api.simplegeo.com/1.0/features/SG_5sYoqIbEtDZEgNx6btLHn7_51.479057_-2.691733@1300740015.json", "address": "Unit 15 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
91
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_2LqFuvXWURvBDJJbZFnX0S_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "E T Systems Ltd", "tags": ["system", "software"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+44 117 941 5874", "href": "http://api.simplegeo.com/1.0/features/SG_2LqFuvXWURvBDJJbZFnX0S_51.478325_-2.691005@1300740015.json", "address": "Unit 19 Easton Business Centre, Felix Rd, Easton", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
92
|
+
{"geometry": {"type": "Point", "coordinates": [-2.567759037, 51.4624481201]}, "type": "Feature", "id": "SG_5XypA2G4JdENXUEGIE2HN5_51.462448_-2.567759@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Hub 45 Ltd", "tags": ["data", "network"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "phone": "+44 117 941 5809", "href": "http://api.simplegeo.com/1.0/features/SG_5XypA2G4JdENXUEGIE2HN5_51.462448_-2.567759@1300740015.json", "address": "Easton Business Centre, Felix Rd, Easton", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
93
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_6V4GXuJE47a5Pp2bdn2Gqr_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Co-Opportunity Ltd", "tags": ["accountant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Accounting & Tax Preparation"}], "href": "http://api.simplegeo.com/1.0/features/SG_6V4GXuJE47a5Pp2bdn2Gqr_51.478325_-2.691005@1300740015.json", "address": "Unit 59 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
94
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_6yhNTf5dM2T81xoTrvhXkd_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Young Mothers Group Trust Ltd.", "tags": ["organisation", "centre"], "country": "GB", "classifiers": [{"category": "Community Center", "type": "Public Place", "subcategory": "Youth"}], "phone": "+44 117 941 5838", "href": "http://api.simplegeo.com/1.0/features/SG_6yhNTf5dM2T81xoTrvhXkd_51.478325_-2.691005@1300740015.json", "address": "Unit 34, Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
95
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6915659904, 51.4785614014]}, "type": "Feature", "id": "SG_4qIfWgQVQwIa5yC06XKrFE_51.478561_-2.691566@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Action Couriers (Bm) Ltd", "tags": ["messenger", "courier"], "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Post Office"}], "href": "http://api.simplegeo.com/1.0/features/SG_4qIfWgQVQwIa5yC06XKrFE_51.478561_-2.691566@1300740015.json", "address": "Unit 5 Easton Business Centre, Felix Road", "owner": "simplegeo", "postcode": "BS5 0HE"}}
|
96
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5645189285, 51.4634590149]}, "type": "Feature", "id": "SG_1HRj1g2k9cRHKYQK21hXY4_51.463459_-2.564519@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Silai Project Ltd", "tags": ["project", "gov", "community"], "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 117 955 4484", "href": "http://api.simplegeo.com/1.0/features/SG_1HRj1g2k9cRHKYQK21hXY4_51.463459_-2.564519@1300740015.json", "address": "All Hallows Rd", "owner": "simplegeo", "postcode": "BS5 0HH"}}
|
97
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_2Ktb2uHjTAMeLqluRzl3MJ_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Easton Garage", "tags": ["modification", "garage"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "href": "http://api.simplegeo.com/1.0/features/SG_2Ktb2uHjTAMeLqluRzl3MJ_51.478325_-2.691005@1300740015.json", "address": "Adelaide Place, Easton", "owner": "simplegeo", "postcode": "BS5 0HJ"}}
|
98
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5648748875, 51.4652366638]}, "type": "Feature", "id": "SG_2LSIIfPnrmBt5D0HU61LeO_51.465237_-2.564875@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Spring Woods Nursery School", "tags": ["local", "creche"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Nursery"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 117 955 8535", "href": "http://api.simplegeo.com/1.0/features/SG_2LSIIfPnrmBt5D0HU61LeO_51.465237_-2.564875@1300740015.json", "address": "Bannerman Road", "owner": "simplegeo", "postcode": "BS5 0HL"}}
|
99
|
+
{"geometry": {"type": "Point", "coordinates": [-2.565169096, 51.4636917114]}, "type": "Feature", "id": "SG_2AusL1PpqR4InUbCsuO5LI_51.463692_-2.565169@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Brian Crouch", "tags": ["dry", "lining", "plasterers", "screeders"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 117 939 5140", "href": "http://api.simplegeo.com/1.0/features/SG_2AusL1PpqR4InUbCsuO5LI_51.463692_-2.565169@1300740015.json", "address": "12 Graham Rd", "owner": "simplegeo", "postcode": "BS5 0HP"}}
|
100
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_3vPREdz2Rtf4fLv4wyKIWz_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Nan Pang", "tags": ["chip"], "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Meat & Fish"}], "href": "http://api.simplegeo.com/1.0/features/SG_3vPREdz2Rtf4fLv4wyKIWz_51.478325_-2.691005@1300740015.json", "address": "197 Easton Road", "owner": "simplegeo", "postcode": "BS5 0HQ"}}
|
101
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5652189255, 51.461769104]}, "type": "Feature", "id": "SG_0lrp5yjMgNfLRq22eoUEWA_51.461769_-2.565219@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Severn Ironworks", "tags": ["blacksmith", "forgemasters"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Metals"}], "phone": "+44 117 939 9946", "href": "http://api.simplegeo.com/1.0/features/SG_0lrp5yjMgNfLRq22eoUEWA_51.461769_-2.565219@1300740015.json", "address": "179a Easton Rd", "owner": "simplegeo", "postcode": "BS5 0HQ"}}
|
102
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5652189255, 51.461769104]}, "type": "Feature", "id": "SG_22cGXRkyPS1iuAR64s4BOL_51.461769_-2.565219@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Starvirus Promotional Inflatables", "tags": ["inflatables", "bouncy", "castle"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Party Supplies"}], "phone": "+44 117 939 3314", "href": "http://api.simplegeo.com/1.0/features/SG_22cGXRkyPS1iuAR64s4BOL_51.461769_-2.565219@1300740015.json", "address": "179 Eastern Rd, Easten", "owner": "simplegeo", "postcode": "BS5 0HQ"}}
|
103
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5645189285, 51.4634590149]}, "type": "Feature", "id": "SG_2BTDBqCPFRS7MUDLaHsXSR_51.463459_-2.564519@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Bannerman Road Primary School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 117 955 7179", "href": "http://api.simplegeo.com/1.0/features/SG_2BTDBqCPFRS7MUDLaHsXSR_51.463459_-2.564519@1300740015.json", "address": "All Hallows Road", "owner": "simplegeo", "postcode": "BS5 0HR"}}
|
104
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6910049915, 51.4783248901]}, "type": "Feature", "id": "SG_6uqhMSwIB6lK9n5tWIwi17_51.478325_-2.691005@1300740015", "properties": {"province": "City of Bristol", "city": "Bristol", "name": "Bristol Family Homeless Trust", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "href": "http://api.simplegeo.com/1.0/features/SG_6uqhMSwIB6lK9n5tWIwi17_51.478325_-2.691005@1300740015.json", "address": "24 All Hallows Rd, Easton", "owner": "simplegeo", "postcode": "BS5 0HW"}}
|
105
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3835589886, 51.4753341675]}, "type": "Feature", "id": "SG_2LwbWLdLfZ4JfN2iU2ZDZK_51.475334_-0.383559@1300740015", "properties": {"province": "Greater London", "city": "Hounslow", "name": "Treble Clef International Ltd", "tags": ["music"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+44 20 8570 4091", "href": "http://api.simplegeo.com/1.0/features/SG_2LwbWLdLfZ4JfN2iU2ZDZK_51.475334_-0.383559@1300740015.json", "address": "6 Scott Trimmer Way", "owner": "simplegeo", "postcode": "TW3 4LZ"}}
|
106
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3785710037, 51.4758758545]}, "type": "Feature", "id": "SG_0DKGhReh0Wkjj7j62uFlt8_51.475876_-0.378571@1300740015", "properties": {"province": "Greater London", "city": "Hounslow", "name": "Autolift", "tags": ["breakdown", "recovery"], "country": "GB", "classifiers": [{"category": "Sports & Exercise", "type": "Entertainment", "subcategory": "Tennis Court"}], "phone": "+44 20 8737 9866", "href": "http://api.simplegeo.com/1.0/features/SG_0DKGhReh0Wkjj7j62uFlt8_51.475876_-0.378571@1300740015.json", "address": "38 Queenswood Av", "owner": "simplegeo", "postcode": "TW3 4LH"}}
|
107
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3795560002, 51.4748077393]}, "type": "Feature", "id": "SG_1QEKUUcRgUUWuaA5FvtDpe_51.474808_-0.379556@1300740015", "properties": {"province": "Greater London", "city": "Hounslow", "name": "Mers Recovery Service", "tags": ["breakdown", "recovery"], "country": "GB", "classifiers": [{"category": "Sports & Exercise", "type": "Entertainment", "subcategory": "Tennis Court"}], "phone": "+44 20 8572 4414", "href": "http://api.simplegeo.com/1.0/features/SG_1QEKUUcRgUUWuaA5FvtDpe_51.474808_-0.379556@1300740015.json", "address": "41 Moulton Avenue", "owner": "simplegeo", "postcode": "TW3 4LN"}}
|
108
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3741270006, 51.4769973755]}, "type": "Feature", "id": "SG_53V8feUsWMHgfVxAt4xeGI_51.476997_-0.374127@1300740015", "properties": {"province": "Greater London", "city": "Hounslow", "name": "Wellington Primary School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+44 20 8570 6130", "href": "http://api.simplegeo.com/1.0/features/SG_53V8feUsWMHgfVxAt4xeGI_51.476997_-0.374127@1300740015.json", "address": "Sutton Lane", "owner": "simplegeo", "postcode": "TW3 4LB"}}
|
109
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7284200191, 51.3978691101]}, "type": "Feature", "id": "SG_1yla6r8z8msKZCwUHVguD3_51.397869_-0.728420@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Harwood,Ian,", "tags": ["car", "graphic", "designer"], "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Automobile Sales"}, {"category": "Professional", "type": "Services", "subcategory": "Art Services"}], "href": "http://api.simplegeo.com/1.0/features/SG_1yla6r8z8msKZCwUHVguD3_51.397869_-0.728420@1300740015.json", "address": "Unit 2 Forest Pk Business Units 1, 18-25 Horndean Rd", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
110
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7321969867, 51.3919219971]}, "type": "Feature", "id": "SG_7J8Oled2ktTKAlW8V3Me9G_51.391922_-0.732197@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Blockbuster Video", "tags": ["video", "library"], "country": "GB", "classifiers": [{"category": "Cinema", "type": "Entertainment", "subcategory": "Movie Rental"}], "phone": "+44 1344 861360", "href": "http://api.simplegeo.com/1.0/features/SG_7J8Oled2ktTKAlW8V3Me9G_51.391922_-0.732197@1300740015.json", "address": "Unit 1 Forest Park", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
111
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7285299897, 51.397983551]}, "type": "Feature", "id": "SG_7dcVesf7YpcHJrHkEHaGgq_51.397984_-0.728530@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Ultimate Leisure", "tags": ["machine", "amusement"], "country": "GB", "classifiers": [{"category": "Recreation", "type": "Entertainment", "subcategory": "Arcade"}], "phone": "+44 1344 482562", "href": "http://api.simplegeo.com/1.0/features/SG_7dcVesf7YpcHJrHkEHaGgq_51.397984_-0.728530@1300740015.json", "address": "22 Horndean Road", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
112
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7290719748, 51.3981666565]}, "type": "Feature", "id": "SG_2SiFf58lmI71R7ozPAoJFn_51.398167_-0.729072@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Ade Consulting Ltd", "tags": ["consultant", "business"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "href": "http://api.simplegeo.com/1.0/features/SG_2SiFf58lmI71R7ozPAoJFn_51.398167_-0.729072@1300740015.json", "address": "3-5 Horndean Road", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
113
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7284200191, 51.3978691101]}, "type": "Feature", "id": "SG_0sklNjTsuOKK3IDFt4R8Wg_51.397869_-0.728420@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Forest Park Surgery", "tags": ["practitioners"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+44 1344 421364", "href": "http://api.simplegeo.com/1.0/features/SG_0sklNjTsuOKK3IDFt4R8Wg_51.397869_-0.728420@1300740015.json", "address": "Forest Park Surgery, 3-5 Horndean Rd", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
114
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7284849882, 51.398223877]}, "type": "Feature", "id": "SG_7mV0CqQ5HPO5zsuc1zi0PJ_51.398224_-0.728485@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Forest Park Community Centre", "tags": ["centre"], "country": "GB", "classifiers": [{"category": "Community Center", "type": "Public Place", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_7mV0CqQ5HPO5zsuc1zi0PJ_51.398224_-0.728485@1300740015.json", "address": "Horndean Rd, Forest Pk", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
115
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7321969867, 51.3919219971]}, "type": "Feature", "id": "SG_5rBAdygtUsb8AyxjpoC6wF_51.391922_-0.732197@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Scarlet Couriers", "tags": ["messenger", "courier"], "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Post Office"}], "phone": "+44 1344 489099", "href": "http://api.simplegeo.com/1.0/features/SG_5rBAdygtUsb8AyxjpoC6wF_51.391922_-0.732197@1300740015.json", "address": "Unit 5, Forest Park Business Centre", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
116
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7321969867, 51.3919219971]}, "type": "Feature", "id": "SG_1bO9JeLnT7Im7icuN3NkXd_51.391922_-0.732197@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Advantage Copying Services Ltd.", "tags": ["duplicating", "copying"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Printing & Photocopies"}], "href": "http://api.simplegeo.com/1.0/features/SG_1bO9JeLnT7Im7icuN3NkXd_51.391922_-0.732197@1300740015.json", "address": "Unit 1, Forest Park Business Unit", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
117
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7284200191, 51.3978691101]}, "type": "Feature", "id": "SG_48JFPKOloRuLdlr0igevjM_51.397869_-0.728420@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "I Horwood", "tags": ["exhibition"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "phone": "+44 1344 422466", "href": "http://api.simplegeo.com/1.0/features/SG_48JFPKOloRuLdlr0igevjM_51.397869_-0.728420@1300740015.json", "address": "Forest Park Business Units, 25 Horndean Road", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
118
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7285320163, 51.3980178833]}, "type": "Feature", "id": "SG_7MppZWTMc0upUHeOOL2nMX_51.398018_-0.728532@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Telecom Tactics & Systems Ltd.", "tags": ["telecommunication"], "country": "GB", "classifiers": [{"category": "Utilities", "type": "Services", "subcategory": "Telephone"}], "phone": "+44 1344 381200", "href": "http://api.simplegeo.com/1.0/features/SG_7MppZWTMc0upUHeOOL2nMX_51.398018_-0.728532@1300740015.json", "address": "21 Horndean Road", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
119
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7290719748, 51.3981666565]}, "type": "Feature", "id": "SG_62S3GaaUcshZjjMTkfDCNy_51.398167_-0.729072@1300740015", "properties": {"province": "Berkshire", "city": "Bracknell", "name": "Kevin Beare & Co", "tags": ["accountant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Accounting & Tax Preparation"}], "phone": "+44 1344 305244", "href": "http://api.simplegeo.com/1.0/features/SG_62S3GaaUcshZjjMTkfDCNy_51.398167_-0.729072@1300740015.json", "address": "Forest House, 3-5 Horndean Road", "owner": "simplegeo", "postcode": "RG12 0XQ"}}
|
120
|
+
{"geometry": {"type": "Point", "coordinates": [1.0399650335, 51.2650413513]}, "type": "Feature", "id": "SG_6W12Edh1u7sFFxGsXSqflT_51.265041_1.039965@1300740015", "properties": {"province": "Kent", "city": "Canterbury", "name": "Chartham Cemetery", "tags": ["cemetery", "crematorium"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Funeral Services"}], "href": "http://api.simplegeo.com/1.0/features/SG_6W12Edh1u7sFFxGsXSqflT_51.265041_1.039965@1300740015.json", "address": "Ashford Road, Chartham", "owner": "simplegeo", "postcode": "CT4 7NY"}}
|
121
|
+
{"geometry": {"type": "Point", "coordinates": [1.0050100088, 51.2591896057]}, "type": "Feature", "id": "SG_5koybUYPE41cdJiNPzMGDH_51.259190_1.005010@1300740015", "properties": {"province": "Kent", "city": "Canterbury", "name": "Ellison Contractors", "tags": ["plant", "machinery"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Equipment Rental"}], "href": "http://api.simplegeo.com/1.0/features/SG_5koybUYPE41cdJiNPzMGDH_51.259190_1.005010@1300740015.json", "address": "2 Cornmill Cotts, Ashford Road", "owner": "simplegeo", "postcode": "CT4 7NY"}}
|
122
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3779970109, 51.4761352539]}, "type": "Feature", "id": "SG_3yrjlPm2H7BNJJDmp7FIWz_51.476135_-0.377997@1300740015", "properties": {"province": "Greater London", "city": "Hounslow", "name": "Glass Agency", "tags": ["merchant", "glass"], "country": "GB", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Construction Materials"}], "phone": "+44 20 8572 1207", "href": "http://api.simplegeo.com/1.0/features/SG_3yrjlPm2H7BNJJDmp7FIWz_51.476135_-0.377997@1300740015.json", "address": "41 Queenswood Avenue", "owner": "simplegeo", "postcode": "TW3 4LG"}}
|
123
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9501039982, 53.0336151123]}, "type": "Feature", "id": "SG_6hdVZZ71D6HPNKFAcktjiZ_53.033615_-1.950104@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Foxtwood Kennels", "tags": ["boarding", "kennel", "catteries"], "country": "GB", "classifiers": [{"category": "Transit Center", "type": "Transportation", "subcategory": "Passenger"}], "phone": "+44 1538 266667", "href": "http://api.simplegeo.com/1.0/features/SG_6hdVZZ71D6HPNKFAcktjiZ_53.033615_-1.950104@1300740015.json", "address": "Foxt Road, Foxt", "owner": "simplegeo", "postcode": "ST10 2HJ"}}
|
124
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9501039982, 53.0336151123]}, "type": "Feature", "id": "SG_3j4nqlOqY7tAFNZwPAgb9y_53.033615_-1.950104@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "F J & L Redfern", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1538 266355", "href": "http://api.simplegeo.com/1.0/features/SG_3j4nqlOqY7tAFNZwPAgb9y_53.033615_-1.950104@1300740015.json", "address": "Foxtwood Farm, Foxt Road, Foxt", "owner": "simplegeo", "postcode": "ST10 2HJ"}}
|
125
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9851989746, 53.0008506775]}, "type": "Feature", "id": "SG_5wifadxG1w9weHSwCuzIxC_53.000851_-1.985199@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Froghall Passenger Service", "country": "GB", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Travel Agent"}], "phone": "+44 1538 266486", "href": "http://api.simplegeo.com/1.0/features/SG_5wifadxG1w9weHSwCuzIxC_53.000851_-1.985199@1300740015.json", "address": "Froghall Wharf, Foxt Road, Froghall", "owner": "simplegeo", "postcode": "ST10 2HJ"}}
|
126
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9501039982, 53.0336151123]}, "type": "Feature", "id": "SG_7EWEuEuQl5kcxFJqD1IncC_53.033615_-1.950104@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "D & B Electrics", "tags": ["system", "music", "public", "address"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_7EWEuEuQl5kcxFJqD1IncC_53.033615_-1.950104@1300740015.json", "address": "Highfield House, Foxt Road, Foxt", "owner": "simplegeo", "postcode": "ST10 2HJ"}}
|
127
|
+
{"geometry": {"type": "Point", "coordinates": [-0.0099529997, 52.1004142761]}, "type": "Feature", "id": "SG_434gT8Ssb6mMl8lp0E9Oxd_52.100414_-0.009953@1300740015", "properties": {"province": "Bedfordshire", "city": "Royston", "name": "Eternit U K Ltd.", "tags": ["roofing"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1763 260421", "href": "http://api.simplegeo.com/1.0/features/SG_434gT8Ssb6mMl8lp0E9Oxd_52.100414_-0.009953@1300740015.json", "address": "Whaddon Road, Meldreth", "owner": "simplegeo", "postcode": "SG8 5RL"}}
|
128
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3055679798, 50.9662895203]}, "type": "Feature", "id": "SG_3XOj3SKEWzI6W19KMlWhSh_50.966290_-1.305568@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "R E Tillett", "tags": ["decorator", "painter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 23 8069 2847", "href": "http://api.simplegeo.com/1.0/features/SG_3XOj3SKEWzI6W19KMlWhSh_50.966290_-1.305568@1300740015.json", "address": "11 Grangewood Gardens", "owner": "simplegeo", "postcode": "SO50 8ER"}}
|
129
|
+
{"geometry": {"type": "Point", "coordinates": [-1.946146965, 53.0217132568]}, "type": "Feature", "id": "SG_5IAYqQ4OXL0RyQv4thbad5_53.021713_-1.946147@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "C F Cotton & Partners", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1538 702274", "href": "http://api.simplegeo.com/1.0/features/SG_5IAYqQ4OXL0RyQv4thbad5_53.021713_-1.946147@1300740015.json", "address": "Blakeley Farm, Blakeley, Whiston", "owner": "simplegeo", "postcode": "ST10 2HB"}}
|
130
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9851989746, 53.0008506775]}, "type": "Feature", "id": "SG_27hWJQKHx3oMdgyXlVUBPd_53.000851_-1.985199@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "The Railway Inn", "tags": ["pubs", "inn"], "country": "GB", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+44 1538 754782", "href": "http://api.simplegeo.com/1.0/features/SG_27hWJQKHx3oMdgyXlVUBPd_53.000851_-1.985199@1300740015.json", "address": "Froghall", "owner": "simplegeo", "postcode": "ST10 2HA"}}
|
131
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9709609747, 53.046421051]}, "type": "Feature", "id": "SG_17nPQB1qT79PU8oXFRlhyr_53.046421_-1.970961@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "C H L", "tags": ["fork", "lift", "truck"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1538 755500", "href": "http://api.simplegeo.com/1.0/features/SG_17nPQB1qT79PU8oXFRlhyr_53.046421_-1.970961@1300740015.json", "address": "4 Bankview, Froghall", "owner": "simplegeo", "postcode": "ST10 2HA"}}
|
132
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9656339884, 53.024772644]}, "type": "Feature", "id": "SG_34FHzTWkotdifPJEpPza4Q_53.024773_-1.965634@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "William J Jordan", "tags": ["plant", "machinery"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Equipment Rental"}, {"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1538 750019", "href": "http://api.simplegeo.com/1.0/features/SG_34FHzTWkotdifPJEpPza4Q_53.024773_-1.965634@1300740015.json", "address": "6 Bank View Froghall Road, Froghall", "owner": "simplegeo", "postcode": "ST10 2HA"}}
|
133
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9851989746, 53.0008506775]}, "type": "Feature", "id": "SG_4CwaM2oEqZLJOQEp49QLZx_53.000851_-1.985199@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Froghall Woodcraft Service & Supplies", "tags": ["joinery"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1538 750221", "href": "http://api.simplegeo.com/1.0/features/SG_4CwaM2oEqZLJOQEp49QLZx_53.000851_-1.985199@1300740015.json", "address": "Froghall Road", "owner": "simplegeo", "postcode": "ST10 2HA"}}
|
134
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9656339884, 53.024772644]}, "type": "Feature", "id": "SG_3y6gxhbhIpNtkP8Pa2XGzS_53.024773_-1.965634@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Auto Line Motor Salvage", "tags": ["breaker", "dismantlers"], "country": "GB", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Scrap"}], "phone": "+44 1538 754814", "href": "http://api.simplegeo.com/1.0/features/SG_3y6gxhbhIpNtkP8Pa2XGzS_53.024773_-1.965634@1300740015.json", "address": "The Hawthorns, Froghall", "owner": "simplegeo", "postcode": "ST10 2HA"}}
|
135
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3044010401, 50.9678077698]}, "type": "Feature", "id": "SG_6AoPLwhY27f1bH3MDoHg47_50.967808_-1.304401@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "Expressions 2", "tags": ["unisex", "hairdresser"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "phone": "+44 23 8069 3124", "href": "http://api.simplegeo.com/1.0/features/SG_6AoPLwhY27f1bH3MDoHg47_50.967808_-1.304401@1300740015.json", "address": "3 Latham Road, Fair Oak", "owner": "simplegeo", "postcode": "SO50 8EZ"}}
|
136
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3062969446, 50.967414856]}, "type": "Feature", "id": "SG_3otLnnJLTcIdgMBmIsufCI_50.967415_-1.306297@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "The Oven Door", "tags": ["baker"], "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Bakery"}], "phone": "+44 23 8060 1103", "href": "http://api.simplegeo.com/1.0/features/SG_3otLnnJLTcIdgMBmIsufCI_50.967415_-1.306297@1300740015.json", "address": "1 Latham Road, Fair Oak", "owner": "simplegeo", "postcode": "SO50 8EZ"}}
|
137
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3046560287, 50.9678840637]}, "type": "Feature", "id": "SG_5mxrIuSLwunaIKIrWdme04_50.967884_-1.304656@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "Moores Fruiterers & Florists", "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Florist"}], "href": "http://api.simplegeo.com/1.0/features/SG_5mxrIuSLwunaIKIrWdme04_50.967884_-1.304656@1300740015.json", "address": "5 Latham Road, Fair Oak", "owner": "simplegeo", "postcode": "SO50 8EZ"}}
|
138
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3055119514, 50.9677886963]}, "type": "Feature", "id": "SG_1RJdPhCC53IjyVQhGTVaEt_50.967789_-1.305512@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "Crosswires Electrical", "tags": ["contractor", "electrical", "engineer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}], "phone": "+44 23 8069 2896", "href": "http://api.simplegeo.com/1.0/features/SG_1RJdPhCC53IjyVQhGTVaEt_50.967789_-1.305512@1300740015.json", "address": "12 Latham Rd, Fair Oak", "owner": "simplegeo", "postcode": "SO50 8EZ"}}
|
139
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9863140583, 53.0201835632]}, "type": "Feature", "id": "SG_2obpedLLfL1BgSqRtYD1be_53.020184_-1.986314@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "M Gibson", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_2obpedLLfL1BgSqRtYD1be_53.020184_-1.986314@1300740015.json", "address": "Banks Farm, Dovedale Road, Kingsley", "owner": "simplegeo", "postcode": "ST10 2HD"}}
|
140
|
+
{"geometry": {"type": "Point", "coordinates": [-3.5871770382, 50.4337348938]}, "type": "Feature", "id": "SG_6caw7FCEnAmIyHzFAtjISt_50.433735_-3.587177@1300740015", "properties": {"province": "Devon", "city": "Paignton", "name": "Michael Shute", "tags": ["entertainer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_6caw7FCEnAmIyHzFAtjISt_50.433735_-3.587177@1300740015.json", "address": "58 Waterleat Avenue", "owner": "simplegeo", "postcode": "TQ3 3UJ"}}
|
141
|
+
{"geometry": {"type": "Point", "coordinates": [1.3344600201, 51.9665794373]}, "type": "Feature", "id": "SG_3tvsAWbp5QUpg9BbVUeIoe_51.966579_1.334460@1300740015", "properties": {"province": "Suffolk", "city": "Felixstowe", "name": "Layden Community Centre", "tags": ["local", "centre"], "country": "GB", "classifiers": [{"category": "Community Center", "type": "Public Place", "subcategory": ""}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 1394 279724", "href": "http://api.simplegeo.com/1.0/features/SG_3tvsAWbp5QUpg9BbVUeIoe_51.966579_1.334460@1300740015.json", "address": "Langley Avenue", "owner": "simplegeo", "postcode": "IP11 2NA"}}
|
142
|
+
{"geometry": {"type": "Point", "coordinates": [1.3424650431, 51.9613685608]}, "type": "Feature", "id": "SG_3qqCs2dJsaOv7xxbDdEA1u_51.961369_1.342465@1300740015", "properties": {"province": "Suffolk", "city": "Felixstowe", "name": "W R V S", "tags": ["organisation", "voluntary", "charity"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Non-profit Organization"}], "phone": "+44 1394 286097", "href": "http://api.simplegeo.com/1.0/features/SG_3qqCs2dJsaOv7xxbDdEA1u_51.961369_1.342465@1300740015.json", "address": "Layden Community Centre, Langley Avenue", "owner": "simplegeo", "postcode": "IP11 2NA"}}
|
143
|
+
{"geometry": {"type": "Point", "coordinates": [1.3347209692, 51.9666175842]}, "type": "Feature", "id": "SG_5re03nHWeImkgoy48YiDO9_51.966618_1.334721@1300740015", "properties": {"province": "Suffolk", "city": "Felixstowe", "name": "Shaftesbury Housing Association", "tags": ["society", "housing"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Community Association"}], "phone": "+44 1394 277024", "href": "http://api.simplegeo.com/1.0/features/SG_5re03nHWeImkgoy48YiDO9_51.966618_1.334721@1300740015.json", "address": "11 Langley Close", "owner": "simplegeo", "postcode": "IP11 2NB"}}
|
144
|
+
{"geometry": {"type": "Point", "coordinates": [-0.5961139798, 51.6746559143]}, "type": "Feature", "id": "SG_5Ett1SaifSE6rcIYYMvRkO_51.674656_-0.596114@1300740015", "properties": {"province": "Buckinghamshire", "city": "Amersham", "name": "Latimer Sawmills Ltd.", "tags": ["importer", "merchants", "agent", "timber"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Lumber"}], "phone": "+44 1494 762503", "href": "http://api.simplegeo.com/1.0/features/SG_5Ett1SaifSE6rcIYYMvRkO_51.674656_-0.596114@1300740015.json", "address": "Bell Lane, Amersham Common", "owner": "simplegeo", "postcode": "HP6 6PD"}}
|
145
|
+
{"geometry": {"type": "Point", "coordinates": [1.3299030066, 51.9660186768]}, "type": "Feature", "id": "SG_0xcVeZRHE5T7nzFDtJPlf3_51.966019_1.329903@1300740015", "properties": {"province": "Suffolk", "city": "Felixstowe", "name": "C V C Decorating Services", "tags": ["decorator", "painter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1394 284520", "href": "http://api.simplegeo.com/1.0/features/SG_0xcVeZRHE5T7nzFDtJPlf3_51.966019_1.329903@1300740015.json", "address": "8 Shotley Close", "owner": "simplegeo", "postcode": "IP11 2NG"}}
|
146
|
+
{"geometry": {"type": "Point", "coordinates": [-1.946146965, 53.0217132568]}, "type": "Feature", "id": "SG_3wvVIFHbfvIzb4hH6prbxG_53.021713_-1.946147@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Edward Bennett", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1538 266888", "href": "http://api.simplegeo.com/1.0/features/SG_3wvVIFHbfvIzb4hH6prbxG_53.021713_-1.946147@1300740015.json", "address": "Shaw Walls Farm, Shaw Walls, Whiston", "owner": "simplegeo", "postcode": "ST10 2HS"}}
|
147
|
+
{"geometry": {"type": "Point", "coordinates": [-1.935716033, 53.0385894775]}, "type": "Feature", "id": "SG_4wsrqFMu9Fmrc83iXaJgPj_53.038589_-1.935716@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "G E & R Lees", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1538 266240", "href": "http://api.simplegeo.com/1.0/features/SG_4wsrqFMu9Fmrc83iXaJgPj_53.038589_-1.935716@1300740015.json", "address": "Shaw Walls, Whiston", "owner": "simplegeo", "postcode": "ST10 2HS"}}
|
148
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3068399429, 50.9656639099]}, "type": "Feature", "id": "SG_5ycI7vkoBBvagUb3PWt3KW_50.965664_-1.306840@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "Robench Bouncy Castle Hire", "tags": ["inflatables", "bouncy", "castle"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Party Supplies"}], "href": "http://api.simplegeo.com/1.0/features/SG_5ycI7vkoBBvagUb3PWt3KW_50.965664_-1.306840@1300740015.json", "address": "12 New Road", "owner": "simplegeo", "postcode": "SO50 8EN"}}
|
149
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3101530075, 50.9662246704]}, "type": "Feature", "id": "SG_7McN0M5GvG0C7QR0rnMsxn_50.966225_-1.310153@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "Tony Smith Plumbing & Heating", "tags": ["central", "heating"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "href": "http://api.simplegeo.com/1.0/features/SG_7McN0M5GvG0C7QR0rnMsxn_50.966225_-1.310153@1300740015.json", "address": "48 New Road", "owner": "simplegeo", "postcode": "SO50 8EN"}}
|
150
|
+
{"geometry": {"type": "Point", "coordinates": [-1.3091959953, 50.9661216736]}, "type": "Feature", "id": "SG_0qIkJZIjPClG37obwfMCwf_50.966122_-1.309196@1300740015", "properties": {"province": "Hampshire", "city": "Eastleigh", "name": "Patrick L Gibby", "tags": ["gas", "engineer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}], "href": "http://api.simplegeo.com/1.0/features/SG_0qIkJZIjPClG37obwfMCwf_50.966122_-1.309196@1300740015.json", "address": "36 New Road", "owner": "simplegeo", "postcode": "SO50 8EN"}}
|
151
|
+
{"geometry": {"type": "Point", "coordinates": [1.3394500017, 51.9626502991]}, "type": "Feature", "id": "SG_6dVyQKDIaHZsCxQQvP30tR_51.962650_1.339450@1300740015", "properties": {"province": "Suffolk", "city": "Felixstowe", "name": "Keith Seeley", "tags": ["glazier"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1394 282985", "href": "http://api.simplegeo.com/1.0/features/SG_6dVyQKDIaHZsCxQQvP30tR_51.962650_1.339450@1300740015.json", "address": "42 Mill Lane", "owner": "simplegeo", "postcode": "IP11 2NL"}}
|
152
|
+
{"geometry": {"type": "Point", "coordinates": [1.3391849995, 51.9627456665]}, "type": "Feature", "id": "SG_7MMB9dPKyzzJi44jpbgTLQ_51.962746_1.339185@1300740015", "properties": {"province": "Suffolk", "city": "Felixstowe", "name": "A P Laflin", "tags": ["builder"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1394 270573", "href": "http://api.simplegeo.com/1.0/features/SG_7MMB9dPKyzzJi44jpbgTLQ_51.962746_1.339185@1300740015.json", "address": "44 Mill Lane", "owner": "simplegeo", "postcode": "IP11 2NL"}}
|
153
|
+
{"geometry": {"type": "Point", "coordinates": [-1.946146965, 53.0217132568]}, "type": "Feature", "id": "SG_65ANW7iVrHy1qRVyPoOuhw_53.021713_-1.946147@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "R & M Green & Sons", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1538 266277", "href": "http://api.simplegeo.com/1.0/features/SG_65ANW7iVrHy1qRVyPoOuhw_53.021713_-1.946147@1300740015.json", "address": "Shirley Farm, Whiston", "owner": "simplegeo", "postcode": "ST10 2HU"}}
|
154
|
+
{"geometry": {"type": "Point", "coordinates": [-1.946146965, 53.0217132568]}, "type": "Feature", "id": "SG_01JkeYn34hKQlcNzOavM2O_53.021713_-1.946147@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "F Cope", "tags": ["mixed", "crop"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_01JkeYn34hKQlcNzOavM2O_53.021713_-1.946147@1300740015.json", "address": "Shirley Lane, Whiston", "owner": "simplegeo", "postcode": "ST10 2HU"}}
|
155
|
+
{"geometry": {"type": "Point", "coordinates": [-1.946146965, 53.0217132568]}, "type": "Feature", "id": "SG_295zpJsZpAp38CC4TKtM4i_53.021713_-1.946147@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Beardmore,Ian T,", "tags": ["double", "glazier", "glazing"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Petroleum Products"}, {"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_295zpJsZpAp38CC4TKtM4i_53.021713_-1.946147@1300740015.json", "address": "Archbury Lodge, Whiston", "owner": "simplegeo", "postcode": "ST10 2HU"}}
|
156
|
+
{"geometry": {"type": "Point", "coordinates": [-1.9427139759, 53.0214500427]}, "type": "Feature", "id": "SG_6q6ldvLZ5nIPrWoNxNSgKr_53.021450_-1.942714@1300740015", "properties": {"province": "Staffordshire", "city": "Stoke-on-trent", "name": "Moorlands Telecom", "tags": ["telecommunication"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "phone": "+44 1538 266687", "href": "http://api.simplegeo.com/1.0/features/SG_6q6ldvLZ5nIPrWoNxNSgKr_53.021450_-1.942714@1300740015.json", "address": "Black Lane, Whiston", "owner": "simplegeo", "postcode": "ST10 2HU"}}
|
157
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2894790173, 53.3940582275]}, "type": "Feature", "id": "SG_3gdqiv5lR2rh5I7iGhlvro_53.394058_-2.289479@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Martin Jones", "tags": ["installers", "planner", "kitchen", "furnishers"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Home Furnishings"}, {"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Building Materials"}], "phone": "+44 161 945 9122", "href": "http://api.simplegeo.com/1.0/features/SG_3gdqiv5lR2rh5I7iGhlvro_53.394058_-2.289479@1300740015.json", "address": "26 Maltby Rd", "owner": "simplegeo", "postcode": "M23 1EN"}}
|
158
|
+
{"geometry": {"type": "Point", "coordinates": [-1.8642530441, 54.8596801758]}, "type": "Feature", "id": "SG_3LMsPztNbSkZ6X9RQDcN56_54.859680_-1.864253@1300740015", "properties": {"province": "Durham", "city": "Consett", "name": "N B Transport Ltd.", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1207 504467", "href": "http://api.simplegeo.com/1.0/features/SG_3LMsPztNbSkZ6X9RQDcN56_54.859680_-1.864253@1300740015.json", "address": "61 Barley Mill Road", "owner": "simplegeo", "postcode": "DH8 8JS"}}
|
159
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2873399258, 53.398349762]}, "type": "Feature", "id": "SG_3rYta8C9EOpltK7x07TE5z_53.398350_-2.287340@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Manchester Inspection & Advisory Service", "tags": ["education", "agency", "authority"], "country": "GB", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 161 998 5256", "href": "http://api.simplegeo.com/1.0/features/SG_3rYta8C9EOpltK7x07TE5z_53.398350_-2.287340@1300740015.json", "address": "Acorn Centre, Royal Oak Primary School, Royal Oak Road", "owner": "simplegeo", "postcode": "M23 1EB"}}
|
160
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2801189423, 53.3942909241]}, "type": "Feature", "id": "SG_5wcDYHMi8KTO3XLiLCiYm6_53.394291_-2.280119@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Royal Oak Sub Post Office", "tags": ["confectioner"], "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Candy"}, {"category": "Government", "type": "Public Place", "subcategory": "Post Office"}], "phone": "+44 161 998 3935", "href": "http://api.simplegeo.com/1.0/features/SG_5wcDYHMi8KTO3XLiLCiYm6_53.394291_-2.280119@1300740015.json", "address": "22 Pocklington Drive", "owner": "simplegeo", "postcode": "M23 1ED"}}
|
161
|
+
{"geometry": {"type": "Point", "coordinates": [-1.8635519743, 54.8610305786]}, "type": "Feature", "id": "SG_3KehJk6ccj6r031uHbTLiG_54.861031_-1.863552@1300740015", "properties": {"province": "Durham", "city": "Consett", "name": "S A Henderson Transport", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1207 591411", "href": "http://api.simplegeo.com/1.0/features/SG_3KehJk6ccj6r031uHbTLiG_54.861031_-1.863552@1300740015.json", "address": "10 Sandford Road", "owner": "simplegeo", "postcode": "DH8 8JY"}}
|
162
|
+
{"geometry": {"type": "Point", "coordinates": [-1.8634229898, 54.8618736267]}, "type": "Feature", "id": "SG_4HrqBB1TlL4DQsC3e0SUYR_54.861874_-1.863423@1300740015", "properties": {"province": "Durham", "city": "Consett", "name": "Join-It Joinery", "tags": ["joiner", "carpenter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_4HrqBB1TlL4DQsC3e0SUYR_54.861874_-1.863423@1300740015.json", "address": "7 Barley Mill Crescent", "owner": "simplegeo", "postcode": "DH8 8JZ"}}
|
163
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2801189423, 53.3942909241]}, "type": "Feature", "id": "SG_4SMku3xYjII1LpOnzTMepo_53.394291_-2.280119@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Dave's Crop Shop", "tags": ["unisex", "hairdresser"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}, {"category": "Personal", "type": "Services", "subcategory": "Barber"}], "phone": "+44 161 946 0036", "href": "http://api.simplegeo.com/1.0/features/SG_4SMku3xYjII1LpOnzTMepo_53.394291_-2.280119@1300740015.json", "address": "24 Greenbrow Road", "owner": "simplegeo", "postcode": "M23 1EX"}}
|
164
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2801189423, 53.3942909241]}, "type": "Feature", "id": "SG_49nzO7pqWBkWpweVF6YkNX_53.394291_-2.280119@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "New Star", "tags": ["chip"], "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Meat & Fish"}], "phone": "+44 161 998 3568", "href": "http://api.simplegeo.com/1.0/features/SG_49nzO7pqWBkWpweVF6YkNX_53.394291_-2.280119@1300740015.json", "address": "26 Greenbrow Road", "owner": "simplegeo", "postcode": "M23 1EX"}}
|
165
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2801189423, 53.3942909241]}, "type": "Feature", "id": "SG_7SGbHWkR5unBWZYmcHGQ7M_53.394291_-2.280119@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Buffie's Sandwich Bar", "tags": ["caterer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "phone": "+44 161 998 4900", "href": "http://api.simplegeo.com/1.0/features/SG_7SGbHWkR5unBWZYmcHGQ7M_53.394291_-2.280119@1300740015.json", "address": "12 Greenbrow Road", "owner": "simplegeo", "postcode": "M23 1EX"}}
|
166
|
+
{"geometry": {"type": "Point", "coordinates": [1.111035943, 52.3734207153]}, "type": "Feature", "id": "SG_1V5apvcYw6vCaArvLjdhZp_52.373421_1.111036@1300740015", "properties": {"province": "Norfolk", "city": "Diss", "name": "Fresh Washed Herbs", "tags": ["herb", "spice"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Accounting & Tax Preparation"}], "phone": "+44 1379 871410", "href": "http://api.simplegeo.com/1.0/features/SG_1V5apvcYw6vCaArvLjdhZp_52.373421_1.111036@1300740015.json", "address": "Chestnut Tree Farm, The Heywood", "owner": "simplegeo", "postcode": "IP22 3SZ"}}
|
167
|
+
{"geometry": {"type": "Point", "coordinates": [-1.8359140158, 54.8609886169]}, "type": "Feature", "id": "SG_5TR3JsRXPa5EzaToAbYj6T_54.860989_-1.835914@1300740015", "properties": {"province": "Durham", "city": "Consett", "name": "Grorud Engineering Ltd.", "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}], "href": "http://api.simplegeo.com/1.0/features/SG_5TR3JsRXPa5EzaToAbYj6T_54.860989_-1.835914@1300740015.json", "address": "Castleside Industrial Estate", "owner": "simplegeo", "postcode": "DH8 8JA"}}
|
168
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2878770828, 53.3927192688]}, "type": "Feature", "id": "SG_2hBFDsfg3JvceTvJcpXgfy_53.392719_-2.287877@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Altrincham Curtains & Furnishings", "tags": ["interior", "furnishers", "designer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "phone": "+44 161 945 1693", "href": "http://api.simplegeo.com/1.0/features/SG_2hBFDsfg3JvceTvJcpXgfy_53.392719_-2.287877@1300740015.json", "address": "28 Stonebeck Rd", "owner": "simplegeo", "postcode": "M23 1EQ"}}
|
169
|
+
{"geometry": {"type": "Point", "coordinates": [-1.856744051, 54.8629608154]}, "type": "Feature", "id": "SG_4NAw5xV1ty4aBWbcIt6oaH_54.862961_-1.856744@1300740015", "properties": {"province": "Durham", "city": "Consett", "name": "G Dale", "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Dairy Farm"}], "phone": "+44 1207 505646", "href": "http://api.simplegeo.com/1.0/features/SG_4NAw5xV1ty4aBWbcIt6oaH_54.862961_-1.856744@1300740015.json", "address": "Bridgehill Farm, Pemberton Rd", "owner": "simplegeo", "postcode": "DH8 8JN"}}
|
170
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2852039337, 53.3911132812]}, "type": "Feature", "id": "SG_3xY2Bp6ejt3w85HncpNFFX_53.391113_-2.285204@1300740015", "properties": {"province": "Cheshire", "city": "Manchester", "name": "Red Rose Inn", "tags": ["pubs", "inn"], "country": "GB", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_3xY2Bp6ejt3w85HncpNFFX_53.391113_-2.285204@1300740015.json", "address": "Greenbrow Road", "owner": "simplegeo", "postcode": "M23 1EU"}}
|
171
|
+
{"geometry": {"type": "Point", "coordinates": [-1.8549189568, 54.8606262207]}, "type": "Feature", "id": "SG_497TWsh1XPqk0zs0FGTS7L_54.860626_-1.854919@1300740015", "properties": {"province": "Durham", "city": "Consett", "name": "D & DG Bryant", "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Groceries & Convenience Stores"}], "phone": "+44 1207 502928", "href": "http://api.simplegeo.com/1.0/features/SG_497TWsh1XPqk0zs0FGTS7L_54.860626_-1.854919@1300740015.json", "address": "Windsor House, Pemberton Rd, Bridgehill", "owner": "simplegeo", "postcode": "DH8 8JJ"}}
|
172
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5134289265, 53.4900588989]}, "type": "Feature", "id": "SG_1bWObOKt2IKYE1PLMmsX23_53.490059_-2.513429@1300740015", "properties": {"province": "Lancashire", "city": "Leigh", "name": "Brookdale Court", "tags": ["housing", "sheltered"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Adult Care"}], "phone": "+44 1942 679318", "href": "http://api.simplegeo.com/1.0/features/SG_1bWObOKt2IKYE1PLMmsX23_53.490059_-2.513429@1300740015.json", "address": "Pennington Rd", "owner": "simplegeo", "postcode": "WN7 3HW"}}
|
173
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5144999027, 53.4897880554]}, "type": "Feature", "id": "SG_5TpOtsRZlKPUDYCbvnok6t_53.489788_-2.514500@1300740015", "properties": {"province": "Lancashire", "city": "Leigh", "name": "Envirotect Pest Control Services", "tags": ["vermin"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Pest Control"}], "phone": "+44 1942 260202", "href": "http://api.simplegeo.com/1.0/features/SG_5TpOtsRZlKPUDYCbvnok6t_53.489788_-2.514500@1300740015.json", "address": "14 Pennington Rd", "owner": "simplegeo", "postcode": "WN7 3HS"}}
|
174
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7845389843, 52.0581436157]}, "type": "Feature", "id": "SG_2ZwES7TTYV02bvdtpkGx1x_52.058144_-0.784539@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Pepper Hill First School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+44 1908 312912", "href": "http://api.simplegeo.com/1.0/features/SG_2ZwES7TTYV02bvdtpkGx1x_52.058144_-0.784539@1300740015.json", "address": "Kingsfold, Bradville", "owner": "simplegeo", "postcode": "MK13 7BQ"}}
|
175
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2729580104, 50.9321022034]}, "type": "Feature", "id": "SG_4bbXLykt4XdPwE7YQAQgsn_50.932102_-0.272958@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "Martyn Lodge", "tags": ["rest"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Retirement Home"}], "phone": "+44 1273 492881", "href": "http://api.simplegeo.com/1.0/features/SG_4bbXLykt4XdPwE7YQAQgsn_50.932102_-0.272958@1300740015.json", "address": "Church St", "owner": "simplegeo", "postcode": "BN5 9NR"}}
|
176
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2730320096, 50.9319763184]}, "type": "Feature", "id": "SG_6WrsknpixqBifQyPvkODmt_50.931976_-0.273032@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "White Over & Co. Ltd.", "tags": ["surveyor", "valuer"], "country": "GB", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Surveying"}], "phone": "+44 1273 494977", "href": "http://api.simplegeo.com/1.0/features/SG_6WrsknpixqBifQyPvkODmt_50.931976_-0.273032@1300740015.json", "address": "1 Church Street", "owner": "simplegeo", "postcode": "BN5 9NS"}}
|
177
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2729580104, 50.9321022034]}, "type": "Feature", "id": "SG_7ajg0ysV6s4AhMaBHHpZIZ_50.932102_-0.272958@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "The Royal College of Nursing of the United Kingdom", "tags": ["housing", "sheltered"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Adult Care"}], "phone": "+44 1273 494117", "href": "http://api.simplegeo.com/1.0/features/SG_7ajg0ysV6s4AhMaBHHpZIZ_50.932102_-0.272958@1300740015.json", "address": "Church Street", "owner": "simplegeo", "postcode": "BN5 9NP"}}
|
178
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7791979909, 52.0646095276]}, "type": "Feature", "id": "SG_4aLSapcv60eeaGl5ouowMP_52.064610_-0.779198@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Marilyn's Emporium", "tags": ["game"], "country": "GB", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Toys & Hobbies"}], "phone": "+44 1908 226645", "href": "http://api.simplegeo.com/1.0/features/SG_4aLSapcv60eeaGl5ouowMP_52.064610_-0.779198@1300740015.json", "address": "57 Harrowden, Bradville", "owner": "simplegeo", "postcode": "MK13 7BX"}}
|
179
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1656600237, 52.7456588745]}, "type": "Feature", "id": "SG_7XZMhBkru8BlJN5NzQIgXL_52.745659_-1.165660@1300740015", "properties": {"province": "Leicestershire", "city": "Loughborough", "name": "Clay, S", "tags": ["practitioners"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+44 1509 412232", "href": "http://api.simplegeo.com/1.0/features/SG_7XZMhBkru8BlJN5NzQIgXL_52.745659_-1.165660@1300740015.json", "address": "Quorn Medical Centre, 1 Station Rd", "owner": "simplegeo", "postcode": "LE12 8BP"}}
|
180
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1428289413, 52.7544403076]}, "type": "Feature", "id": "SG_1OFlez0fVnLwDhjXHjzg2I_52.754440_-1.142829@1300740015", "properties": {"province": "Leicestershire", "city": "Loughborough", "name": "Bianca's Pizza", "tags": ["supplier", "away", "take", "pizza"], "country": "GB", "classifiers": [{"category": "Fast Food", "type": "Food & Drink", "subcategory": ""}, {"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Groceries"}], "phone": "+44 1509 620363", "href": "http://api.simplegeo.com/1.0/features/SG_1OFlez0fVnLwDhjXHjzg2I_52.754440_-1.142829@1300740015.json", "address": "The Green, Station Road", "owner": "simplegeo", "postcode": "LE12 8BP"}}
|
181
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2722890079, 50.9314193726]}, "type": "Feature", "id": "SG_13I4oAv6Ogpdy3VQUHKR8K_50.931419_-0.272289@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "Badgerwood Training & Livery Centre", "tags": ["equestrian"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Adult"}], "phone": "+44 1273 857369", "href": "http://api.simplegeo.com/1.0/features/SG_13I4oAv6Ogpdy3VQUHKR8K_50.931419_-0.272289@1300740015.json", "address": "Clappers Lane, Fulking", "owner": "simplegeo", "postcode": "BN5 9NJ"}}
|
182
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2722890079, 50.9314193726]}, "type": "Feature", "id": "SG_6YSH3RC32XPn4UEsLntp6I_50.931419_-0.272289@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "Badger Kennels & Cattery", "tags": ["boarding", "kennel", "catteries"], "country": "GB", "classifiers": [{"category": "Transit Center", "type": "Transportation", "subcategory": "Passenger"}], "phone": "+44 1273 857205", "href": "http://api.simplegeo.com/1.0/features/SG_6YSH3RC32XPn4UEsLntp6I_50.931419_-0.272289@1300740015.json", "address": "Badger Brook, Clappers Lane, Fulking", "owner": "simplegeo", "postcode": "BN5 9NJ"}}
|
183
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5172159672, 53.4902992249]}, "type": "Feature", "id": "SG_4ZZCO3rCaaLmRNrsOvaXgo_53.490299_-2.517216@1300740015", "properties": {"province": "Lancashire", "city": "Leigh", "name": "Isherwoods", "tags": ["electrical"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Household Appliances"}], "phone": "+44 1942 677376", "href": "http://api.simplegeo.com/1.0/features/SG_4ZZCO3rCaaLmRNrsOvaXgo_53.490299_-2.517216@1300740015.json", "address": "11 Eton Street", "owner": "simplegeo", "postcode": "WN7 3HF"}}
|
184
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2722890079, 50.9314193726]}, "type": "Feature", "id": "SG_7mvruhJTxd11x5lEGhqIMZ_50.931419_-0.272289@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "Downers Vineyard", "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Vineyard"}], "phone": "+44 1273 857484", "href": "http://api.simplegeo.com/1.0/features/SG_7mvruhJTxd11x5lEGhqIMZ_50.931419_-0.272289@1300740015.json", "address": "Clappers Lane, Fulking", "owner": "simplegeo", "postcode": "BN5 9NH"}}
|
185
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2237260044, 50.8937454224]}, "type": "Feature", "id": "SG_2iIf9tsDVILVDJsaXG5mEv_50.893745_-0.223726@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "R & M Associates", "tags": ["marketing", "consultant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+44 1273 857776", "href": "http://api.simplegeo.com/1.0/features/SG_2iIf9tsDVILVDJsaXG5mEv_50.893745_-0.223726@1300740015.json", "address": "Brook House, Clappers Lane, Fulking", "owner": "simplegeo", "postcode": "BN5 9NH"}}
|
186
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7845389843, 52.0581436157]}, "type": "Feature", "id": "SG_0UzOYoIMHFYg49sa2mEpjK_52.058144_-0.784539@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Stanton Middle School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+44 1908 221242", "href": "http://api.simplegeo.com/1.0/features/SG_0UzOYoIMHFYg49sa2mEpjK_52.058144_-0.784539@1300740015.json", "address": "Fairfax, Bradville", "owner": "simplegeo", "postcode": "MK13 7BE"}}
|
187
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7789459825, 52.0588531494]}, "type": "Feature", "id": "SG_2e9w7Dtg7jNhpKaAkh8ZV7_52.058853_-0.778946@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Norcott Arts", "tags": ["illustrator", "artist"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": "Film & Video Production"}], "phone": "+44 1908 318774", "href": "http://api.simplegeo.com/1.0/features/SG_2e9w7Dtg7jNhpKaAkh8ZV7_52.058853_-0.778946@1300740015.json", "address": "16 Vauxhall, Bradville", "owner": "simplegeo", "postcode": "MK13 7BB"}}
|
188
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7776899934, 52.0589294434]}, "type": "Feature", "id": "SG_2BRDHPORzfYIM94r0bo5SO_52.058929_-0.777690@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "A K Mobile Services", "tags": ["body", "garage", "modification", "car"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+44 1908 314303", "href": "http://api.simplegeo.com/1.0/features/SG_2BRDHPORzfYIM94r0bo5SO_52.058929_-0.777690@1300740015.json", "address": "46 Vauxhall, Bradville", "owner": "simplegeo", "postcode": "MK13 7BB"}}
|
189
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7793310285, 52.0591011047]}, "type": "Feature", "id": "SG_5BfMATj9bKPNrmSbG4blUs_52.059101_-0.779331@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Able-2 Services", "tags": ["alteration"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Laundry & Dry Cleaning"}], "href": "http://api.simplegeo.com/1.0/features/SG_5BfMATj9bKPNrmSbG4blUs_52.059101_-0.779331@1300740015.json", "address": "5 Vauxhall", "owner": "simplegeo", "postcode": "MK13 7BB"}}
|
190
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7791969776, 52.0588378906]}, "type": "Feature", "id": "SG_3YEQ7aK0D7cQuPa2zTdIwS_52.058838_-0.779197@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Brian Davis", "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Driving School"}], "phone": "+44 1908 318676", "href": "http://api.simplegeo.com/1.0/features/SG_3YEQ7aK0D7cQuPa2zTdIwS_52.058838_-0.779197@1300740015.json", "address": "10 Vauxhall", "owner": "simplegeo", "postcode": "MK13 7BB"}}
|
191
|
+
{"geometry": {"type": "Point", "coordinates": [-2.512458086, 53.4912986755]}, "type": "Feature", "id": "SG_7GTiCzNGgoJhJsiKvPh9sY_53.491299_-2.512458@1300740015", "properties": {"province": "Lancashire", "city": "Leigh", "name": "The Pennington", "tags": ["pubs", "inn"], "country": "GB", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+44 1942 677289", "href": "http://api.simplegeo.com/1.0/features/SG_7GTiCzNGgoJhJsiKvPh9sY_53.491299_-2.512458@1300740015.json", "address": "153 Henry Street", "owner": "simplegeo", "postcode": "WN7 3HA"}}
|
192
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7775980234, 52.0602111816]}, "type": "Feature", "id": "SG_27umjBLYDOH3TSOcWf2lUP_52.060211_-0.777598@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Betteklean Carpets", "tags": ["cleaner", "upholstery"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Carpets & Floor Coverings"}], "phone": "+44 1908 227046", "href": "http://api.simplegeo.com/1.0/features/SG_27umjBLYDOH3TSOcWf2lUP_52.060211_-0.777598@1300740015.json", "address": "36 Cleveland", "owner": "simplegeo", "postcode": "MK13 7BA"}}
|
193
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7771670222, 52.0602149963]}, "type": "Feature", "id": "SG_3pGXVzaGanonfJXvgI9afL_52.060215_-0.777167@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "Plumbs Classic", "tags": ["loose", "cover"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Home Furnishings"}], "phone": "+44 1908 321881", "href": "http://api.simplegeo.com/1.0/features/SG_3pGXVzaGanonfJXvgI9afL_52.060215_-0.777167@1300740015.json", "address": "44 Cleveland", "owner": "simplegeo", "postcode": "MK13 7BA"}}
|
194
|
+
{"geometry": {"type": "Point", "coordinates": [-0.7845389843, 52.0581436157]}, "type": "Feature", "id": "SG_75cCTyF4F0zfRILtiDUZ9t_52.058144_-0.784539@1300740015", "properties": {"province": "Buckinghamshire", "city": "Milton Keynes", "name": "GOWER ATTRACTIONS LTD", "tags": ["overseas", "property"], "country": "GB", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Investment Brokerage"}, {"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+44 1908 318595", "href": "http://api.simplegeo.com/1.0/features/SG_75cCTyF4F0zfRILtiDUZ9t_52.058144_-0.784539@1300740015.json", "address": "120 Kingsfold, Bradville", "owner": "simplegeo", "postcode": "MK13 7BN"}}
|
195
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5200350285, 53.4901885986]}, "type": "Feature", "id": "SG_6XvTkR7zshSBzGC9d85p4s_53.490189_-2.520035@1300740015", "properties": {"province": "Lancashire", "city": "Leigh", "name": "Ann Roger Counselling Services", "tags": ["therapist", "speech"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Health Practitioner"}], "phone": "+44 1942 601111", "href": "http://api.simplegeo.com/1.0/features/SG_6XvTkR7zshSBzGC9d85p4s_53.490189_-2.520035@1300740015.json", "address": "15 Sheldwich Close", "owner": "simplegeo", "postcode": "WN7 3HN"}}
|
196
|
+
{"geometry": {"type": "Point", "coordinates": [-0.8690609932, 51.4167442322]}, "type": "Feature", "id": "SG_5PtfBo5KEMrguxswdkJhQZ_51.416744_-0.869061@1300740015", "properties": {"province": "Berkshire", "city": "Wokingham", "name": "J M Rowsell", "tags": ["podiatrists", "chiropodist"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Podiatrist"}], "href": "http://api.simplegeo.com/1.0/features/SG_5PtfBo5KEMrguxswdkJhQZ_51.416744_-0.869061@1300740015.json", "address": "1 Zinnia Close", "owner": "simplegeo", "postcode": "RG41 3ND"}}
|
197
|
+
{"geometry": {"type": "Point", "coordinates": [-0.8686529994, 51.4166946411]}, "type": "Feature", "id": "SG_4sqjaviCIzR2HnTLp5EXFj_51.416695_-0.868653@1300740015", "properties": {"province": "Berkshire", "city": "Wokingham", "name": "B P Print & Design", "tags": ["printer"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Printing & Photocopies"}], "href": "http://api.simplegeo.com/1.0/features/SG_4sqjaviCIzR2HnTLp5EXFj_51.416695_-0.868653@1300740015.json", "address": "7 Zinnia Close", "owner": "simplegeo", "postcode": "RG41 3ND"}}
|
198
|
+
{"geometry": {"type": "Point", "coordinates": [-2.5210390091, 53.4893913269]}, "type": "Feature", "id": "SG_6oBZFw1mBMXENKusvaD1k6_53.489391_-2.521039@1300740015", "properties": {"province": "Lancashire", "city": "Leigh", "name": "Gibbons,J M,", "tags": ["decorator", "painter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_6oBZFw1mBMXENKusvaD1k6_53.489391_-2.521039@1300740015.json", "address": "Woodlands Ave, Pennington", "owner": "simplegeo", "postcode": "WN7 3HL"}}
|
199
|
+
{"geometry": {"type": "Point", "coordinates": [-0.2722890079, 50.9314193726]}, "type": "Feature", "id": "SG_71X0ku8OeDEzua4Gm41jIM_50.931419_-0.272289@1300740015", "properties": {"province": "West Sussex", "city": "Henfield", "name": "Preston Nomads Cricket Club", "country": "GB", "classifiers": [{"category": "Arena", "type": "Entertainment", "subcategory": "Sports Club"}], "phone": "+44 1273 857477", "href": "http://api.simplegeo.com/1.0/features/SG_71X0ku8OeDEzua4Gm41jIM_50.931419_-0.272289@1300740015.json", "address": "Clappers Lane, Fulking", "owner": "simplegeo", "postcode": "BN5 9ND"}}
|
200
|
+
{"geometry": {"type": "Point", "coordinates": [-0.8671349883, 51.4180908203]}, "type": "Feature", "id": "SG_1BQQY1lttxBvscs9uElF0O_51.418091_-0.867135@1300740015", "properties": {"province": "Berkshire", "city": "Wokingham", "name": "Fingertips Presentation Perfect", "tags": ["audio-visual"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_1BQQY1lttxBvscs9uElF0O_51.418091_-0.867135@1300740015.json", "address": "7 Larkspur Close", "owner": "simplegeo", "postcode": "RG41 3NA"}}
|
201
|
+
{"geometry": {"type": "Point", "coordinates": [-0.8674899936, 51.4178848267]}, "type": "Feature", "id": "SG_2HfwkuVd4bB6bdCiiSA9Hm_51.417885_-0.867490@1300740015", "properties": {"province": "Berkshire", "city": "Wokingham", "name": "Commercial Research Services", "tags": ["agency"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Detective & Security Services"}], "href": "http://api.simplegeo.com/1.0/features/SG_2HfwkuVd4bB6bdCiiSA9Hm_51.417885_-0.867490@1300740015.json", "address": "12 Larkspur Close", "owner": "simplegeo", "postcode": "RG41 3NA"}}
|
202
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_0xVsWVVbj7jmwQL7AVLkUT_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Bere Ferrers Social Club", "tags": ["club"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Membership Organization"}], "phone": "+44 1822 840922", "href": "http://api.simplegeo.com/1.0/features/SG_0xVsWVVbj7jmwQL7AVLkUT_50.451275_-4.170364@1300740015.json", "address": ", Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JL"}}
|
203
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_3n8ito1RULfB91idHjEk3B_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Margaret's Hairdressing", "tags": ["unisex", "hairdresser"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "href": "http://api.simplegeo.com/1.0/features/SG_3n8ito1RULfB91idHjEk3B_50.451275_-4.170364@1300740015.json", "address": "Lanterna, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JL"}}
|
204
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_7mxxh6qpGOaN6DuthwsNt0_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "The Old Plough Inn", "tags": ["pubs", "inn"], "country": "GB", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+44 1822 840358", "href": "http://api.simplegeo.com/1.0/features/SG_7mxxh6qpGOaN6DuthwsNt0_50.451275_-4.170364@1300740015.json", "address": ", Bere Ferrers Yelverton", "owner": "simplegeo", "postcode": "PL20 7JL"}}
|
205
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_3Dq4PhNthn5tYN7CcI82cl_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Adeo", "tags": ["system", "software"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+44 1822 840002", "href": "http://api.simplegeo.com/1.0/features/SG_3Dq4PhNthn5tYN7CcI82cl_50.451275_-4.170364@1300740015.json", "address": "Orland, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JL"}}
|
206
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_6PN6dpIjV5IxgK6Mq7VKVh_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Barton International Ltd.", "tags": ["consultant", "business"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+44 1822 840220", "href": "http://api.simplegeo.com/1.0/features/SG_6PN6dpIjV5IxgK6Mq7VKVh_50.451275_-4.170364@1300740015.json", "address": "Bere Barton, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JL"}}
|
207
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_0A8jNt10kPX1ckWX356ChB_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Bere Ferrers Post Office & Stores", "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Department Store"}], "phone": "+44 1822 840062", "href": "http://api.simplegeo.com/1.0/features/SG_0A8jNt10kPX1ckWX356ChB_50.451275_-4.170364@1300740015.json", "address": "Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JL"}}
|
208
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7727739811, 54.6784896851]}, "type": "Feature", "id": "SG_797ZM8QK6nAxa6sKO1A5Xj_54.678490_-1.772774@1300740015", "properties": {"province": "Durham", "city": "Bishop Auckland", "name": "Witton Le Wear Primary School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 1388 488350", "href": "http://api.simplegeo.com/1.0/features/SG_797ZM8QK6nAxa6sKO1A5Xj_54.678490_-1.772774@1300740015.json", "address": "St James Gardens, Witton Le Wear", "owner": "simplegeo", "postcode": "DL14 0BG"}}
|
209
|
+
{"geometry": {"type": "Point", "coordinates": [-4.1896491051, 50.4801559448]}, "type": "Feature", "id": "SG_6ajlvqyKkwwjYx6lzgDe2E_50.480156_-4.189649@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Martin Sampson Channon", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1822 840343", "href": "http://api.simplegeo.com/1.0/features/SG_6ajlvqyKkwwjYx6lzgDe2E_50.480156_-4.189649@1300740015.json", "address": "Well Farm, Bere Alston", "owner": "simplegeo", "postcode": "PL20 7JD"}}
|
210
|
+
{"geometry": {"type": "Point", "coordinates": [-4.1006789207, 50.5092582703]}, "type": "Feature", "id": "SG_3iZ6CDzZMUa3RK84l7tlK2_50.509258_-4.100679@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Down Farm", "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Florist"}], "phone": "+44 1822 840636", "href": "http://api.simplegeo.com/1.0/features/SG_3iZ6CDzZMUa3RK84l7tlK2_50.509258_-4.100679@1300740015.json", "address": "Down Farm", "owner": "simplegeo", "postcode": "PL20 7JD"}}
|
211
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6804939508, 54.650100708]}, "type": "Feature", "id": "SG_0Iw9lXrn7uyQ4b8wCfcjou_54.650101_-1.680494@1300740015", "properties": {"province": "Durham", "city": "Bishop Auckland", "name": "Allan,Brian,", "country": "GB", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "href": "http://api.simplegeo.com/1.0/features/SG_0Iw9lXrn7uyQ4b8wCfcjou_54.650101_-1.680494@1300740015.json", "address": "West End, Witton-le-wear", "owner": "simplegeo", "postcode": "DL14 0BJ"}}
|
212
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7798440456, 54.6758232117]}, "type": "Feature", "id": "SG_7ajELLu3BrAIc7KyOiH8r6_54.675823_-1.779844@1300740015", "properties": {"province": "Durham", "city": "Bishop Auckland", "name": "A G East", "tags": ["modification", "garage"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+44 1388 488354", "href": "http://api.simplegeo.com/1.0/features/SG_7ajELLu3BrAIc7KyOiH8r6_54.675823_-1.779844@1300740015.json", "address": "Daleside Garage, West End, Witton Le Wear", "owner": "simplegeo", "postcode": "DL14 0BL"}}
|
213
|
+
{"geometry": {"type": "Point", "coordinates": [-4.1896491051, 50.4801559448]}, "type": "Feature", "id": "SG_0o7K3Rq9Clp07EUcJbtRyB_50.480156_-4.189649@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Light Years", "tags": ["system", "music", "public", "address"], "country": "GB", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "href": "http://api.simplegeo.com/1.0/features/SG_0o7K3Rq9Clp07EUcJbtRyB_50.480156_-4.189649@1300740015.json", "address": "Bere Ferrers Road, Bere Alston", "owner": "simplegeo", "postcode": "PL20 7JA"}}
|
214
|
+
{"geometry": {"type": "Point", "coordinates": [-4.1896491051, 50.4801559448]}, "type": "Feature", "id": "SG_0652iMrjMWmwzx4TeNFVN6_50.480156_-4.189649@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "E Schuttkacker & Sons", "tags": ["mixed", "crop"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_0652iMrjMWmwzx4TeNFVN6_50.480156_-4.189649@1300740015.json", "address": "Battens Farm, Bere Alston", "owner": "simplegeo", "postcode": "PL20 7JB"}}
|
215
|
+
{"geometry": {"type": "Point", "coordinates": [-4.1896491051, 50.4801559448]}, "type": "Feature", "id": "SG_2nyxkJUOE4O9m3pQ4vqP6u_50.480156_-4.189649@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Stannary Signs", "tags": ["writer"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Signs"}], "href": "http://api.simplegeo.com/1.0/features/SG_2nyxkJUOE4O9m3pQ4vqP6u_50.480156_-4.189649@1300740015.json", "address": "Hole Road, Bere Alston", "owner": "simplegeo", "postcode": "PL20 7JB"}}
|
216
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6476399899, 53.5010185242]}, "type": "Feature", "id": "SG_3qQZRfu9qri235ZidnNpO2_53.501019_-2.647640@1300740015", "properties": {"province": "Lancashire", "city": "Wigan", "name": "Littlers Haulage", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1942 725862", "href": "http://api.simplegeo.com/1.0/features/SG_3qQZRfu9qri235ZidnNpO2_53.501019_-2.647640@1300740015.json", "address": "Brocksteads Farm, Brocksteads Rd, North Ashton", "owner": "simplegeo", "postcode": "WN4 0NR"}}
|
217
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7798440456, 54.6758232117]}, "type": "Feature", "id": "SG_3o78sI7g60dVBo1CFi2BJe_54.675823_-1.779844@1300740015", "properties": {"province": "Durham", "city": "Bishop Auckland", "name": "David Michael Adamson", "tags": ["hatchery", "others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}, {"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_3o78sI7g60dVBo1CFi2BJe_54.675823_-1.779844@1300740015.json", "address": "The Lido, Witton Le Wear", "owner": "simplegeo", "postcode": "DL14 0BP"}}
|
218
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7798440456, 54.6758232117]}, "type": "Feature", "id": "SG_3tbpK9auiRDE0EUjHCWOJI_54.675823_-1.779844@1300740015", "properties": {"province": "Durham", "city": "Bishop Auckland", "name": "J H Johnson", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1388 488796", "href": "http://api.simplegeo.com/1.0/features/SG_3tbpK9auiRDE0EUjHCWOJI_54.675823_-1.779844@1300740015.json", "address": "Marshall Grn Farm, Witton Le Wear", "owner": "simplegeo", "postcode": "DL14 0BQ"}}
|
219
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1644580364, 52.7452545166]}, "type": "Feature", "id": "SG_5FWGDz0I68HUgT7vxeH1nU_52.745255_-1.164458@1300740015", "properties": {"province": "Leicestershire", "city": "Leicester", "name": "Quorn Engineering Developments", "tags": ["car", "component"], "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Auto Supplies"}, {"category": "Sports & Exercise", "type": "Entertainment", "subcategory": "Race Track"}], "phone": "+44 1509 412317", "href": "http://api.simplegeo.com/1.0/features/SG_5FWGDz0I68HUgT7vxeH1nU_52.745255_-1.164458@1300740015.json", "address": "4 Soar Road, Quorn", "owner": "simplegeo", "postcode": "LE12 8BN"}}
|
220
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1762789488, 52.750202179]}, "type": "Feature", "id": "SG_6Smuo3npNY3PHYMQPV6Rg0_52.750202_-1.176279@1300740015", "properties": {"province": "Leicestershire", "city": "Loughborough", "name": "Soar House", "tags": ["residential", "care"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Retirement Home"}], "phone": "+44 1509 415046", "href": "http://api.simplegeo.com/1.0/features/SG_6Smuo3npNY3PHYMQPV6Rg0_52.750202_-1.176279@1300740015.json", "address": "Soar Road, Quorn", "owner": "simplegeo", "postcode": "LE12 8BN"}}
|
221
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1625319719, 52.7459754944]}, "type": "Feature", "id": "SG_2LeN0nAjiSUkrE1iToEzIb_52.745975_-1.162532@1300740015", "properties": {"province": "Leicestershire", "city": "Loughborough", "name": "Christopher John Sharp", "tags": ["builder"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_2LeN0nAjiSUkrE1iToEzIb_52.745975_-1.162532@1300740015.json", "address": "Wharf House, 25 Soar Road", "owner": "simplegeo", "postcode": "LE12 8BN"}}
|
222
|
+
{"geometry": {"type": "Point", "coordinates": [-4.0878591537, 50.4923782349]}, "type": "Feature", "id": "SG_5Efv5sF4WSVCELkxEK6xPo_50.492378_-4.087859@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Stairways Mobility", "tags": ["disability"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+44 1803 843411", "href": "http://api.simplegeo.com/1.0/features/SG_5Efv5sF4WSVCELkxEK6xPo_50.492378_-4.087859@1300740015.json", "address": "74 Steed Clo", "owner": "simplegeo", "postcode": "PL20 7JX"}}
|
223
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_6vjJvQhvvKiSKygtIbv5nN_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "website": "http://www.harp-maker.com", "name": "Tim Hampson", "tags": ["manufacturer"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Musical Instruments"}, {"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Musical Instruments"}], "phone": "+44 1822 840820", "href": "http://api.simplegeo.com/1.0/features/SG_6vjJvQhvvKiSKygtIbv5nN_50.451275_-4.170364@1300740015.json", "city": "Yelverton", "address": "Tavy Court, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JX"}}
|
224
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_5KGUvvntLvCbQxbQpfe6Tn_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "S.W.L Panda Lifts", "tags": ["repair", "lift", "-"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+44 1822 841178", "href": "http://api.simplegeo.com/1.0/features/SG_5KGUvvntLvCbQxbQpfe6Tn_50.451275_-4.170364@1300740015.json", "address": "Birlanda Vineyard, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JX"}}
|
225
|
+
{"geometry": {"type": "Point", "coordinates": [-4.0878591537, 50.4923782349]}, "type": "Feature", "id": "SG_7Q1C5m5dbtajYg0ynRDGma_50.492378_-4.087859@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Euro Lifts Ltd.", "tags": ["lift"], "country": "GB", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Construction Materials"}], "phone": "+44 1822 841178", "href": "http://api.simplegeo.com/1.0/features/SG_7Q1C5m5dbtajYg0ynRDGma_50.492378_-4.087859@1300740015.json", "address": "Birlanda Vineyard, Bere Ferriers", "owner": "simplegeo", "postcode": "PL20 7JX"}}
|
226
|
+
{"geometry": {"type": "Point", "coordinates": [-4.0878591537, 50.4923782349]}, "type": "Feature", "id": "SG_3QL1n9fbptRCYaChxmvZcm_50.492378_-4.087859@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "S W L Lift & Crane Specialists", "tags": ["lift"], "country": "GB", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Construction Materials"}], "phone": "+44 1822 840405", "href": "http://api.simplegeo.com/1.0/features/SG_3QL1n9fbptRCYaChxmvZcm_50.492378_-4.087859@1300740015.json", "address": "Birlanda Vineyard", "owner": "simplegeo", "postcode": "PL20 7JY"}}
|
227
|
+
{"geometry": {"type": "Point", "coordinates": [-4.0878591537, 50.4923782349]}, "type": "Feature", "id": "SG_5abQnZJPkno6oqCgwKmCiv_50.492378_-4.087859@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "G J Peden", "tags": ["podiatrists", "chiropodist"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Podiatrist"}], "href": "http://api.simplegeo.com/1.0/features/SG_5abQnZJPkno6oqCgwKmCiv_50.492378_-4.087859@1300740015.json", "address": "Poke Logan, Liphill Quay", "owner": "simplegeo", "postcode": "PL20 7JY"}}
|
228
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_2mc5hAbNlp2AouyOMA9PSm_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "G.S.J Searle & Partners", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1822 840337", "href": "http://api.simplegeo.com/1.0/features/SG_2mc5hAbNlp2AouyOMA9PSm_50.451275_-4.170364@1300740015.json", "address": "Stone Fm, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JY"}}
|
229
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_1I2JSbpjL15VZj9rthqrP1_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Diamond Abrasive Technology Ltd", "tags": ["stone", "cutting"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Tools & Machinery"}], "href": "http://api.simplegeo.com/1.0/features/SG_1I2JSbpjL15VZj9rthqrP1_50.451275_-4.170364@1300740015.json", "address": "Stone Farm, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JY"}}
|
230
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7777919769, 54.6771430969]}, "type": "Feature", "id": "SG_5okEZRCDaOBzE5Y41ni5Sp_54.677143_-1.777792@1300740015", "properties": {"province": "Durham", "city": "Bishop Auckland", "name": "A C Simpson & Son", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1388 488252", "href": "http://api.simplegeo.com/1.0/features/SG_5okEZRCDaOBzE5Y41ni5Sp_54.677143_-1.777792@1300740015.json", "address": "Witton-le-weir", "owner": "simplegeo", "postcode": "DL14 0BW"}}
|
231
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_4aJnXWilG1YcdaQMvDS4DQ_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "A M Stephens", "tags": ["mixed", "crop"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "phone": "+44 1822 840306", "href": "http://api.simplegeo.com/1.0/features/SG_4aJnXWilG1YcdaQMvDS4DQ_50.451275_-4.170364@1300740015.json", "address": "Newbarn Farm, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JU"}}
|
232
|
+
{"geometry": {"type": "Point", "coordinates": [-0.0275289994, 52.1020088196]}, "type": "Feature", "id": "SG_4ga8heMiCJZ6ZO2pUslm6l_52.102009_-0.027529@1300740015", "properties": {"province": "Bedfordshire", "city": "Royston", "name": "Whaddon Golf Centre", "tags": ["club", "course"], "country": "GB", "classifiers": [{"category": "Sports & Exercise", "type": "Entertainment", "subcategory": "Golf"}], "phone": "+44 1223 207325", "href": "http://api.simplegeo.com/1.0/features/SG_4ga8heMiCJZ6ZO2pUslm6l_52.102009_-0.027529@1300740015.json", "address": "Church Street, Whaddon", "owner": "simplegeo", "postcode": "SG8 5RX"}}
|
233
|
+
{"geometry": {"type": "Point", "coordinates": [-4.170363903, 50.4512748718]}, "type": "Feature", "id": "SG_0CJy4f5rPdhlqXt1wDB0Ll_50.451275_-4.170364@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "P A Dawe Florist", "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Florist"}], "phone": "+44 1822 840344", "href": "http://api.simplegeo.com/1.0/features/SG_0CJy4f5rPdhlqXt1wDB0Ll_50.451275_-4.170364@1300740015.json", "address": "1, Merton Villas, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JP"}}
|
234
|
+
{"geometry": {"type": "Point", "coordinates": [-1.6334190369, 53.6929664612]}, "type": "Feature", "id": "SG_6AswYxrekxpCtTdjtoHU2d_53.692966_-1.633419@1300740015", "properties": {"province": "West Yorkshire", "city": "Dewsbury", "name": "M B Auto Services", "tags": ["modification", "garage"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "href": "http://api.simplegeo.com/1.0/features/SG_6AswYxrekxpCtTdjtoHU2d_53.692966_-1.633419@1300740015.json", "address": "Eightlands Road", "owner": "simplegeo", "postcode": "WF13 2PF"}}
|
235
|
+
{"geometry": {"type": "Point", "coordinates": [-4.1003332138, 50.5052146912]}, "type": "Feature", "id": "SG_6wjtr0MtM0r6S1wrdRehDL_50.505215_-4.100333@1300740015", "properties": {"province": "Devon", "city": "Yelverton", "name": "Michael A P Barnes", "tags": ["plumber", "heating"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+44 1822 841410", "href": "http://api.simplegeo.com/1.0/features/SG_6wjtr0MtM0r6S1wrdRehDL_50.505215_-4.100333@1300740015.json", "address": "Trewol, Station Road, Bere Ferrers", "owner": "simplegeo", "postcode": "PL20 7JS"}}
|
236
|
+
{"geometry": {"type": "Point", "coordinates": [-3.6970889568, 51.4820785522]}, "type": "Feature", "id": "SG_3xGH0KRitjbfwkUU1iQwG4_51.482079_-3.697089@1300740015", "properties": {"province": "Bridgend", "city": "Porthcawl", "name": "J M C Ryan & Son", "tags": ["roofing", "joiner", "carpenter", "contracting"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1656 786336", "href": "http://api.simplegeo.com/1.0/features/SG_3xGH0KRitjbfwkUU1iQwG4_51.482079_-3.697089@1300740015.json", "address": "Vintin Terrace", "owner": "simplegeo", "postcode": "CF36 5LS"}}
|
237
|
+
{"geometry": {"type": "Point", "coordinates": [-1.165413022, 52.7401657104]}, "type": "Feature", "id": "SG_1SFYtuvqVBhM5vbAvX0oPP_52.740166_-1.165413@1300740015", "properties": {"province": "Leicestershire", "city": "Loughborough", "name": "Lighting Enterprises", "tags": ["consultant", "lighting", "design"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1509 414040", "href": "http://api.simplegeo.com/1.0/features/SG_1SFYtuvqVBhM5vbAvX0oPP_52.740166_-1.165413@1300740015.json", "address": "35 Paddock Close, Quorn", "owner": "simplegeo", "postcode": "LE12 8BJ"}}
|
238
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1390930414, 51.3505439758]}, "type": "Feature", "id": "SG_2ck02utVSbfqm28tjqndfg_51.350544_-1.139093@1300740015", "properties": {"province": "Berkshire", "city": "Tadley", "name": "M J B Transport Services", "tags": ["product", "centre"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Special Training"}], "phone": "+44 118 981 0146", "href": "http://api.simplegeo.com/1.0/features/SG_2ck02utVSbfqm28tjqndfg_51.350544_-1.139093@1300740015.json", "address": "12 Maple Gro", "owner": "simplegeo", "postcode": "RG26 4ND"}}
|
239
|
+
{"geometry": {"type": "Point", "coordinates": [-1.1400489807, 51.3504524231]}, "type": "Feature", "id": "SG_72sKtIgLmrM5uv7VsROKez_51.350452_-1.140049@1300740015", "properties": {"province": "Berkshire", "city": "Basingstoke", "name": "Alpha Pool Table Services", "tags": ["arcade"], "country": "GB", "classifiers": [{"category": "Recreation", "type": "Entertainment", "subcategory": "Amusement Park"}], "href": "http://api.simplegeo.com/1.0/features/SG_72sKtIgLmrM5uv7VsROKez_51.350452_-1.140049@1300740015.json", "address": "19 Maple Gro, Tadley", "owner": "simplegeo", "postcode": "RG26 4ND"}}
|
240
|
+
{"geometry": {"type": "Point", "coordinates": [1.2545729876, 52.6368713379]}, "type": "Feature", "id": "SG_3NSnRM98YLjme2SeRD9xpa_52.636871_1.254573@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "G W Cullum & Son", "tags": ["coal", "smokeless"], "country": "GB", "classifiers": [{"category": "Utilities", "type": "Services", "subcategory": "Fuel Oil & Lpg"}], "phone": "+44 1603 620047", "href": "http://api.simplegeo.com/1.0/features/SG_3NSnRM98YLjme2SeRD9xpa_52.636871_1.254573@1300740015.json", "address": "35 Tollhouse Road", "owner": "simplegeo", "postcode": "NR5 8QF"}}
|
241
|
+
{"geometry": {"type": "Point", "coordinates": [1.254578948, 52.6371116638]}, "type": "Feature", "id": "SG_301hZ2digVChHkWbgj1zbk_52.637112_1.254579@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "A.P. Joinery Assembly Services Ltd.", "tags": ["roofing"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_301hZ2digVChHkWbgj1zbk_52.637112_1.254579@1300740015.json", "address": "32a Tollhouse Road", "owner": "simplegeo", "postcode": "NR5 8QF"}}
|
242
|
+
{"geometry": {"type": "Point", "coordinates": [1.2535099983, 52.6373214722]}, "type": "Feature", "id": "SG_6incBx8t3DcA27Cz3AaT2i_52.637321_1.253510@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "Culinary Supplies", "tags": ["catering"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Kitchen Supply"}], "phone": "+44 1603 762527", "href": "http://api.simplegeo.com/1.0/features/SG_6incBx8t3DcA27Cz3AaT2i_52.637321_1.253510@1300740015.json", "address": "The Loke, Dereham Rd", "owner": "simplegeo", "postcode": "NR5 8QG"}}
|
243
|
+
{"geometry": {"type": "Point", "coordinates": [1.2535099983, 52.6373214722]}, "type": "Feature", "id": "SG_0NTh0AzPEibsOloxjWkbgF_52.637321_1.253510@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "Anglia Culinary Suppliers Ltd.", "tags": ["shop", "baker", "catering"], "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Bakery"}, {"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Kitchen Supply"}], "phone": "+44 1603 618614", "href": "http://api.simplegeo.com/1.0/features/SG_0NTh0AzPEibsOloxjWkbgF_52.637321_1.253510@1300740015.json", "address": "The Loke, Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QG"}}
|
244
|
+
{"geometry": {"type": "Point", "coordinates": [1.2482180595, 52.6048240662]}, "type": "Feature", "id": "SG_1WacOlmhBExb3aVeKtg3Vc_52.604824_1.248218@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "Abel Aerials", "tags": ["aerial", "television", "radio"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Computers & Home Electronics"}], "phone": "+44 1603 620127", "href": "http://api.simplegeo.com/1.0/features/SG_1WacOlmhBExb3aVeKtg3Vc_52.604824_1.248218@1300740015.json", "address": "The Loke", "owner": "simplegeo", "postcode": "NR5 8QG"}}
|
245
|
+
{"geometry": {"type": "Point", "coordinates": [1.2571079731, 52.6372833252]}, "type": "Feature", "id": "SG_36arkBQB1GaAbPNyjGC8qb_52.637283_1.257108@1300740015", "properties": {"province": "Norfolk", "website": "http://www.portakabin.com", "name": "Portakabin Ltd", "tags": ["portable"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Buildings"}], "phone": "+44 1603 615299", "href": "http://api.simplegeo.com/1.0/features/SG_36arkBQB1GaAbPNyjGC8qb_52.637283_1.257108@1300740015.json", "city": "Norwich", "address": "370 Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QE"}}
|
246
|
+
{"geometry": {"type": "Point", "coordinates": [1.2549799681, 52.6373634338]}, "type": "Feature", "id": "SG_7ZpCyxLzmoh1XmavBThNYn_52.637363_1.254980@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "Springfresh", "tags": ["cleaner", "upholstery"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Carpets & Floor Coverings"}], "phone": "+44 1603 613736", "href": "http://api.simplegeo.com/1.0/features/SG_7ZpCyxLzmoh1XmavBThNYn_52.637363_1.254980@1300740015.json", "address": "386 Dereham Rd", "owner": "simplegeo", "postcode": "NR5 8QE"}}
|
247
|
+
{"geometry": {"type": "Point", "coordinates": [1.2558900118, 52.6374015808]}, "type": "Feature", "id": "SG_0GLSHpHs3mktzbWaayQoKG_52.637402_1.255890@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "Kwik-Fit", "tags": ["exhaust", "absorber", "shock"], "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Auto Supplies"}], "phone": "+44 1603 766499", "href": "http://api.simplegeo.com/1.0/features/SG_0GLSHpHs3mktzbWaayQoKG_52.637402_1.255890@1300740015.json", "address": "372 Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QE"}}
|
248
|
+
{"geometry": {"type": "Point", "coordinates": [1.2383010387, 52.640045166]}, "type": "Feature", "id": "SG_15Sxl87ZgZeSDbAjpDJbit_52.640045_1.238301@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "The Gate House", "tags": ["pubs", "inn"], "country": "GB", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+44 1603 620340", "href": "http://api.simplegeo.com/1.0/features/SG_15Sxl87ZgZeSDbAjpDJbit_52.640045_1.238301@1300740015.json", "address": "Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QJ"}}
|
249
|
+
{"geometry": {"type": "Point", "coordinates": [1.2535560131, 52.6378555298]}, "type": "Feature", "id": "SG_6Mw2AnFE4HYLVL4NvPVfsD_52.637856_1.253556@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "B J Guyton", "tags": ["decorator", "painter"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Art Services"}, {"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1603 626512", "href": "http://api.simplegeo.com/1.0/features/SG_6Mw2AnFE4HYLVL4NvPVfsD_52.637856_1.253556@1300740015.json", "address": "429a Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QH"}}
|
250
|
+
{"geometry": {"type": "Point", "coordinates": [1.2543970346, 52.6378288269]}, "type": "Feature", "id": "SG_5ffAr3iR8QDv6pFJSa1gux_52.637829_1.254397@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "R R Bissmire", "tags": ["haulage", "road"], "country": "GB", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+44 1603 624503", "href": "http://api.simplegeo.com/1.0/features/SG_5ffAr3iR8QDv6pFJSa1gux_52.637829_1.254397@1300740015.json", "address": "421 Dereham Rd", "owner": "simplegeo", "postcode": "NR5 8QH"}}
|
251
|
+
{"geometry": {"type": "Point", "coordinates": [1.2515130043, 52.6379432678]}, "type": "Feature", "id": "SG_2hSgXvUe7zBzMKzDxvKw7W_52.637943_1.251513@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "J & M Track Services Ltd.", "tags": ["consultant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Employment Agencies"}], "phone": "+44 1603 615514", "href": "http://api.simplegeo.com/1.0/features/SG_2hSgXvUe7zBzMKzDxvKw7W_52.637943_1.251513@1300740015.json", "address": "445 Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QH"}}
|
252
|
+
{"geometry": {"type": "Point", "coordinates": [1.2518800497, 52.6379241943]}, "type": "Feature", "id": "SG_4Z7haNk6jK1ihnvDS0iXF6_52.637924_1.251880@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "SUNSHINE FAMILY CENTRE LTD", "tags": ["childcare"], "country": "GB", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}, {"category": "Social Services", "type": "Services", "subcategory": "Child Care"}], "phone": "+44 1603 748798", "href": "http://api.simplegeo.com/1.0/features/SG_4Z7haNk6jK1ihnvDS0iXF6_52.637924_1.251880@1300740015.json", "address": "441 Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QH"}}
|
253
|
+
{"geometry": {"type": "Point", "coordinates": [1.2498400211, 52.63804245]}, "type": "Feature", "id": "SG_2S9lCWTwkfTkKB7fzcIuHn_52.638042_1.249840@1300740015", "properties": {"province": "Norfolk", "city": "Norwich", "name": "Trade Centre Of Norwich", "tags": ["car"], "country": "GB", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Automobile Sales"}], "phone": "+44 1603 628285", "href": "http://api.simplegeo.com/1.0/features/SG_2S9lCWTwkfTkKB7fzcIuHn_52.638042_1.249840@1300740015.json", "address": "457 Dereham Road", "owner": "simplegeo", "postcode": "NR5 8QH"}}
|
254
|
+
{"geometry": {"type": "Point", "coordinates": [0.1088339984, 53.0313682556]}, "type": "Feature", "id": "SG_16jOESiRXKsoSNcTlNRymB_53.031368_0.108834@1300740015", "properties": {"province": "Lincolnshire", "city": "Boston", "name": "Sandra's", "tags": ["unisex", "hairdresser"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "href": "http://api.simplegeo.com/1.0/features/SG_16jOESiRXKsoSNcTlNRymB_53.031368_0.108834@1300740015.json", "address": "Main Road, Old Leake", "owner": "simplegeo", "postcode": "PE22 9LH"}}
|
255
|
+
{"geometry": {"type": "Point", "coordinates": [-0.1389899999, 51.5075798035]}, "type": "Feature", "id": "SG_7VXYTcdwZ5T7KB9I3wlaae_51.507580_-0.138990@1300740015", "properties": {"province": "Hampshire", "city": "West End", "name": "Harley Street Sports Clinic", "tags": ["private"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+44 20 7486 2494", "href": "http://api.simplegeo.com/1.0/features/SG_7VXYTcdwZ5T7KB9I3wlaae_51.507580_-0.138990@1300740015.json", "address": "Devonshire Hospital, 29-31 Devonshire St", "owner": "simplegeo", "postcode": "W1N 1RF"}}
|
256
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7408839464, 53.7988357544]}, "type": "Feature", "id": "SG_4E3cHgJ9Uw6pwp4ebB9V2Y_53.798836_-1.740884@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Spicer Hallfield", "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Photographic Equipment"}], "phone": "+44 1274 735786", "href": "http://api.simplegeo.com/1.0/features/SG_4E3cHgJ9Uw6pwp4ebB9V2Y_53.798836_-1.740884@1300740015.json", "address": "Rees Way, Otley Rd", "owner": "simplegeo", "postcode": "BD3 0DX"}}
|
257
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7436989546, 53.8012695312]}, "type": "Feature", "id": "SG_7hMwy3rdmpSKRP8y4ia3EB_53.801270_-1.743699@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Northgraphic", "tags": ["printers'"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Stationery & Office Supplies"}], "phone": "+44 1274 732149", "href": "http://api.simplegeo.com/1.0/features/SG_7hMwy3rdmpSKRP8y4ia3EB_53.801270_-1.743699@1300740015.json", "address": "Rees Way", "owner": "simplegeo", "postcode": "BD3 0DZ"}}
|
258
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7436989546, 53.8012695312]}, "type": "Feature", "id": "SG_31xNJ8HjUyfGeLJ4RDaUNF_53.801270_-1.743699@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Gap", "tags": ["equipment"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1274 394400", "href": "http://api.simplegeo.com/1.0/features/SG_31xNJ8HjUyfGeLJ4RDaUNF_53.801270_-1.743699@1300740015.json", "address": "Rees Way", "owner": "simplegeo", "postcode": "BD3 0DZ"}}
|
259
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7396689653, 53.8056144714]}, "type": "Feature", "id": "SG_0jL3xnqDgm09k9go709ILd_53.805614_-1.739669@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "L H Plastics Ltd", "tags": ["injection", "moulding"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Rubber & Plastics"}], "phone": "+44 1274 736330", "href": "http://api.simplegeo.com/1.0/features/SG_0jL3xnqDgm09k9go709ILd_53.805614_-1.739669@1300740015.json", "address": "Allenby House, Otley Road", "owner": "simplegeo", "postcode": "BD3 0DZ"}}
|
260
|
+
{"geometry": {"type": "Point", "coordinates": [-1.0446549654, 53.8795661926]}, "type": "Feature", "id": "SG_7BaPLjy9BB3I7LPCAXqso9_53.879566_-1.044655@1300740015", "properties": {"province": "North Yorkshire", "city": "York", "name": "Escrick C of E Primary School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 1904 728570", "href": "http://api.simplegeo.com/1.0/features/SG_7BaPLjy9BB3I7LPCAXqso9_53.879566_-1.044655@1300740015.json", "address": "Infant Department, 56 Main Street, Escrick", "owner": "simplegeo", "postcode": "YO19 6UN"}}
|
261
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7426439524, 53.802482605]}, "type": "Feature", "id": "SG_4m0IXgJ8B3467bqDN8tFRY_53.802483_-1.742644@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "POLLARD PARK HEALTH CENTRE", "tags": ["practitioners"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+44 1274 306346", "href": "http://api.simplegeo.com/1.0/features/SG_4m0IXgJ8B3467bqDN8tFRY_53.802483_-1.742644@1300740015.json", "address": "190 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DQ"}}
|
262
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7415449619, 53.8025894165]}, "type": "Feature", "id": "SG_3Z9I6suWtrOBj1aAOm1FY8_53.802589_-1.741545@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "St. Augustine's C of E First School", "tags": ["local", "authority"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "href": "http://api.simplegeo.com/1.0/features/SG_3Z9I6suWtrOBj1aAOm1FY8_53.802589_-1.741545@1300740015.json", "address": "St Augustines Terrace", "owner": "simplegeo", "postcode": "BD3 0DN"}}
|
263
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7436000109, 53.8003387451]}, "type": "Feature", "id": "SG_7KKKUWwDyt3zCeMKvMqPld_53.800339_-1.743600@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Clissold Holdings Ltd.", "tags": ["clothing", "fabric", "holding", "activity"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Clothing, Apparel, & Fashions"}, {"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+44 1274 721455", "href": "http://api.simplegeo.com/1.0/features/SG_7KKKUWwDyt3zCeMKvMqPld_53.800339_-1.743600@1300740015.json", "address": "Oldgate Mill, North Wing, Otley Road", "owner": "simplegeo", "postcode": "BD3 0DH"}}
|
264
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7426439524, 53.802482605]}, "type": "Feature", "id": "SG_2lTqPCaTySxjHKaapxgkX7_53.802483_-1.742644@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "TORBRON LTD", "tags": ["pharmacist", "dispensing", "chemist"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Pharmacy"}], "phone": "+44 1274 729170", "href": "http://api.simplegeo.com/1.0/features/SG_2lTqPCaTySxjHKaapxgkX7_53.802483_-1.742644@1300740015.json", "address": "208 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DJ"}}
|
265
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7432750463, 53.7977752686]}, "type": "Feature", "id": "SG_7ZRv7ytgIZ4CiXOXaYS9tZ_53.797775_-1.743275@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Azams Bargain Corner", "tags": ["shop", "second-hand"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Used Merchandise"}], "phone": "+44 1274 390449", "href": "http://api.simplegeo.com/1.0/features/SG_7ZRv7ytgIZ4CiXOXaYS9tZ_53.797775_-1.743275@1300740015.json", "address": "18 Otley Rd", "owner": "simplegeo", "postcode": "BD3 0DD"}}
|
266
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7429610491, 53.7984428406]}, "type": "Feature", "id": "SG_1P93UQAV2TfYS9MOlc10EH_53.798443_-1.742961@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Patel's Newsagents", "tags": ["newsagent"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "News"}], "href": "http://api.simplegeo.com/1.0/features/SG_1P93UQAV2TfYS9MOlc10EH_53.798443_-1.742961@1300740015.json", "address": "38 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DD"}}
|
267
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7429920435, 53.798374176]}, "type": "Feature", "id": "SG_7PpjZmSCNA25WQY5VNLDmG_53.798374_-1.742992@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Otley Road Fisheries", "tags": ["angling"], "country": "GB", "classifiers": [{"category": "Recreation", "type": "Entertainment", "subcategory": "Fishing"}], "phone": "+44 1274 307919", "href": "http://api.simplegeo.com/1.0/features/SG_7PpjZmSCNA25WQY5VNLDmG_53.798374_-1.742992@1300740015.json", "address": "36 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DD"}}
|
268
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7432440519, 53.7978439331]}, "type": "Feature", "id": "SG_0f12N0zahiGFeVu03FmYTg_53.797844_-1.743244@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Andrea Wilson", "tags": ["unisex", "hairdresser"], "country": "GB", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "href": "http://api.simplegeo.com/1.0/features/SG_0f12N0zahiGFeVu03FmYTg_53.797844_-1.743244@1300740015.json", "address": "20 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DD"}}
|
269
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7430239916, 53.7983093262]}, "type": "Feature", "id": "SG_0lfZFHLxSbMlXopn4NmpbA_53.798309_-1.743024@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Wine & Dine Grocers", "country": "GB", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Groceries & Convenience Stores"}], "phone": "+44 1274 775299", "href": "http://api.simplegeo.com/1.0/features/SG_0lfZFHLxSbMlXopn4NmpbA_53.798309_-1.743024@1300740015.json", "address": "34 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DD"}}
|
270
|
+
{"geometry": {"type": "Point", "coordinates": [-1.7434949875, 53.7973098755]}, "type": "Feature", "id": "SG_6ekQIWvaznXzpLGX802E2k_53.797310_-1.743495@1300740015", "properties": {"province": "West Yorkshire", "city": "Bradford", "name": "Forshaw's Opticians", "tags": ["ophthalmic"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Optometrist"}, {"category": "Shopping", "type": "Retail Goods", "subcategory": "Optician"}], "phone": "+44 1274 728523", "href": "http://api.simplegeo.com/1.0/features/SG_6ekQIWvaznXzpLGX802E2k_53.797310_-1.743495@1300740015.json", "address": "4 Otley Road", "owner": "simplegeo", "postcode": "BD3 0DA"}}
|
271
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3191269934, 51.29870224]}, "type": "Feature", "id": "SG_7XxaVr7XHBwl9Yl2PoRVfw_51.298702_-0.319127@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Drain Doctor Plumbing", "tags": ["heating"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+44 1372 360838", "href": "http://api.simplegeo.com/1.0/features/SG_7XxaVr7XHBwl9Yl2PoRVfw_51.298702_-0.319127@1300740015.json", "address": "5 Homelands", "owner": "simplegeo", "postcode": "KT22 8SU"}}
|
272
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3194350004, 51.2985038757]}, "type": "Feature", "id": "SG_3p7AIsuQDPuw7Z5GZNCgSo_51.298504_-0.319435@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Eastway Electrical Services", "tags": ["engineer", "electrician", "contractor"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}, {"category": "Building & Trades", "type": "Services", "subcategory": "Electrical"}], "phone": "+44 1372 372508", "href": "http://api.simplegeo.com/1.0/features/SG_3p7AIsuQDPuw7Z5GZNCgSo_51.298504_-0.319435@1300740015.json", "address": "17 Homelands", "owner": "simplegeo", "postcode": "KT22 8SU"}}
|
273
|
+
{"geometry": {"type": "Point", "coordinates": [-0.329418987, 51.2963600159]}, "type": "Feature", "id": "SG_4r0ZmEFuV2aVmVAga9maUz_51.296360_-0.329419@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "United Reformed Church", "country": "GB", "classifiers": [{"category": "Place Of Worship", "type": "Public Place", "subcategory": ""}], "phone": "+44 1372 373118", "href": "http://api.simplegeo.com/1.0/features/SG_4r0ZmEFuV2aVmVAga9maUz_51.296360_-0.329419@1300740015.json", "address": "Epdom Rd", "owner": "simplegeo", "postcode": "KT22 8ST"}}
|
274
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3188509941, 51.2981491089]}, "type": "Feature", "id": "SG_58SfrdfeMwxqEYnM2sdvOj_51.298149_-0.318851@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Oversley Nursing Home The", "tags": ["home"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Nursing And Care Facility"}], "phone": "+44 1372 373135", "href": "http://api.simplegeo.com/1.0/features/SG_58SfrdfeMwxqEYnM2sdvOj_51.298149_-0.318851@1300740015.json", "address": "24 Epsom Rd", "owner": "simplegeo", "postcode": "KT22 8SW"}}
|
275
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6574440002, 56.7330589294]}, "type": "Feature", "id": "SG_0UtLGVjkKQxJfsfTjtrb9R_56.733059_-2.657444@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "The Royal British Legion Scotland", "tags": ["club"], "country": "GB", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Membership Organization"}], "phone": "+44 1356 622562", "href": "http://api.simplegeo.com/1.0/features/SG_0UtLGVjkKQxJfsfTjtrb9R_56.733059_-2.657444@1300740015.json", "address": "Bank Street", "owner": "simplegeo", "postcode": "DD9 6AX"}}
|
276
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3173930049, 51.2984085083]}, "type": "Feature", "id": "SG_3U4mkWtbQKlP5spVUe83ot_51.298409_-0.317393@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "St. John's School", "tags": ["independent", "preparatory"], "country": "GB", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+44 1372 372021", "href": "http://api.simplegeo.com/1.0/features/SG_3U4mkWtbQKlP5spVUe83ot_51.298409_-0.317393@1300740015.json", "address": "Epsom Rd", "owner": "simplegeo", "postcode": "KT22 8SP"}}
|
277
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6597790718, 56.7349700928]}, "type": "Feature", "id": "SG_0iIfHEffKIhhquSzoIDJhG_56.734970_-2.659779@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "D F & A Collie", "tags": ["modification", "garage"], "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+44 1356 622818", "href": "http://api.simplegeo.com/1.0/features/SG_0iIfHEffKIhhquSzoIDJhG_56.734970_-2.659779@1300740015.json", "address": "59 Clerk Street", "owner": "simplegeo", "postcode": "DD9 6AZ"}}
|
278
|
+
{"geometry": {"type": "Point", "coordinates": [-2.1257560253, 53.2556686401]}, "type": "Feature", "id": "SG_30mnxzOC9mzdRYZOM5wu0o_53.255669_-2.125756@1300740015", "properties": {"province": "Cheshire", "city": "Macclesfield", "name": "R A Rush", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "phone": "+44 1260 224358", "href": "http://api.simplegeo.com/1.0/features/SG_30mnxzOC9mzdRYZOM5wu0o_53.255669_-2.125756@1300740015.json", "address": "The Golden Cross, Pexhill Rd", "owner": "simplegeo", "postcode": "SK11 9JP"}}
|
279
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2335369587, 53.2364387512]}, "type": "Feature", "id": "SG_2kRjR3Xbiua8Ez58gW04rt_53.236439_-2.233537@1300740015", "properties": {"province": "Cheshire", "city": "Macclesfield", "name": "R Kennerley", "tags": ["others"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Livestock Farm"}], "href": "http://api.simplegeo.com/1.0/features/SG_2kRjR3Xbiua8Ez58gW04rt_53.236439_-2.233537@1300740015.json", "address": "Siddington Hall Farm, Pexhill Road, Siddington", "owner": "simplegeo", "postcode": "SK11 9JP"}}
|
280
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2335369587, 53.2364387512]}, "type": "Feature", "id": "SG_633BTSU2NTtLnlpTkW1jJ0_53.236439_-2.233537@1300740015", "properties": {"province": "Cheshire", "city": "Macclesfield", "name": "The Sloane Group", "tags": ["shopfitters"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "phone": "+44 1260 292500", "href": "http://api.simplegeo.com/1.0/features/SG_633BTSU2NTtLnlpTkW1jJ0_53.236439_-2.233537@1300740015.json", "address": "The Old Corn Mill, Congleton Rd, Siddington", "owner": "simplegeo", "postcode": "SK11 9JR"}}
|
281
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2335369587, 53.2364387512]}, "type": "Feature", "id": "SG_06tQArc9uT9ogMCjV0BQJY_53.236439_-2.233537@1300740015", "properties": {"province": "Cheshire", "city": "Macclesfield", "name": "Kitchen Crafts & Furniture", "tags": ["furnishers", "ware", "planner"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Home Furnishings"}, {"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Kitchen Supply"}], "href": "http://api.simplegeo.com/1.0/features/SG_06tQArc9uT9ogMCjV0BQJY_53.236439_-2.233537@1300740015.json", "address": "Unit 1 Redesmere Farm, Congleton Road, Siddington", "owner": "simplegeo", "postcode": "SK11 9JR"}}
|
282
|
+
{"geometry": {"type": "Point", "coordinates": [-2.7545280457, 56.7332725525]}, "type": "Feature", "id": "SG_39QKb54Gncx2uSTwWTZrhX_56.733273_-2.754528@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "Stephen V Tallett", "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Dentist"}], "phone": "+44 1356 622028", "href": "http://api.simplegeo.com/1.0/features/SG_39QKb54Gncx2uSTwWTZrhX_56.733273_-2.754528@1300740015.json", "address": "55 Southesk St", "owner": "simplegeo", "postcode": "DD9 6AW"}}
|
283
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6544530392, 56.7316131592]}, "type": "Feature", "id": "SG_5BtSo5lQqBj941SfAlGm7d_56.731613_-2.654453@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "James S Hawke", "tags": ["decorator", "painter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+44 1356 622965", "href": "http://api.simplegeo.com/1.0/features/SG_5BtSo5lQqBj941SfAlGm7d_56.731613_-2.654453@1300740015.json", "address": "49a Southesk Street", "owner": "simplegeo", "postcode": "DD9 6AW"}}
|
284
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3174099922, 51.2985420227]}, "type": "Feature", "id": "SG_7lA0WCekko3nDsCjdhOy5n_51.298542_-0.317410@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "The Ellen Elizabeth Nursing Home", "tags": ["home"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Nursing And Care Facility"}], "phone": "+44 1372 377368", "href": "http://api.simplegeo.com/1.0/features/SG_7lA0WCekko3nDsCjdhOy5n_51.298542_-0.317410@1300740015.json", "address": "21 Epsom Rd", "owner": "simplegeo", "postcode": "KT22 8SY"}}
|
285
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6815040112, 56.7536048889]}, "type": "Feature", "id": "SG_69v2JCCZWDonwANyE71SX0_56.753605_-2.681504@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "Charles B Edward", "tags": ["joiner", "carpenter"], "country": "GB", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "href": "http://api.simplegeo.com/1.0/features/SG_69v2JCCZWDonwANyE71SX0_56.753605_-2.681504@1300740015.json", "address": "63/65 Southwest Street, Southesk", "owner": "simplegeo", "postcode": "DD9 6AQ"}}
|
286
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6572759151, 56.7334823608]}, "type": "Feature", "id": "SG_14WzhZh3IRqpOsqYpsR8dE_56.733482_-2.657276@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "Business Computers & Communications Ltd.", "tags": ["consultant"], "country": "GB", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+44 1356 623456", "href": "http://api.simplegeo.com/1.0/features/SG_14WzhZh3IRqpOsqYpsR8dE_56.733482_-2.657276@1300740015.json", "address": "23 Panmure Street", "owner": "simplegeo", "postcode": "DD9 6AR"}}
|
287
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6567790508, 56.7335395813]}, "type": "Feature", "id": "SG_3stM8uw0RykYje7eGdr3Aj_56.733540_-2.656779@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "New Friends Nursery", "tags": ["creche"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Nursery"}, {"category": "Social Services", "type": "Services", "subcategory": "Child Care"}], "phone": "+44 1356 626006", "href": "http://api.simplegeo.com/1.0/features/SG_3stM8uw0RykYje7eGdr3Aj_56.733540_-2.656779@1300740015.json", "address": "27a Panmure Street", "owner": "simplegeo", "postcode": "DD9 6AR"}}
|
288
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6583070755, 56.7329177856]}, "type": "Feature", "id": "SG_1eTzRDl6jheJyyqpVnXwvI_56.732918_-2.658307@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "Allen Marshall Driving Tuition", "country": "GB", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Driving School"}], "phone": "+44 1356 624132", "href": "http://api.simplegeo.com/1.0/features/SG_1eTzRDl6jheJyyqpVnXwvI_56.732918_-2.658307@1300740015.json", "address": "9 Panmure Street", "owner": "simplegeo", "postcode": "DD9 6AR"}}
|
289
|
+
{"geometry": {"type": "Point", "coordinates": [-2.6815040112, 56.7536048889]}, "type": "Feature", "id": "SG_3L7XbMvLtmMqnIgg9SUZFJ_56.753605_-2.681504@1300740015", "properties": {"province": "Aberdeenshire", "city": "Brechin", "name": "Angus Classic Interiors", "tags": ["soft"], "country": "GB", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Home Furnishings"}], "href": "http://api.simplegeo.com/1.0/features/SG_3L7XbMvLtmMqnIgg9SUZFJ_56.753605_-2.681504@1300740015.json", "address": "The Old Church, Panmure Street", "owner": "simplegeo", "postcode": "DD9 6AR"}}
|
290
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2335369587, 53.2364387512]}, "type": "Feature", "id": "SG_71ckESYjjTfG3LWT0qvCA0_53.236439_-2.233537@1300740015", "properties": {"province": "Cheshire", "city": "Macclesfield", "name": "Lightec Sound & Light", "tags": ["firework", "stockist"], "country": "GB", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Investment Brokerage"}], "phone": "+44 1260 224570", "href": "http://api.simplegeo.com/1.0/features/SG_71ckESYjjTfG3LWT0qvCA0_53.236439_-2.233537@1300740015.json", "address": "The Coach House, Henshaw Lane, Siddington", "owner": "simplegeo", "postcode": "SK11 9JW"}}
|
291
|
+
{"geometry": {"type": "Point", "coordinates": [-2.2335369587, 53.2364387512]}, "type": "Feature", "id": "SG_44IGaoSGwEtuOlI4J4Q2DS_53.236439_-2.233537@1300740015", "properties": {"province": "Cheshire", "city": "Macclesfield", "name": "D & B Royle", "tags": ["mixed", "crop"], "country": "GB", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "phone": "+44 1260 224238", "href": "http://api.simplegeo.com/1.0/features/SG_44IGaoSGwEtuOlI4J4Q2DS_53.236439_-2.233537@1300740015.json", "address": "Henshaw Hall Farm, Henshaw Lane, Siddington", "owner": "simplegeo", "postcode": "SK11 9JW"}}
|
292
|
+
{"geometry": {"type": "Point", "coordinates": [-0.329418987, 51.2963600159]}, "type": "Feature", "id": "SG_5YX8bE9QTxGMGMsYjfXZPF_51.296360_-0.329419@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Proud Miss Trudi", "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Dentist"}], "phone": "+44 1372 372560", "href": "http://api.simplegeo.com/1.0/features/SG_5YX8bE9QTxGMGMsYjfXZPF_51.296360_-0.329419@1300740015.json", "address": "St Johns Villa, St Johns Road", "owner": "simplegeo", "postcode": "KT22 8SE"}}
|
293
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3214139938, 51.2958679199]}, "type": "Feature", "id": "SG_3OiXvoJputC5sRcOYYjt8D_51.295868_-0.321414@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Lionheart Physiotherapy & Sports Injury Clinic", "tags": ["physiotherapist"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Health Practitioner"}], "phone": "+44 1372 374612", "href": "http://api.simplegeo.com/1.0/features/SG_3OiXvoJputC5sRcOYYjt8D_51.295868_-0.321414@1300740015.json", "address": "16 St Johns Road", "owner": "simplegeo", "postcode": "KT22 8SE"}}
|
294
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3217079937, 51.2960739136]}, "type": "Feature", "id": "SG_3MhYEnrtIspdvNozGKbQw1_51.296074_-0.321708@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Office Equipment Services", "tags": ["equipment"], "country": "GB", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Stationery & Office Supplies"}], "phone": "+44 1372 363667", "href": "http://api.simplegeo.com/1.0/features/SG_3MhYEnrtIspdvNozGKbQw1_51.296074_-0.321708@1300740015.json", "address": "12 St Johns Road", "owner": "simplegeo", "postcode": "KT22 8SE"}}
|
295
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3209100068, 51.2959213257]}, "type": "Feature", "id": "SG_70F6fGdu9DSTBFQO5b4cr7_51.295921_-0.320910@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Abard Architect", "country": "GB", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Architect"}], "phone": "+44 1372 377488", "href": "http://api.simplegeo.com/1.0/features/SG_70F6fGdu9DSTBFQO5b4cr7_51.295921_-0.320910@1300740015.json", "address": "35 St Johns Road", "owner": "simplegeo", "postcode": "KT22 8SE"}}
|
296
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3147880137, 51.2926483154]}, "type": "Feature", "id": "SG_193NQvMskVZWihqXIPs97p_51.292648_-0.314788@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Surrey Heartlands Nhs Trust", "tags": ["nh", "local"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}, {"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+44 1372 374555", "href": "http://api.simplegeo.com/1.0/features/SG_193NQvMskVZWihqXIPs97p_51.292648_-0.314788@1300740015.json", "address": "Leatherhead Clinic, Poplar Rd", "owner": "simplegeo", "postcode": "KT22 8SD"}}
|
297
|
+
{"geometry": {"type": "Point", "coordinates": [-0.329418987, 51.2963600159]}, "type": "Feature", "id": "SG_25ERuYjUdTwdW22CJcDrQ8_51.296360_-0.329419@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Leatherhead Hospital", "tags": ["nh"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+44 1372 362845", "href": "http://api.simplegeo.com/1.0/features/SG_25ERuYjUdTwdW22CJcDrQ8_51.296360_-0.329419@1300740015.json", "address": "Genito Urinary Medicine, Poplar Rd", "owner": "simplegeo", "postcode": "KT22 8SD"}}
|
298
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3147880137, 51.2926483154]}, "type": "Feature", "id": "SG_4NMHuuJXcbDJ53jZxvFIK0_51.292648_-0.314788@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "GUM Clinic", "tags": ["private"], "country": "GB", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+44 1372 362845", "href": "http://api.simplegeo.com/1.0/features/SG_4NMHuuJXcbDJ53jZxvFIK0_51.292648_-0.314788@1300740015.json", "address": "Leatherhead Hospital, Poplar Rd", "owner": "simplegeo", "postcode": "KT22 8SD"}}
|
299
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3239429891, 51.294593811]}, "type": "Feature", "id": "SG_0S5F5mt5G5j6QJVcxhurSH_51.294594_-0.323943@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "S D R Cleaning Services", "tags": ["domestic", "cleaning"], "country": "GB", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Adult Care"}], "phone": "+44 1372 378826", "href": "http://api.simplegeo.com/1.0/features/SG_0S5F5mt5G5j6QJVcxhurSH_51.294594_-0.323943@1300740015.json", "address": "39 Poplar Rd", "owner": "simplegeo", "postcode": "KT22 8SF"}}
|
300
|
+
{"geometry": {"type": "Point", "coordinates": [-0.3257269859, 51.2936210632]}, "type": "Feature", "id": "SG_47WOORVbrYdxzXxHOHSLUJ_51.293621_-0.325727@1300740015", "properties": {"province": "Surrey", "city": "Leatherhead", "name": "Innovate Design & Build", "tags": ["double", "glazing"], "country": "GB", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Petroleum Products"}], "phone": "+44 1372 362828", "href": "http://api.simplegeo.com/1.0/features/SG_47WOORVbrYdxzXxHOHSLUJ_51.293621_-0.325727@1300740015.json", "address": "5b Poplar Rd", "owner": "simplegeo", "postcode": "KT22 8SF"}}
|
@@ -0,0 +1,300 @@
|
|
1
|
+
{"geometry": {"type": "Point", "coordinates": [-149.879187, 61.215592]}, "type": "Feature", "id": "SG_5h4O7BwMqHSuNjT94X0ltD_61.215592_-149.879187@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Men & Women Ctr", "tags": ["mental"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Hospital"}], "phone": "+1 907 272 4822", "href": "http://api.simplegeo.com/1.0/features/SG_5h4O7BwMqHSuNjT94X0ltD_61.215592_-149.879187@1293731153.json", "address": "600 Cordova St", "owner": "simplegeo", "postcode": "99501"}}
|
2
|
+
{"geometry": {"type": "Point", "coordinates": [-149.86541, 61.207108]}, "type": "Feature", "id": "SG_400BASBiTiWaBYOifiDSEd_61.207108_-149.865410@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Moondog Visions", "tags": ["vitamin"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Specialty"}], "phone": "+1 907 272 3373", "href": "http://api.simplegeo.com/1.0/features/SG_400BASBiTiWaBYOifiDSEd_61.207108_-149.865410@1293731153.json", "address": "940 Tyonek Dr", "owner": "simplegeo", "postcode": "99501"}}
|
3
|
+
{"geometry": {"type": "Point", "coordinates": [-151.288153, 60.661282]}, "type": "Feature", "id": "SG_1JGeYKhTIsi9d3jKtJ3YFg_60.661282_-151.288153@1293731153", "properties": {"province": "AK", "city": "Kenai", "name": "Polarbytes", "tags": ["repair"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+1 907 776 7613", "href": "http://api.simplegeo.com/1.0/features/SG_1JGeYKhTIsi9d3jKtJ3YFg_60.661282_-151.288153@1293731153.json", "address": "47189 Sherwood Cir", "owner": "simplegeo", "postcode": "99611"}}
|
4
|
+
{"geometry": {"type": "Point", "coordinates": [-149.798392, 61.180905]}, "type": "Feature", "id": "SG_4BKrlFeMqVxtceqcrHv9Uu_61.180905_-149.798392@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Last Frontier Restaurant", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 561 3433", "href": "http://api.simplegeo.com/1.0/features/SG_4BKrlFeMqVxtceqcrHv9Uu_61.180905_-149.798392@1293731153.json", "address": "4451 E Tudor Rd", "owner": "simplegeo", "postcode": "99507"}}
|
5
|
+
{"geometry": {"type": "Point", "coordinates": [-134.585427, 58.375872]}, "type": "Feature", "id": "SG_6BlvbU1G2Kl4v7toPI1bBo_58.375872_-134.585427@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "TAKU Reel Repair", "tags": ["tackle", "parts", "fishing"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Bicycles & Sporting Goods"}], "phone": "+1 907 789 2448", "href": "http://api.simplegeo.com/1.0/features/SG_6BlvbU1G2Kl4v7toPI1bBo_58.375872_-134.585427@1293731153.json", "address": "9150 Skywood Ln", "owner": "simplegeo", "postcode": "99801"}}
|
6
|
+
{"geometry": {"type": "Point", "coordinates": [-149.858773, 61.105785]}, "type": "Feature", "id": "SG_6Et7aNwDrg5kQXOndbnUfl_61.105785_-149.858773@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Alaska Winter Gardens", "tags": ["food", "covered", "crop"], "country": "US", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Farm"}], "phone": "+1 907 349 3547", "href": "http://api.simplegeo.com/1.0/features/SG_6Et7aNwDrg5kQXOndbnUfl_61.105785_-149.858773@1293731153.json", "address": "12801 Old Seward Hwy", "owner": "simplegeo", "postcode": "99515"}}
|
7
|
+
{"geometry": {"type": "Point", "coordinates": [-147.86327, 64.924596]}, "type": "Feature", "id": "SG_6ht4FPF7cBwCb6eOsm0xci_64.924596_-147.863270@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Goldstream Valley Bapt Chapel", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 455 6880", "href": "http://api.simplegeo.com/1.0/features/SG_6ht4FPF7cBwCb6eOsm0xci_64.924596_-147.863270@1293731153.json", "address": "1483 Ballaine Rd", "owner": "simplegeo", "postcode": "99709"}}
|
8
|
+
{"geometry": {"type": "Point", "coordinates": [-149.76731, 61.216332]}, "type": "Feature", "id": "SG_4o0pIfYdM7HKqHN9L7piFr_61.216332_-149.767310@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Wellness Unlimited", "tags": ["therapist", "massage"], "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": ""}], "phone": "+1 907 332 4992", "href": "http://api.simplegeo.com/1.0/features/SG_4o0pIfYdM7HKqHN9L7piFr_61.216332_-149.767310@1293731153.json", "address": "6048 E 6th Ave", "owner": "simplegeo", "postcode": "99504"}}
|
9
|
+
{"geometry": {"type": "Point", "coordinates": [-147.852315, 64.808094]}, "type": "Feature", "id": "SG_76GJyRQ2FGhil3Xg0opvs9_64.808094_-147.852315@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "US Airway Facilities Sector", "tags": ["federal"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 474 0525", "href": "http://api.simplegeo.com/1.0/features/SG_76GJyRQ2FGhil3Xg0opvs9_64.808094_-147.852315@1293731153.json", "address": "3800 University Ave S", "owner": "simplegeo", "postcode": "99709"}}
|
10
|
+
{"geometry": {"type": "Point", "coordinates": [-149.814593, 61.143367]}, "type": "Feature", "id": "SG_3DYNsudOPjIwweU479kE6k_61.143367_-149.814593@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Herablife Distributor", "tags": ["control", "weight"], "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": ""}], "phone": "+1 907 522 7663", "href": "http://api.simplegeo.com/1.0/features/SG_3DYNsudOPjIwweU479kE6k_61.143367_-149.814593@1293731153.json", "address": "8400 Raintree Cir", "owner": "simplegeo", "postcode": "99507"}}
|
11
|
+
{"geometry": {"type": "Point", "coordinates": [-149.487828, 61.585787]}, "type": "Feature", "id": "SG_4OHHlUsyzcuM02Ph9l6PCZ_61.585787_-149.487828@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Berg Roofing", "tags": ["roofing", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 373 2374", "href": "http://api.simplegeo.com/1.0/features/SG_4OHHlUsyzcuM02Ph9l6PCZ_61.585787_-149.487828@1293731153.json", "address": "1660 W Vaunda Ave", "owner": "simplegeo", "postcode": "99654"}}
|
12
|
+
{"geometry": {"type": "Point", "coordinates": [-149.768351, 61.197112]}, "type": "Feature", "id": "SG_5T8dfyajmDccazMekeevJu_61.197112_-149.768351@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "S&J Publishing Ink", "tags": ["publishing"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Printing"}], "phone": "+1 907 337 1664", "href": "http://api.simplegeo.com/1.0/features/SG_5T8dfyajmDccazMekeevJu_61.197112_-149.768351@1293731153.json", "address": "2534 Kilkenny Cir", "owner": "simplegeo", "postcode": "99504"}}
|
13
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897959, 61.188411]}, "type": "Feature", "id": "SG_7ISyjugRGLuFu8wKuYL2Lf_61.188411_-149.897959@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Fireweed Tuxedo", "tags": ["wear", "formal"], "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": ""}], "phone": "+1 907 279 9825", "href": "http://api.simplegeo.com/1.0/features/SG_7ISyjugRGLuFu8wKuYL2Lf_61.188411_-149.897959@1293731153.json", "address": "3400 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
14
|
+
{"geometry": {"type": "Point", "coordinates": [-149.889478, 61.207115]}, "type": "Feature", "id": "SG_3dgaUfxWp6pIXvX7ytfUsq_61.207115_-149.889478@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Trust Consultants Inc", "tags": ["consultant", "business"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 277 9312", "href": "http://api.simplegeo.com/1.0/features/SG_3dgaUfxWp6pIXvX7ytfUsq_61.207115_-149.889478@1293731153.json", "address": "1518 D St", "owner": "simplegeo", "postcode": "99501"}}
|
15
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897845, 61.204975]}, "type": "Feature", "id": "SG_2mHpu7uAo5HjIjdhhuApqG_61.204975_-149.897845@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "James D Babb Law Offices", "tags": ["attorney"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+1 907 264 6648", "href": "http://api.simplegeo.com/1.0/features/SG_2mHpu7uAo5HjIjdhhuApqG_61.204975_-149.897845@1293731153.json", "address": "1818 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
16
|
+
{"geometry": {"type": "Point", "coordinates": [-151.059408, 60.485374]}, "type": "Feature", "id": "SG_0y1GFO0udp3b9ecyPfJDO9_60.485374_-151.059408@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Malfunction Junction Gifts", "tags": ["shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 262 3199", "href": "http://api.simplegeo.com/1.0/features/SG_0y1GFO0udp3b9ecyPfJDO9_60.485374_-151.059408@1293731153.json", "address": "113 Smiths Way", "owner": "simplegeo", "postcode": "99669"}}
|
17
|
+
{"geometry": {"type": "Point", "coordinates": [-149.863808, 61.118281]}, "type": "Feature", "id": "SG_6xEJVtBLK0Czw10mP4I2wx_61.118281_-149.863808@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Margals Associates Ceramics", "tags": ["product", "ceramic"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Hobbies, Toys, & Games"}], "phone": "+1 907 344 8819", "href": "http://api.simplegeo.com/1.0/features/SG_6xEJVtBLK0Czw10mP4I2wx_61.118281_-149.863808@1293731153.json", "address": "11211 Old Seward Hwy", "owner": "simplegeo", "postcode": "99515"}}
|
18
|
+
{"geometry": {"type": "Point", "coordinates": [-151.392837, 59.687099]}, "type": "Feature", "id": "SG_2UKr6v3cgG0p3SkkBxu6Tu_59.687099_-151.392837@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Coastal Refrigeration Mfg", "tags": ["equipment", "refrigeration"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Tools & Machinery"}], "phone": "+1 907 235 7098", "href": "http://api.simplegeo.com/1.0/features/SG_2UKr6v3cgG0p3SkkBxu6Tu_59.687099_-151.392837@1293731153.json", "address": "40390 Grewingk Cir", "owner": "simplegeo", "postcode": "99603"}}
|
19
|
+
{"geometry": {"type": "Point", "coordinates": [-147.718066, 64.836155]}, "type": "Feature", "id": "SG_5wHXgazEEvQ64Mseq0t5IA_64.836155_-147.718066@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Thrifty Liquor Store", "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Liquor & Beverages"}], "phone": "+1 907 452 3532", "href": "http://api.simplegeo.com/1.0/features/SG_5wHXgazEEvQ64Mseq0t5IA_64.836155_-147.718066@1293731153.json", "address": "1410 S Cushman St", "owner": "simplegeo", "postcode": "99701"}}
|
20
|
+
{"geometry": {"type": "Point", "coordinates": [-149.907309, 61.213696]}, "type": "Feature", "id": "SG_7PSg6Bzfiv1CWeGp6L1rj4_61.213696_-149.907309@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Una S Gandbhir", "tags": ["attorney"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+1 907 258 7333", "href": "http://api.simplegeo.com/1.0/features/SG_7PSg6Bzfiv1CWeGp6L1rj4_61.213696_-149.907309@1293731153.json", "address": "1227 W 9th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
21
|
+
{"geometry": {"type": "Point", "coordinates": [-149.866831, 61.144657]}, "type": "Feature", "id": "SG_7g9Ix0FNzZuj9I4EzCiLQQ_61.144657_-149.866831@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Alaska Power & Telephone Co", "tags": ["company"], "country": "US", "classifiers": [{"category": "Utilities", "type": "Services", "subcategory": "Telephone"}], "phone": "+1 907 563 2199", "href": "http://api.simplegeo.com/1.0/features/SG_7g9Ix0FNzZuj9I4EzCiLQQ_61.144657_-149.866831@1293731153.json", "address": "800 E Dimond Blvd", "owner": "simplegeo", "postcode": "99515"}}
|
22
|
+
{"geometry": {"type": "Point", "coordinates": [-134.4068, 58.299562]}, "type": "Feature", "id": "SG_4uOpuBTZbam8LjXjVCdO3c_58.299562_-134.406800@1293731153", "properties": {"province": "AK", "website": "www.juneausportfishing.com", "name": "Last Chance Tours", "tags": ["tours", "promoter"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Travel Agent"}], "phone": "+1 907 586 1891", "href": "http://api.simplegeo.com/1.0/features/SG_4uOpuBTZbam8LjXjVCdO3c_58.299562_-134.406800@1293731153.json", "city": "Juneau", "address": "2 Marine Way", "owner": "simplegeo", "postcode": "99801"}}
|
23
|
+
{"geometry": {"type": "Point", "coordinates": [-152.406612, 57.79101]}, "type": "Feature", "id": "SG_0lltxdFEpPMvkYnwoB68Se_57.791010_-152.406612@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "Shelikof Lodge Restaurant", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 486 4300", "href": "http://api.simplegeo.com/1.0/features/SG_0lltxdFEpPMvkYnwoB68Se_57.791010_-152.406612@1293731153.json", "address": "211 Thorsheim St", "owner": "simplegeo", "postcode": "99615"}}
|
24
|
+
{"geometry": {"type": "Point", "coordinates": [-149.734615, 61.222362]}, "type": "Feature", "id": "SG_31RxKLfloT17grXAkOqxCj_61.222362_-149.734615@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "AAA Muldoon Mini Storage", "tags": ["storage"], "country": "US", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 338 3812", "href": "http://api.simplegeo.com/1.0/features/SG_31RxKLfloT17grXAkOqxCj_61.222362_-149.734615@1293731153.json", "address": "7801 Peck Ave", "owner": "simplegeo", "postcode": "99504"}}
|
25
|
+
{"geometry": {"type": "Point", "coordinates": [-151.527322, 59.648914]}, "type": "Feature", "id": "SG_4oHlXSkD8Myutk2GMZEypu_59.648914_-151.527322@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Beachcomber's Three", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 235 1556", "href": "http://api.simplegeo.com/1.0/features/SG_4oHlXSkD8Myutk2GMZEypu_59.648914_-151.527322@1293731153.json", "address": "672 East Rd", "owner": "simplegeo", "postcode": "99603"}}
|
26
|
+
{"geometry": {"type": "Point", "coordinates": [-150.83832, 60.526918]}, "type": "Feature", "id": "SG_4671HqBmEOI2MR1d5vVYoN_60.526918_-150.838320@1293731153", "properties": {"province": "AK", "city": "Sterling", "name": "Riggs Enterprises", "tags": ["trucking"], "country": "US", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 262 8844", "href": "http://api.simplegeo.com/1.0/features/SG_4671HqBmEOI2MR1d5vVYoN_60.526918_-150.838320@1293731153.json", "address": "37775 W Scout Lake Loop Rd", "owner": "simplegeo", "postcode": "99672"}}
|
27
|
+
{"geometry": {"type": "Point", "coordinates": [-147.80602, 64.83668]}, "type": "Feature", "id": "SG_2zfoWFV9M6YC6WLPeNeK8h_64.836680_-147.806020@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Ron's Liquor & Convenience", "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Liquor & Beverages"}], "phone": "+1 907 455 8206", "href": "http://api.simplegeo.com/1.0/features/SG_2zfoWFV9M6YC6WLPeNeK8h_64.836680_-147.806020@1293731153.json", "address": "3505 Airport Way", "owner": "simplegeo", "postcode": "99709"}}
|
28
|
+
{"geometry": {"type": "Point", "coordinates": [-149.885239, 61.145073]}, "type": "Feature", "id": "SG_64kAPRYwOIqkGno0OJGscX_61.145073_-149.885239@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Anchorage Prtctive Catings Inc", "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 644 0386", "href": "http://api.simplegeo.com/1.0/features/SG_64kAPRYwOIqkGno0OJGscX_61.145073_-149.885239@1293731153.json", "address": "8239 Stormy Pl", "owner": "simplegeo", "postcode": "99518"}}
|
29
|
+
{"geometry": {"type": "Point", "coordinates": [-149.888983, 61.217491]}, "type": "Feature", "id": "SG_0f3IMRmHiuKvaAiYRl6h73_61.217491_-149.888983@1293731153", "properties": {"province": "AK", "website": "www.lastyle.com", "name": "L A Style & Retail Ctr", "city": "Anchorage", "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "phone": "+1 907 276 4247", "href": "http://api.simplegeo.com/1.0/features/SG_0f3IMRmHiuKvaAiYRl6h73_61.217491_-149.888983@1293731153.json", "address": "320 W 5th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
30
|
+
{"geometry": {"type": "Point", "coordinates": [-151.551418, 59.641701]}, "type": "Feature", "id": "SG_42jWwUgySWrdm2ojdv2SNr_59.641701_-151.551418@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Senator Gary Stevens", "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 235 0690", "href": "http://api.simplegeo.com/1.0/features/SG_42jWwUgySWrdm2ojdv2SNr_59.641701_-151.551418@1293731153.json", "address": "345 Sterling Hwy", "owner": "simplegeo", "postcode": "99603"}}
|
31
|
+
{"geometry": {"type": "Point", "coordinates": [-151.122684, 60.47487]}, "type": "Feature", "id": "SG_3yvlnufOU2VcFX7EfYpXRq_60.474870_-151.122684@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Alaska Sure Seal", "tags": ["product", "asphalt"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 262 4069", "href": "http://api.simplegeo.com/1.0/features/SG_3yvlnufOU2VcFX7EfYpXRq_60.474870_-151.122684@1293731153.json", "address": "785 Brooks Ave", "owner": "simplegeo", "postcode": "99669"}}
|
32
|
+
{"geometry": {"type": "Point", "coordinates": [-149.808272, 61.206468]}, "type": "Feature", "id": "SG_04xKfk4edDKBeUvRKF8qSt_61.206468_-149.808272@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Mini Stop", "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Groceries & Convenience Stores"}], "phone": "+1 907 272 2955", "href": "http://api.simplegeo.com/1.0/features/SG_04xKfk4edDKBeUvRKF8qSt_61.206468_-149.808272@1293731153.json", "address": "1565 S Bragaw St", "owner": "simplegeo", "postcode": "99508"}}
|
33
|
+
{"geometry": {"type": "Point", "coordinates": [-149.779039, 61.195322]}, "type": "Feature", "id": "SG_1JEfSJYZqAZJePlQMcNMMh_61.195322_-149.779039@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Wonder Hostess Thrift Store", "tags": ["baker"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Bakery"}], "phone": "+1 907 338 6975", "href": "http://api.simplegeo.com/1.0/features/SG_1JEfSJYZqAZJePlQMcNMMh_61.195322_-149.779039@1293731153.json", "address": "5437 E Northern Lights Blvd", "owner": "simplegeo", "postcode": "99508"}}
|
34
|
+
{"geometry": {"type": "Point", "coordinates": [-149.884368, 61.182098]}, "type": "Feature", "id": "SG_0HJvCtUpLM3g3xFLtHS8nw_61.182098_-149.884368@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Superior Products Inc", "tags": ["home", "log", "cabin"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Buildings"}], "phone": "+1 907 345 3323", "href": "http://api.simplegeo.com/1.0/features/SG_0HJvCtUpLM3g3xFLtHS8nw_61.182098_-149.884368@1293731153.json", "address": "4141 B St", "owner": "simplegeo", "postcode": "99503"}}
|
35
|
+
{"geometry": {"type": "Point", "coordinates": [-148.001415, 64.84605]}, "type": "Feature", "id": "SG_7VIk5azeRNmreI8qfJRrgl_64.846050_-148.001415@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Alaska Window Co", "tags": ["window", "metal", "frame", "mfg"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Rubber & Plastics"}], "phone": "+1 907 479 5874", "href": "http://api.simplegeo.com/1.0/features/SG_7VIk5azeRNmreI8qfJRrgl_64.846050_-148.001415@1293731153.json", "address": "3536 Parks Hwy", "owner": "simplegeo", "postcode": "99709"}}
|
36
|
+
{"geometry": {"type": "Point", "coordinates": [-149.859272, 61.213543]}, "type": "Feature", "id": "SG_3PjKVb8eIRba0cWGLPxHiS_61.213543_-149.859272@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Rebecca Kinney's Beauty Supply", "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "phone": "+1 907 272 0625", "href": "http://api.simplegeo.com/1.0/features/SG_3PjKVb8eIRba0cWGLPxHiS_61.213543_-149.859272@1293731153.json", "address": "1230 E 9th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
37
|
+
{"geometry": {"type": "Point", "coordinates": [-149.49411, 61.5794]}, "type": "Feature", "id": "SG_4ooJ0t8xA4VGx9iH8H0LwU_61.579400_-149.494110@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Hair Effects", "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "phone": "+1 907 357 4247", "href": "http://api.simplegeo.com/1.0/features/SG_4ooJ0t8xA4VGx9iH8H0LwU_61.579400_-149.494110@1293731153.json", "address": "1301 W Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
38
|
+
{"geometry": {"type": "Point", "coordinates": [-150.842076, 60.514739]}, "type": "Feature", "id": "SG_5kG8RoVQbyexrjz32croeh_60.514739_-150.842076@1293731153", "properties": {"province": "AK", "city": "Sterling", "name": "Rogers Painting Svc", "tags": ["painter"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 262 0674", "href": "http://api.simplegeo.com/1.0/features/SG_5kG8RoVQbyexrjz32croeh_60.514739_-150.842076@1293731153.json", "address": "36615 Bradford Rd", "owner": "simplegeo", "postcode": "99672"}}
|
39
|
+
{"geometry": {"type": "Point", "coordinates": [-149.942429, 61.162041]}, "type": "Feature", "id": "SG_2j4kd0mrA2NfvheHfdH8oX_61.162041_-149.942429@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Art House", "tags": ["school", "instruction", "art"], "country": "US", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Special Training"}], "phone": "+1 907 248 1688", "href": "http://api.simplegeo.com/1.0/features/SG_2j4kd0mrA2NfvheHfdH8oX_61.162041_-149.942429@1293731153.json", "address": "6461 Reed Ln", "owner": "simplegeo", "postcode": "99502"}}
|
40
|
+
{"geometry": {"type": "Point", "coordinates": [-149.913088, 61.195297]}, "type": "Feature", "id": "SG_0ZHdxMlbh4DSOzxSqehRvs_61.195297_-149.913088@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Silk Road Rugs", "tags": ["interior", "consultant", "design", "decorator"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+1 907 336 7847", "href": "http://api.simplegeo.com/1.0/features/SG_0ZHdxMlbh4DSOzxSqehRvs_61.195297_-149.913088@1293731153.json", "address": "1200 W Northern Lights Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
41
|
+
{"geometry": {"type": "Point", "coordinates": [-135.367947, 57.055101]}, "type": "Feature", "id": "SG_772R1mEVJmYECGef79kL8W_57.055101_-135.367947@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "LAB Flying Svc Inc", "tags": ["company"], "country": "US", "classifiers": [{"category": "Airline", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 747 4779", "href": "http://api.simplegeo.com/1.0/features/SG_772R1mEVJmYECGef79kL8W_57.055101_-135.367947@1293731153.json", "address": "517 Airport Rd", "owner": "simplegeo", "postcode": "99835"}}
|
42
|
+
{"geometry": {"type": "Point", "coordinates": [-149.883251, 61.203609]}, "type": "Feature", "id": "SG_2dQxsUDc45F0uHJH5tyAAA_61.203609_-149.883251@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "ENTRIX Inc", "tags": ["environmental", "ecological"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Research"}], "phone": "+1 907 563 0438", "href": "http://api.simplegeo.com/1.0/features/SG_2dQxsUDc45F0uHJH5tyAAA_61.203609_-149.883251@1293731153.json", "address": "1600 A St", "owner": "simplegeo", "postcode": "99501"}}
|
43
|
+
{"geometry": {"type": "Point", "coordinates": [-149.863818, 61.119111]}, "type": "Feature", "id": "SG_3h4bHXr32uXCGa6WWcNvIR_61.119111_-149.863818@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Bradley House", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 336 7177", "href": "http://api.simplegeo.com/1.0/features/SG_3h4bHXr32uXCGa6WWcNvIR_61.119111_-149.863818@1293731153.json", "address": "11321 Old Seward Hwy", "owner": "simplegeo", "postcode": "99515"}}
|
44
|
+
{"geometry": {"type": "Point", "coordinates": [-149.805432, 61.145561]}, "type": "Feature", "id": "SG_65g0PIG3GPBvL45Mv9yUMb_61.145561_-149.805432@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Rival Glass Co", "tags": ["glass", "window", "plate"], "country": "US", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Building Materials"}], "phone": "+1 907 349 0150", "href": "http://api.simplegeo.com/1.0/features/SG_65g0PIG3GPBvL45Mv9yUMb_61.145561_-149.805432@1293731153.json", "address": "8201 Wellsley Ct", "owner": "simplegeo", "postcode": "99507"}}
|
45
|
+
{"geometry": {"type": "Point", "coordinates": [-161.770132, 60.794784]}, "type": "Feature", "id": "SG_3Igv4Qom3eCJ9cmYNx4261_60.794784_-161.770132@1293731153", "properties": {"province": "AK", "city": "Bethel", "name": "Wells Fargo Bank", "country": "US", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Bank"}], "phone": "+1 907 543 3875", "href": "http://api.simplegeo.com/1.0/features/SG_3Igv4Qom3eCJ9cmYNx4261_60.794784_-161.770132@1293731153.json", "address": "460 Ridgecrest Dr", "owner": "simplegeo", "postcode": "99559"}}
|
46
|
+
{"geometry": {"type": "Point", "coordinates": [-149.828925, 61.205625]}, "type": "Feature", "id": "SG_73lyXjx1QNtpFaeBUBvt4R_61.205625_-149.828925@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Spectrum Design", "tags": ["consultant", "lighting"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 276 6422", "href": "http://api.simplegeo.com/1.0/features/SG_73lyXjx1QNtpFaeBUBvt4R_61.205625_-149.828925@1293731153.json", "address": "2701 Kobuk Ct", "owner": "simplegeo", "postcode": "99508"}}
|
47
|
+
{"geometry": {"type": "Point", "coordinates": [-147.755128, 64.813308]}, "type": "Feature", "id": "SG_0uVuHHYSchskOpwQ4TTVxJ_64.813308_-147.755128@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Alakota Ventures", "tags": ["decor", "furniture", "accessory"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Home Furnishings"}], "phone": "+1 907 457 3521", "href": "http://api.simplegeo.com/1.0/features/SG_0uVuHHYSchskOpwQ4TTVxJ_64.813308_-147.755128@1293731153.json", "address": "3521 Industrial Ave", "owner": "simplegeo", "postcode": "99701"}}
|
48
|
+
{"geometry": {"type": "Point", "coordinates": [-132.336441, 56.403127]}, "type": "Feature", "id": "SG_0cs6TDIbuO9YAWrVzky0FE_56.403127_-132.336441@1293731153", "properties": {"province": "AK", "city": "Wrangell", "name": "Helgeson Woodworking", "tags": ["woodworker"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 874 3288", "href": "http://api.simplegeo.com/1.0/features/SG_0cs6TDIbuO9YAWrVzky0FE_56.403127_-132.336441@1293731153.json", "address": "9 Zimovia Hwy", "owner": "simplegeo", "postcode": "99929"}}
|
49
|
+
{"geometry": {"type": "Point", "coordinates": [-149.863906, 61.140596]}, "type": "Feature", "id": "SG_6hEYzGee6Azwh8Gxq0Nx0s_61.140596_-149.863906@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Credit Union 1", "country": "US", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Bank"}], "phone": "+1 907 339 9485", "href": "http://api.simplegeo.com/1.0/features/SG_6hEYzGee6Azwh8Gxq0Nx0s_61.140596_-149.863906@1293731153.json", "address": "8935 Old Seward Hwy", "owner": "simplegeo", "postcode": "99515"}}
|
50
|
+
{"geometry": {"type": "Point", "coordinates": [-149.111167, 61.600058]}, "type": "Feature", "id": "SG_3QKg5A1Kk6oZDV22aTJtmq_61.600058_-149.111167@1293731153", "properties": {"province": "AK", "city": "Palmer", "name": "Matanuska Susitna Purchasing", "tags": ["village"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 745 9601", "href": "http://api.simplegeo.com/1.0/features/SG_3QKg5A1Kk6oZDV22aTJtmq_61.600058_-149.111167@1293731153.json", "address": "350 E Dahlia Ave", "owner": "simplegeo", "postcode": "99645"}}
|
51
|
+
{"geometry": {"type": "Point", "coordinates": [-147.748977, 64.843409]}, "type": "Feature", "id": "SG_4RPsVqPR3jIq84tS6E3VL5_64.843409_-147.748977@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Camp Fire Birch Park", "tags": ["youth", "organization", "center"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 452 2687", "href": "http://api.simplegeo.com/1.0/features/SG_4RPsVqPR3jIq84tS6E3VL5_64.843409_-147.748977@1293731153.json", "address": "505 Stewart St", "owner": "simplegeo", "postcode": "99701"}}
|
52
|
+
{"geometry": {"type": "Point", "coordinates": [-146.366209, 61.133797]}, "type": "Feature", "id": "SG_6GjNGWlri7pAMZVFTxnoJU_61.133797_-146.366209@1293731153", "properties": {"province": "AK", "city": "Valdez", "name": "Sound Therapy", "tags": ["therapist", "massage"], "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": ""}], "phone": "+1 907 835 5829", "href": "http://api.simplegeo.com/1.0/features/SG_6GjNGWlri7pAMZVFTxnoJU_61.133797_-146.366209@1293731153.json", "address": "430 W Lowe St", "owner": "simplegeo", "postcode": "99686"}}
|
53
|
+
{"geometry": {"type": "Point", "coordinates": [-147.683198, 64.816543]}, "type": "Feature", "id": "SG_6hsRkpfi8gD6uxiSDptC26_64.816543_-147.683198@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "AAA Lundeen's Body Shop", "tags": ["body", "automobile", "painting"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 456 5744", "href": "http://api.simplegeo.com/1.0/features/SG_6hsRkpfi8gD6uxiSDptC26_64.816543_-147.683198@1293731153.json", "address": "701 Williams Gate Rd", "owner": "simplegeo", "postcode": "99701"}}
|
54
|
+
{"geometry": {"type": "Point", "coordinates": [-149.746568, 61.109408]}, "type": "Feature", "id": "SG_12Whjevh50RBIfFTwWCwME_61.109408_-149.746568@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Amazing Grace Miniature Horses", "tags": ["breeder", "horse"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Animal Services"}], "phone": "+1 907 346 2558", "href": "http://api.simplegeo.com/1.0/features/SG_12Whjevh50RBIfFTwWCwME_61.109408_-149.746568@1293731153.json", "address": "7340 Holman Ave", "owner": "simplegeo", "postcode": "99516"}}
|
55
|
+
{"geometry": {"type": "Point", "coordinates": [-149.828885, 61.209788]}, "type": "Feature", "id": "SG_2FYXQ50cW6tHuxp1nZrbYi_61.209788_-149.828885@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Sandra L Clapper", "tags": ["midwife"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Health Practitioner"}], "phone": "+1 907 264 2333", "href": "http://api.simplegeo.com/1.0/features/SG_2FYXQ50cW6tHuxp1nZrbYi_61.209788_-149.828885@1293731153.json", "address": "2741 Debarr Rd", "owner": "simplegeo", "postcode": "99508"}}
|
56
|
+
{"geometry": {"type": "Point", "coordinates": [-147.79018, 64.813017]}, "type": "Feature", "id": "SG_2bhogIrnEp6K5HfEVCb9mM_64.813017_-147.790180@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Denali Fenceworks", "tags": ["fencing", "guardrail", "contractor", "fence", "supply"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 474 9542", "href": "http://api.simplegeo.com/1.0/features/SG_2bhogIrnEp6K5HfEVCb9mM_64.813017_-147.790180@1293731153.json", "address": "2950 Van Horn Rd", "owner": "simplegeo", "postcode": "99709"}}
|
57
|
+
{"geometry": {"type": "Point", "coordinates": [-149.744053, 61.112158]}, "type": "Feature", "id": "SG_5HbMl3f0E5LVMrqhFbuX5E_61.112158_-149.744053@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Alaskan Frontier Gardens B & B", "tags": ["breakfast", "accommodation", "bed"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 345 6556", "href": "http://api.simplegeo.com/1.0/features/SG_5HbMl3f0E5LVMrqhFbuX5E_61.112158_-149.744053@1293731153.json", "address": "7440 Alatna Ave", "owner": "simplegeo", "postcode": "99507"}}
|
58
|
+
{"geometry": {"type": "Point", "coordinates": [-134.587981, 58.359826]}, "type": "Feature", "id": "SG_0KUSphcdMwP65g74RXWSTq_58.359826_-134.587981@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Hot Sheet", "tags": ["newspaper"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Printing"}], "phone": "+1 907 789 4145", "href": "http://api.simplegeo.com/1.0/features/SG_0KUSphcdMwP65g74RXWSTq_58.359826_-134.587981@1293731153.json", "address": "1910 Alex Holden Way", "owner": "simplegeo", "postcode": "99801"}}
|
59
|
+
{"geometry": {"type": "Point", "coordinates": [-149.866831, 61.144657]}, "type": "Feature", "id": "SG_03nXFF2TJrogR2gkrjbKys_61.144657_-149.866831@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Mad Hatter Geoffrey", "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Clothing, Apparel, & Fashions"}], "phone": "+1 907 349 3071", "href": "http://api.simplegeo.com/1.0/features/SG_03nXFF2TJrogR2gkrjbKys_61.144657_-149.866831@1293731153.json", "address": "800 E Dimond Blvd", "owner": "simplegeo", "postcode": "99515"}}
|
60
|
+
{"geometry": {"type": "Point", "coordinates": [-149.754577, 61.181875]}, "type": "Feature", "id": "SG_1YOTwfwBwHfUQdpWGeOaPs_61.181875_-149.754577@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Remote Property Inc", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 277 4608", "href": "http://api.simplegeo.com/1.0/features/SG_1YOTwfwBwHfUQdpWGeOaPs_61.181875_-149.754577@1293731153.json", "address": "4126 Apollo Dr", "owner": "simplegeo", "postcode": "99504"}}
|
61
|
+
{"geometry": {"type": "Point", "coordinates": [-149.898032, 61.185632]}, "type": "Feature", "id": "SG_18vc4WqUMnjgOVz66iupwP_61.185632_-149.898032@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Schlumberger Oilfield Services", "tags": ["field", "public", "relations"], "country": "US", "classifiers": [{"category": "Mining & Drilling", "type": "Manufacturing & Wholesale Goods", "subcategory": ""}], "phone": "+1 907 273 1700", "href": "http://api.simplegeo.com/1.0/features/SG_18vc4WqUMnjgOVz66iupwP_61.185632_-149.898032@1293731153.json", "address": "3940 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
62
|
+
{"geometry": {"type": "Point", "coordinates": [-149.870612, 61.200772]}, "type": "Feature", "id": "SG_1BikvklNjcVvMrzRFsAxKf_61.200772_-149.870612@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Hillside Chalet", "tags": ["apartment"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Operator"}], "phone": "+1 907 274 0015", "href": "http://api.simplegeo.com/1.0/features/SG_1BikvklNjcVvMrzRFsAxKf_61.200772_-149.870612@1293731153.json", "address": "631 E 22nd Ave", "owner": "simplegeo", "postcode": "99503"}}
|
63
|
+
{"geometry": {"type": "Point", "coordinates": [-147.706304, 64.810586]}, "type": "Feature", "id": "SG_2GGYzYKH6UFyB8gD2UYfpw_64.810586_-147.706304@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Lennie Taylor Shop", "tags": ["truck"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 456 6497", "href": "http://api.simplegeo.com/1.0/features/SG_2GGYzYKH6UFyB8gD2UYfpw_64.810586_-147.706304@1293731153.json", "address": "3605 Leasure St", "owner": "simplegeo", "postcode": "99701"}}
|
64
|
+
{"geometry": {"type": "Point", "coordinates": [-134.577199, 58.388003]}, "type": "Feature", "id": "SG_4iWTAdAn0WY5pq7AuvffyI_58.388003_-134.577199@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Juneau Home Studies", "tags": ["agency", "adoption"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 789 7586", "href": "http://api.simplegeo.com/1.0/features/SG_4iWTAdAn0WY5pq7AuvffyI_58.388003_-134.577199@1293731153.json", "address": "8923 Tanis Dr", "owner": "simplegeo", "postcode": "99801"}}
|
65
|
+
{"geometry": {"type": "Point", "coordinates": [-134.405556, 58.300492]}, "type": "Feature", "id": "SG_0aiM3NFKgIoQyCAakjIz5e_58.300492_-134.405556@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Ann Miletich", "tags": ["arts", "artist"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "phone": "+1 907 463 1525", "href": "http://api.simplegeo.com/1.0/features/SG_0aiM3NFKgIoQyCAakjIz5e_58.300492_-134.405556@1293731153.json", "address": "114 S Franklin St", "owner": "simplegeo", "postcode": "99801"}}
|
66
|
+
{"geometry": {"type": "Point", "coordinates": [-147.70799, 64.848901]}, "type": "Feature", "id": "SG_0rCVCxigZ49fHcJ7evhjdy_64.848901_-147.707990@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Rod's Saw Shop", "tags": ["engine"], "country": "US", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Garden Supply"}], "phone": "+1 907 452 6318", "href": "http://api.simplegeo.com/1.0/features/SG_0rCVCxigZ49fHcJ7evhjdy_64.848901_-147.707990@1293731153.json", "address": "127 Minnie St", "owner": "simplegeo", "postcode": "99701"}}
|
67
|
+
{"geometry": {"type": "Point", "coordinates": [-149.947615, 61.120889]}, "type": "Feature", "id": "SG_2m0eEd3PbRF5wumvarkC8u_61.120889_-149.947615@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Novakovichs Enterprises Inc", "tags": ["roofing", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 344 3230", "href": "http://api.simplegeo.com/1.0/features/SG_2m0eEd3PbRF5wumvarkC8u_61.120889_-149.947615@1293731153.json", "address": "3940 Alitak Bay Cir", "owner": "simplegeo", "postcode": "99515"}}
|
68
|
+
{"geometry": {"type": "Point", "coordinates": [-149.906229, 61.108936]}, "type": "Feature", "id": "SG_7FMj3RI14cosPul6Uvu6oL_61.108936_-149.906229@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Whirling Rainbow", "tags": ["alternative", "care"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+1 907 336 7439", "href": "http://api.simplegeo.com/1.0/features/SG_7FMj3RI14cosPul6Uvu6oL_61.108936_-149.906229@1293731153.json", "address": "1620 Shore Dr", "owner": "simplegeo", "postcode": "99515"}}
|
69
|
+
{"geometry": {"type": "Point", "coordinates": [-149.922728, 61.203282]}, "type": "Feature", "id": "SG_6m82pPE0jhongsuITCY5o3_61.203282_-149.922728@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Omni Massage Systems", "tags": ["personal", "massage", "devices", "mfg"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Rubber & Plastics"}], "phone": "+1 907 561 9055", "href": "http://api.simplegeo.com/1.0/features/SG_6m82pPE0jhongsuITCY5o3_61.203282_-149.922728@1293731153.json", "address": "1971 Wildwood Ln", "owner": "simplegeo", "postcode": "99517"}}
|
70
|
+
{"geometry": {"type": "Point", "coordinates": [-149.834378, 61.181967]}, "type": "Feature", "id": "SG_3TtDZpI91hHtXG9w5UFXRk_61.181967_-149.834378@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Ame W Ivanov", "tags": ["attorney"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+1 907 562 2215", "href": "http://api.simplegeo.com/1.0/features/SG_3TtDZpI91hHtXG9w5UFXRk_61.181967_-149.834378@1293731153.json", "address": "4325 Laurel St", "owner": "simplegeo", "postcode": "99508"}}
|
71
|
+
{"geometry": {"type": "Point", "coordinates": [-152.407922, 57.788266]}, "type": "Feature", "id": "SG_79bdCNuxuFx2AmUO2HtOlP_57.788266_-152.407922@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "Island Provider Transportation", "tags": ["towing"], "country": "US", "classifiers": [{"category": "Marine", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 481 2970", "href": "http://api.simplegeo.com/1.0/features/SG_79bdCNuxuFx2AmUO2HtOlP_57.788266_-152.407922@1293731153.json", "address": "508 Marine Way W", "owner": "simplegeo", "postcode": "99615"}}
|
72
|
+
{"geometry": {"type": "Point", "coordinates": [-131.669675, 55.349715]}, "type": "Feature", "id": "SG_59Sn8XmpRj9Ul1Lidfa9bt_55.349715_-131.669675@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Alaska Communications Systems", "country": "US", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": ""}], "phone": "+1 907 225 8730", "href": "http://api.simplegeo.com/1.0/features/SG_59Sn8XmpRj9Ul1Lidfa9bt_55.349715_-131.669675@1293731153.json", "address": "135 Tuttle Way", "owner": "simplegeo", "postcode": "99901"}}
|
73
|
+
{"geometry": {"type": "Point", "coordinates": [-149.846525, 61.143791]}, "type": "Feature", "id": "SG_0uFJgBIMMglADLVfRqlpqe_61.143791_-149.846525@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Precision Carbide", "tags": ["sharpening"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}], "phone": "+1 907 344 4612", "href": "http://api.simplegeo.com/1.0/features/SG_0uFJgBIMMglADLVfRqlpqe_61.143791_-149.846525@1293731153.json", "address": "1908 E 85th Ave", "owner": "simplegeo", "postcode": "99507"}}
|
74
|
+
{"geometry": {"type": "Point", "coordinates": [-147.752089, 64.81457]}, "type": "Feature", "id": "SG_4jC3ALukdbtJxfUsv48IDy_64.814570_-147.752089@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Penn Cal & Assoc", "tags": ["accountant"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Accounting & Tax Preparation"}], "phone": "+1 907 456 5065", "href": "http://api.simplegeo.com/1.0/features/SG_4jC3ALukdbtJxfUsv48IDy_64.814570_-147.752089@1293731153.json", "address": "1861 Standard Ave", "owner": "simplegeo", "postcode": "99701"}}
|
75
|
+
{"geometry": {"type": "Point", "coordinates": [-147.679537, 64.858525]}, "type": "Feature", "id": "SG_0NsUB0ZMGYFOE3d2LU8jyG_64.858525_-147.679537@1293731153", "properties": {"province": "AK", "website": "www.seekins.com", "name": "Seekins Ford Lincoln Mercury", "tags": ["car", "dealer"], "country": "US", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Automobile Sales"}], "phone": "+1 907 459 4000", "href": "http://api.simplegeo.com/1.0/features/SG_0NsUB0ZMGYFOE3d2LU8jyG_64.858525_-147.679537@1293731153.json", "city": "Fairbanks", "address": "1625 Old Steese Hwy", "owner": "simplegeo", "postcode": "99701"}}
|
76
|
+
{"geometry": {"type": "Point", "coordinates": [-134.581121, 58.362752]}, "type": "Feature", "id": "SG_5giUl0nQ7mcueT2LxDOlXg_58.362752_-134.581121@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "AFLAC", "country": "US", "classifiers": [{"category": "Insurance", "type": "Services", "subcategory": "Insurance Agent"}], "phone": "+1 907 790 4425", "href": "http://api.simplegeo.com/1.0/features/SG_5giUl0nQ7mcueT2LxDOlXg_58.362752_-134.581121@1293731153.json", "address": "9000 Glacier Hwy", "owner": "simplegeo", "postcode": "99801"}}
|
77
|
+
{"geometry": {"type": "Point", "coordinates": [-149.820972, 61.189689]}, "type": "Feature", "id": "SG_3ncqmHFeWxEwwQZtwUiUa0_61.189689_-149.820972@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Mark J Mc Lean DDS", "tags": ["dentist"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 562 6648", "href": "http://api.simplegeo.com/1.0/features/SG_3ncqmHFeWxEwwQZtwUiUa0_61.189689_-149.820972@1293731153.json", "address": "3340 Providence Dr", "owner": "simplegeo", "postcode": "99508"}}
|
78
|
+
{"geometry": {"type": "Point", "coordinates": [-147.778416, 64.863265]}, "type": "Feature", "id": "SG_2Uo5bJnEzMYwy8SiPjgnJs_64.863265_-147.778416@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Alaska Equipment Rental & Sls", "tags": ["contractor"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Machinery & Supplies"}], "phone": "+1 907 479 3138", "href": "http://api.simplegeo.com/1.0/features/SG_2Uo5bJnEzMYwy8SiPjgnJs_64.863265_-147.778416@1293731153.json", "address": "2401 College Rd", "owner": "simplegeo", "postcode": "99709"}}
|
79
|
+
{"geometry": {"type": "Point", "coordinates": [-152.395174, 57.794859]}, "type": "Feature", "id": "SG_3hKCbd3XU6oYnDKU3lJwQJ_57.794859_-152.395174@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "Kodiak City Personnel", "tags": ["village"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 486 8653", "href": "http://api.simplegeo.com/1.0/features/SG_3hKCbd3XU6oYnDKU3lJwQJ_57.794859_-152.395174@1293731153.json", "address": "710 Mill Bay Rd", "owner": "simplegeo", "postcode": "99615"}}
|
80
|
+
{"geometry": {"type": "Point", "coordinates": [-147.744638, 64.830227]}, "type": "Feature", "id": "SG_5Mnx76KCdDmwn6NSvKq5oH_64.830227_-147.744638@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Prescription Center Pharmacy", "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Pharmacy"}], "phone": "+1 907 452 1514", "href": "http://api.simplegeo.com/1.0/features/SG_5Mnx76KCdDmwn6NSvKq5oH_64.830227_-147.744638@1293731153.json", "address": "1919 Lathrop St", "owner": "simplegeo", "postcode": "99701"}}
|
81
|
+
{"geometry": {"type": "Point", "coordinates": [-147.686582, 64.827785]}, "type": "Feature", "id": "SG_01hcAzYPO1KpjRRxJJkIWF_64.827785_-147.686582@1293731153", "properties": {"province": "AK", "city": "Fort Wainwright", "name": "Arctic Light Elementary", "country": "US", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+1 907 356 2038", "href": "http://api.simplegeo.com/1.0/features/SG_01hcAzYPO1KpjRRxJJkIWF_64.827785_-147.686582@1293731153.json", "address": "4167 Neely Rd", "owner": "simplegeo", "postcode": "99703"}}
|
82
|
+
{"geometry": {"type": "Point", "coordinates": [-149.3631, 61.570818]}, "type": "Feature", "id": "SG_4m4GR2xLmXuDhPPHi1Li2L_61.570818_-149.363100@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Mc Donald's", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 373 2523", "href": "http://api.simplegeo.com/1.0/features/SG_4m4GR2xLmXuDhPPHi1Li2L_61.570818_-149.363100@1293731153.json", "address": "3501 E Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
83
|
+
{"geometry": {"type": "Point", "coordinates": [-149.950558, 61.148245]}, "type": "Feature", "id": "SG_0msWJ5kz13SQvpyOeduGDE_61.148245_-149.950558@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Calvary Church", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 243 8984", "href": "http://api.simplegeo.com/1.0/features/SG_0msWJ5kz13SQvpyOeduGDE_61.148245_-149.950558@1293731153.json", "address": "3800 W 80th Ave", "owner": "simplegeo", "postcode": "99502"}}
|
84
|
+
{"geometry": {"type": "Point", "coordinates": [-149.881021, 61.171669]}, "type": "Feature", "id": "SG_4FubHTcEcZ0fXqucXQHL1E_61.171669_-149.881021@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Prescription Service Of Alaska", "country": "US", "classifiers": [{"category": "Insurance", "type": "Services", "subcategory": "Insurance Agent"}], "phone": "+1 907 770 3533", "href": "http://api.simplegeo.com/1.0/features/SG_4FubHTcEcZ0fXqucXQHL1E_61.171669_-149.881021@1293731153.json", "address": "201 E 54th Ave", "owner": "simplegeo", "postcode": "99518"}}
|
85
|
+
{"geometry": {"type": "Point", "coordinates": [-151.54323, 59.64559]}, "type": "Feature", "id": "SG_3JlsRV6Y4BQmfjmwQOplZS_59.645590_-151.543230@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Bear Claw Bakery", "tags": ["baker"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Bakery"}], "phone": "+1 907 235 2747", "href": "http://api.simplegeo.com/1.0/features/SG_3JlsRV6Y4BQmfjmwQOplZS_59.645590_-151.543230@1293731153.json", "address": "177 E Pioneer Ave", "owner": "simplegeo", "postcode": "99603"}}
|
86
|
+
{"geometry": {"type": "Point", "coordinates": [-149.86154, 61.111777]}, "type": "Feature", "id": "SG_7TPtUy3HgZs07WitObLjhk_61.111777_-149.861540@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Garden Montessori", "tags": ["kindergarten", "academic", "school"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Child Care"}], "phone": "+1 907 345 9949", "href": "http://api.simplegeo.com/1.0/features/SG_7TPtUy3HgZs07WitObLjhk_61.111777_-149.861540@1293731153.json", "address": "11901 Industry Way", "owner": "simplegeo", "postcode": "99515"}}
|
87
|
+
{"geometry": {"type": "Point", "coordinates": [-147.705657, 64.851077]}, "type": "Feature", "id": "SG_5LdrC1z23Cjshj06Uyd99t_64.851077_-147.705657@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Pet Palace", "tags": ["pet", "shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": ""}], "phone": "+1 907 374 4747", "href": "http://api.simplegeo.com/1.0/features/SG_5LdrC1z23Cjshj06Uyd99t_64.851077_-147.705657@1293731153.json", "address": "20 College Rd", "owner": "simplegeo", "postcode": "99701"}}
|
88
|
+
{"geometry": {"type": "Point", "coordinates": [-149.831715, 61.221077]}, "type": "Feature", "id": "SG_3GZrJMuj7adClJu0owJc9E_61.221077_-149.831715@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Fleenor Paper Co", "tags": ["equipment", "moving", "supply"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Rental"}], "phone": "+1 907 277 5403", "href": "http://api.simplegeo.com/1.0/features/SG_3GZrJMuj7adClJu0owJc9E_61.221077_-149.831715@1293731153.json", "address": "429 Industrial Way", "owner": "simplegeo", "postcode": "99501"}}
|
89
|
+
{"geometry": {"type": "Point", "coordinates": [-161.755589, 60.794861]}, "type": "Feature", "id": "SG_4QOQ0sw2rlwR4eqe1xIka4_60.794861_-161.755589@1293731153", "properties": {"province": "AK", "city": "Bethel", "name": "NAPA Auto Parts", "tags": ["automobile", "parts"], "country": "US", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Auto Supplies"}], "phone": "+1 907 543 2673", "href": "http://api.simplegeo.com/1.0/features/SG_4QOQ0sw2rlwR4eqe1xIka4_60.794861_-161.755589@1293731153.json", "address": "811 3rd Ave", "owner": "simplegeo", "postcode": "99559"}}
|
90
|
+
{"geometry": {"type": "Point", "coordinates": [-149.556788, 61.334643]}, "type": "Feature", "id": "SG_4KDjo5uSiqTz3dEEpWAxSk_61.334643_-149.556788@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "Airboats R US Inc", "tags": ["mfg", "made", "custom"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Watercraft"}], "phone": "+1 907 694 2981", "href": "http://api.simplegeo.com/1.0/features/SG_4KDjo5uSiqTz3dEEpWAxSk_61.334643_-149.556788@1293731153.json", "address": "17443 Alice Loop", "owner": "simplegeo", "postcode": "99577"}}
|
91
|
+
{"geometry": {"type": "Point", "coordinates": [-147.734554, 64.840941]}, "type": "Feature", "id": "SG_13D7jtril0UN26Q7HzLdMh_64.840941_-147.734554@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Balloonatics", "tags": ["party", "supply"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 458 7784", "href": "http://api.simplegeo.com/1.0/features/SG_13D7jtril0UN26Q7HzLdMh_64.840941_-147.734554@1293731153.json", "address": "950 Cowles St", "owner": "simplegeo", "postcode": "99701"}}
|
92
|
+
{"geometry": {"type": "Point", "coordinates": [-149.888496, 61.165999]}, "type": "Feature", "id": "SG_3T45nlYko2JFrvmZamXNG6_61.165999_-149.888496@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "World Equipment Inc", "tags": ["equipment", "rental", "road"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 563 3557", "href": "http://api.simplegeo.com/1.0/features/SG_3T45nlYko2JFrvmZamXNG6_61.165999_-149.888496@1293731153.json", "address": "6028 Mackay St", "owner": "simplegeo", "postcode": "99518"}}
|
93
|
+
{"geometry": {"type": "Point", "coordinates": [-151.218888, 60.549105]}, "type": "Feature", "id": "SG_3PVQOF7iUOaJs3wRUawfYU_60.549105_-151.218888@1293731153", "properties": {"province": "AK", "city": "Kenai", "name": "Kenai Welding", "tags": ["welding"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}], "phone": "+1 907 283 7380", "href": "http://api.simplegeo.com/1.0/features/SG_3PVQOF7iUOaJs3wRUawfYU_60.549105_-151.218888@1293731153.json", "address": "703 Childs Ave", "owner": "simplegeo", "postcode": "99611"}}
|
94
|
+
{"geometry": {"type": "Point", "coordinates": [-149.440566, 60.10053]}, "type": "Feature", "id": "SG_4Sn1tp0MMTDOqODeNlpHrt_60.100530_-149.440566@1293731153", "properties": {"province": "AK", "city": "Seward", "name": "Seward Phoenix Log", "tags": ["newspaper"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Printing"}], "phone": "+1 907 224 8070", "href": "http://api.simplegeo.com/1.0/features/SG_4Sn1tp0MMTDOqODeNlpHrt_60.100530_-149.440566@1293731153.json", "address": "302 Railway Ave", "owner": "simplegeo", "postcode": "99664"}}
|
95
|
+
{"geometry": {"type": "Point", "coordinates": [-147.75938, 64.818149]}, "type": "Feature", "id": "SG_0kSoAzM27QbaACXkD3Qbl8_64.818149_-147.759380@1293731153", "properties": {"province": "AK", "website": "www.pacificdda.com", "name": "Pacific Detroit Diesel-Allison", "tags": ["engine"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Machinery & Supplies"}], "phone": "+1 907 479 1235", "href": "http://api.simplegeo.com/1.0/features/SG_0kSoAzM27QbaACXkD3Qbl8_64.818149_-147.759380@1293731153.json", "city": "Fairbanks", "address": "3177 N Van Horn Rd", "owner": "simplegeo", "postcode": "99701"}}
|
96
|
+
{"geometry": {"type": "Point", "coordinates": [-135.33281, 57.051028]}, "type": "Feature", "id": "SG_5zF4jjtRFCShAncCP6c32c_57.051028_-135.332810@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "Columbia Bar", "country": "US", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 747 3222", "href": "http://api.simplegeo.com/1.0/features/SG_5zF4jjtRFCShAncCP6c32c_57.051028_-135.332810@1293731153.json", "address": "326 Lincoln St", "owner": "simplegeo", "postcode": "99835"}}
|
97
|
+
{"geometry": {"type": "Point", "coordinates": [-135.333982, 57.05315]}, "type": "Feature", "id": "SG_6P6BPnWEBFGvrqlolcoAX4_57.053150_-135.333982@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "Naturopathic Health Clinic", "tags": ["physician"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Health Practitioner"}], "phone": "+1 907 747 3351", "href": "http://api.simplegeo.com/1.0/features/SG_6P6BPnWEBFGvrqlolcoAX4_57.053150_-135.333982@1293731153.json", "address": "408 Oja Way", "owner": "simplegeo", "postcode": "99835"}}
|
98
|
+
{"geometry": {"type": "Point", "coordinates": [-147.792599, 64.84893]}, "type": "Feature", "id": "SG_0P0Pbk0hs6zr4OhKpbX3X3_64.848930_-147.792599@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Phillips Field Equipment & Rpr", "tags": ["contractor"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Machinery & Supplies"}], "phone": "+1 907 479 0834", "href": "http://api.simplegeo.com/1.0/features/SG_0P0Pbk0hs6zr4OhKpbX3X3_64.848930_-147.792599@1293731153.json", "address": "3415 Phillips Field Rd", "owner": "simplegeo", "postcode": "99709"}}
|
99
|
+
{"geometry": {"type": "Point", "coordinates": [-149.935852, 61.162677]}, "type": "Feature", "id": "SG_4ETwV8cp9EhFVlCHOp7Dv7_61.162677_-149.935852@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Hodgson Mechanical", "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+1 907 248 5323", "href": "http://api.simplegeo.com/1.0/features/SG_4ETwV8cp9EhFVlCHOp7Dv7_61.162677_-149.935852@1293731153.json", "address": "2748 W 64th Ave", "owner": "simplegeo", "postcode": "99502"}}
|
100
|
+
{"geometry": {"type": "Point", "coordinates": [-149.951731, 61.182716]}, "type": "Feature", "id": "SG_4T6Xo5vXonNolhx9NeK7IT_61.182716_-149.951731@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Hanco Imports", "tags": ["representative", "manufacturer"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Durable Goods & Equipment"}], "phone": "+1 907 561 1736", "href": "http://api.simplegeo.com/1.0/features/SG_4T6Xo5vXonNolhx9NeK7IT_61.182716_-149.951731@1293731153.json", "address": "3619 W 42nd Ave", "owner": "simplegeo", "postcode": "99517"}}
|
101
|
+
{"geometry": {"type": "Point", "coordinates": [-149.463963, 61.582031]}, "type": "Feature", "id": "SG_6wKr9bbZq366VlLEteDjPM_61.582031_-149.463963@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Salvation Army Thrift Store", "tags": ["organization", "welfare"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 376 7598", "href": "http://api.simplegeo.com/1.0/features/SG_6wKr9bbZq366VlLEteDjPM_61.582031_-149.463963@1293731153.json", "address": "461 W Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
102
|
+
{"geometry": {"type": "Point", "coordinates": [-145.741844, 60.54349]}, "type": "Feature", "id": "SG_5y0va562fn0h6MMXEZASZE_60.543490_-145.741844@1293731153", "properties": {"province": "AK", "city": "Cordova", "name": "Cordova Glass Shop", "tags": ["glass", "window", "plate"], "country": "US", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Building Materials"}], "phone": "+1 907 424 4530", "href": "http://api.simplegeo.com/1.0/features/SG_5y0va562fn0h6MMXEZASZE_60.543490_-145.741844@1293731153.json", "address": "613 Cedar St", "owner": "simplegeo", "postcode": "99574"}}
|
103
|
+
{"geometry": {"type": "Point", "coordinates": [-149.864114, 61.148546]}, "type": "Feature", "id": "SG_77JDHtZJpwLybmxXZ9fI2K_61.148546_-149.864114@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "West", "tags": ["environmental", "ecological"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Research"}], "phone": "+1 907 770 2985", "href": "http://api.simplegeo.com/1.0/features/SG_77JDHtZJpwLybmxXZ9fI2K_61.148546_-149.864114@1293731153.json", "address": "7926 Old Seward Hwy", "owner": "simplegeo", "postcode": "99518"}}
|
104
|
+
{"geometry": {"type": "Point", "coordinates": [-147.714634, 64.821621]}, "type": "Feature", "id": "SG_6Es8dtfnvdPg3685F66s0C_64.821621_-147.714634@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Los Amigos", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 452 3684", "href": "http://api.simplegeo.com/1.0/features/SG_6Es8dtfnvdPg3685F66s0C_64.821621_-147.714634@1293731153.json", "address": "636 28th Ave", "owner": "simplegeo", "postcode": "99701"}}
|
105
|
+
{"geometry": {"type": "Point", "coordinates": [-149.929319, 61.159526]}, "type": "Feature", "id": "SG_2S15HifB7BflwtVhiYGUFQ_61.159526_-149.929319@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Circle Plumbing & Heating Inc", "tags": ["c"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 243 2171", "href": "http://api.simplegeo.com/1.0/features/SG_2S15HifB7BflwtVhiYGUFQ_61.159526_-149.929319@1293731153.json", "address": "2317 Raspberry Rd", "owner": "simplegeo", "postcode": "99502"}}
|
106
|
+
{"geometry": {"type": "Point", "coordinates": [-149.56329, 61.336493]}, "type": "Feature", "id": "SG_1qauTuIIEophGxgf6JkRfT_61.336493_-149.563290@1293731153", "properties": {"province": "AK", "website": "www.er-pc.org", "name": "Eagle River Presbyterian Chr", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 694 5753", "href": "http://api.simplegeo.com/1.0/features/SG_1qauTuIIEophGxgf6JkRfT_61.336493_-149.563290@1293731153.json", "city": "Eagle River", "address": "12836 Old Glenn Hwy", "owner": "simplegeo", "postcode": "99577"}}
|
107
|
+
{"geometry": {"type": "Point", "coordinates": [-151.084543, 60.506457]}, "type": "Feature", "id": "SG_5VCFoaF6uOB9me59SYUCNY_60.506457_-151.084543@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Lucky Raven Tobacco", "tags": ["cigarette", "cigar", "dealer"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Tobacco Products"}], "phone": "+1 907 260 6280", "href": "http://api.simplegeo.com/1.0/features/SG_5VCFoaF6uOB9me59SYUCNY_60.506457_-151.084543@1293731153.json", "address": "36312 Irons Ave", "owner": "simplegeo", "postcode": "99669"}}
|
108
|
+
{"geometry": {"type": "Point", "coordinates": [-147.753593, 64.862378]}, "type": "Feature", "id": "SG_3Ykaz58xQgtE5TSJTE9wI1_64.862378_-147.753593@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Aurora Animal Clinic", "tags": ["veterinarian"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Veterinary Services"}], "phone": "+1 907 452 6055", "href": "http://api.simplegeo.com/1.0/features/SG_3Ykaz58xQgtE5TSJTE9wI1_64.862378_-147.753593@1293731153.json", "address": "1651 College Rd", "owner": "simplegeo", "postcode": "99709"}}
|
109
|
+
{"geometry": {"type": "Point", "coordinates": [-149.864102, 61.146418]}, "type": "Feature", "id": "SG_5B2ygQBb2W1dilMl82TwZm_61.146418_-149.864102@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Enterprise Brokers", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 522 8084", "href": "http://api.simplegeo.com/1.0/features/SG_5B2ygQBb2W1dilMl82TwZm_61.146418_-149.864102@1293731153.json", "address": "8133 Old Seward Hwy", "owner": "simplegeo", "postcode": "99518"}}
|
110
|
+
{"geometry": {"type": "Point", "coordinates": [-149.867956, 61.193519]}, "type": "Feature", "id": "SG_2zI2qV2rNvXxNk8DZhcOlG_61.193519_-149.867956@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Garretts Tesoro", "tags": ["oil"], "country": "US", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Fuel & Gas Station"}], "phone": "+1 907 277 6025", "href": "http://api.simplegeo.com/1.0/features/SG_2zI2qV2rNvXxNk8DZhcOlG_61.193519_-149.867956@1293731153.json", "address": "2811 Seward Hwy", "owner": "simplegeo", "postcode": "99503"}}
|
111
|
+
{"geometry": {"type": "Point", "coordinates": [-149.836645, 61.125779]}, "type": "Feature", "id": "SG_4tjJzYPdTTv4kIK30eIzkT_61.125779_-149.836645@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Smr Janitoral Svc", "tags": ["janitor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+1 907 344 8381", "href": "http://api.simplegeo.com/1.0/features/SG_4tjJzYPdTTv4kIK30eIzkT_61.125779_-149.836645@1293731153.json", "address": "10637 Spruce Vw Lp", "owner": "simplegeo", "postcode": "99507"}}
|
112
|
+
{"geometry": {"type": "Point", "coordinates": [-149.878966, 61.173624]}, "type": "Feature", "id": "SG_7U7v7ktzXy9rHcoaRMG3bQ_61.173624_-149.878966@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Caribou Construction Inc", "tags": ["field", "oil"], "country": "US", "classifiers": [{"category": "Mining & Drilling", "type": "Manufacturing & Wholesale Goods", "subcategory": ""}], "phone": "+1 907 563 5444", "href": "http://api.simplegeo.com/1.0/features/SG_7U7v7ktzXy9rHcoaRMG3bQ_61.173624_-149.878966@1293731153.json", "address": "5100 Cordova St", "owner": "simplegeo", "postcode": "99503"}}
|
113
|
+
{"geometry": {"type": "Point", "coordinates": [-149.796683, 61.086115]}, "type": "Feature", "id": "SG_2ZDj1RPt6ilw798S5Jtdzc_61.086115_-149.796683@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Interlocken Design", "tags": ["house", "construction", "architectural"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Architect"}], "phone": "+1 907 345 4571", "href": "http://api.simplegeo.com/1.0/features/SG_2ZDj1RPt6ilw798S5Jtdzc_61.086115_-149.796683@1293731153.json", "address": "4645 Manytell Ave", "owner": "simplegeo", "postcode": "99516"}}
|
114
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897878, 61.194276]}, "type": "Feature", "id": "SG_2eUhEd8FRRRviqxx5v8tyU_61.194276_-149.897878@1293731153", "properties": {"province": "AK", "website": "www.baileysfurniture.com", "name": "Bailey's Furniture", "city": "Anchorage", "country": "US", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Furniture"}], "phone": "+1 907 563 4083", "href": "http://api.simplegeo.com/1.0/features/SG_2eUhEd8FRRRviqxx5v8tyU_61.194276_-149.897878@1293731153.json", "address": "2809 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
115
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897884, 61.187679]}, "type": "Feature", "id": "SG_7kYfnRpe91Osib9DZgFPkm_61.187679_-149.897884@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "American Building Svc", "tags": ["window"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+1 907 248 5557", "href": "http://api.simplegeo.com/1.0/features/SG_7kYfnRpe91Osib9DZgFPkm_61.187679_-149.897884@1293731153.json", "address": "3705 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
116
|
+
{"geometry": {"type": "Point", "coordinates": [-149.91309, 61.185326]}, "type": "Feature", "id": "SG_5cAIpxAe3dv22gGQ9sLbKb_61.185326_-149.913090@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Royal Suite Lodge", "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 563 3114", "href": "http://api.simplegeo.com/1.0/features/SG_5cAIpxAe3dv22gGQ9sLbKb_61.185326_-149.913090@1293731153.json", "address": "3811 Minnesota Dr", "owner": "simplegeo", "postcode": "99503"}}
|
117
|
+
{"geometry": {"type": "Point", "coordinates": [-131.683011, 55.352035]}, "type": "Feature", "id": "SG_1YvOuje7ivpS53DqhayAkB_55.352035_-131.683011@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Mc Graw Custom Construction", "tags": ["house", "general", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 225 7901", "href": "http://api.simplegeo.com/1.0/features/SG_1YvOuje7ivpS53DqhayAkB_55.352035_-131.683011@1293731153.json", "address": "2960 Tongass Ave", "owner": "simplegeo", "postcode": "99901"}}
|
118
|
+
{"geometry": {"type": "Point", "coordinates": [-134.412039, 58.30057]}, "type": "Feature", "id": "SG_5xejzYOfDRcyoVHXqvO2hB_58.300570_-134.412039@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Purchasing Dept", "tags": ["state"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 465 2250", "href": "http://api.simplegeo.com/1.0/features/SG_5xejzYOfDRcyoVHXqvO2hB_58.300570_-134.412039@1293731153.json", "address": "333 Willoughby Ave", "owner": "simplegeo", "postcode": "99801"}}
|
119
|
+
{"geometry": {"type": "Point", "coordinates": [-149.763087, 61.111837]}, "type": "Feature", "id": "SG_1SI8e36fPoMNJ032d0ZuMm_61.111837_-149.763087@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Woods Plumbing & Heating Inc", "tags": ["plumbing", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+1 907 345 7010", "href": "http://api.simplegeo.com/1.0/features/SG_1SI8e36fPoMNJ032d0ZuMm_61.111837_-149.763087@1293731153.json", "address": "11821 Moose Rd", "owner": "simplegeo", "postcode": "99516"}}
|
120
|
+
{"geometry": {"type": "Point", "coordinates": [-149.890881, 61.217491]}, "type": "Feature", "id": "SG_7b0znfPFJpGGnajzq1UDLS_61.217491_-149.890881@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Moose Creek Trading Post", "tags": ["shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 274 0958", "href": "http://api.simplegeo.com/1.0/features/SG_7b0znfPFJpGGnajzq1UDLS_61.217491_-149.890881@1293731153.json", "address": "436 W 5th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
121
|
+
{"geometry": {"type": "Point", "coordinates": [-149.382038, 60.135066]}, "type": "Feature", "id": "SG_2NfNWfGi746tel0DGceBFV_60.135066_-149.382038@1293731153", "properties": {"province": "AK", "city": "Seward", "name": "Fjordland Inn", "tags": ["breakfast", "accommodation", "bed"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 224 3614", "href": "http://api.simplegeo.com/1.0/features/SG_2NfNWfGi746tel0DGceBFV_60.135066_-149.382038@1293731153.json", "address": "33784 Nash Rd", "owner": "simplegeo", "postcode": "99664"}}
|
122
|
+
{"geometry": {"type": "Point", "coordinates": [-149.866831, 61.144657]}, "type": "Feature", "id": "SG_3i1oPlbpl0PUN0urA1n2gU_61.144657_-149.866831@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Samson-Dimond Library", "country": "US", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Library"}], "phone": "+1 907 343 4049", "href": "http://api.simplegeo.com/1.0/features/SG_3i1oPlbpl0PUN0urA1n2gU_61.144657_-149.866831@1293731153.json", "address": "800 E Dimond Blvd", "owner": "simplegeo", "postcode": "99515"}}
|
123
|
+
{"geometry": {"type": "Point", "coordinates": [-149.5713, 61.318147]}, "type": "Feature", "id": "SG_41BnzbQ1bYYijetQTzJk8l_61.318147_-149.571300@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "Coldwell Banker Fortune", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 696 7653", "href": "http://api.simplegeo.com/1.0/features/SG_41BnzbQ1bYYijetQTzJk8l_61.318147_-149.571300@1293731153.json", "address": "10928 Eagle River Rd", "owner": "simplegeo", "postcode": "99577"}}
|
124
|
+
{"geometry": {"type": "Point", "coordinates": [-134.5459, 58.33889]}, "type": "Feature", "id": "SG_4GbUemtV5gkoiBH5l2b1uu_58.338890_-134.545900@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Renoir Painting Contractors", "tags": ["hanging", "painter", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 586 6790", "href": "http://api.simplegeo.com/1.0/features/SG_4GbUemtV5gkoiBH5l2b1uu_58.338890_-134.545900@1293731153.json", "address": "8393 N Douglas Hwy", "owner": "simplegeo", "postcode": "99801"}}
|
125
|
+
{"geometry": {"type": "Point", "coordinates": [-134.625791, 58.350724]}, "type": "Feature", "id": "SG_627ctTnFLfd7KugJQVorES_58.350724_-134.625791@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Southeast Hd Parts & Repair", "tags": ["scooter", "motorcycle", "motor"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}], "phone": "+1 907 789 4206", "href": "http://api.simplegeo.com/1.0/features/SG_627ctTnFLfd7KugJQVorES_58.350724_-134.625791@1293731153.json", "address": "10654 Porter Ln", "owner": "simplegeo", "postcode": "99801"}}
|
126
|
+
{"geometry": {"type": "Point", "coordinates": [-161.764787, 60.795306]}, "type": "Feature", "id": "SG_2fN8rrnmT4Yf36KKHu1NwP_60.795306_-161.764787@1293731153", "properties": {"province": "AK", "city": "Bethel", "name": "Bethel Community Svc Inc", "tags": ["home", "residential"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Adult Care"}], "phone": "+1 907 543 2242", "href": "http://api.simplegeo.com/1.0/features/SG_2fN8rrnmT4Yf36KKHu1NwP_60.795306_-161.764787@1293731153.json", "address": "381 4th Ave", "owner": "simplegeo", "postcode": "99559"}}
|
127
|
+
{"geometry": {"type": "Point", "coordinates": [-147.729253, 64.849774]}, "type": "Feature", "id": "SG_7OYUGSJvp51lfg19hbWLD3_64.849774_-147.729253@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Keith B Gianni MD", "tags": ["physician", "surgeon"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 452 6137", "href": "http://api.simplegeo.com/1.0/features/SG_7OYUGSJvp51lfg19hbWLD3_64.849774_-147.729253@1293731153.json", "address": "1222 Well St", "owner": "simplegeo", "postcode": "99701"}}
|
128
|
+
{"geometry": {"type": "Point", "coordinates": [-152.396967, 57.790966]}, "type": "Feature", "id": "SG_1XFdhsuXKUIRAdRXUO847N_57.790966_-152.396967@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "An Island Suite", "tags": ["breakfast", "accommodation", "bed"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 486 2205", "href": "http://api.simplegeo.com/1.0/features/SG_1XFdhsuXKUIRAdRXUO847N_57.790966_-152.396967@1293731153.json", "address": "720 E Rezanof Dr", "owner": "simplegeo", "postcode": "99615"}}
|
129
|
+
{"geometry": {"type": "Point", "coordinates": [-149.890478, 61.168774]}, "type": "Feature", "id": "SG_1N8ApCJAbJxJwxroAWxFDR_61.168774_-149.890478@1293731153", "properties": {"province": "AK", "website": "www.mccionline.com", "name": "Mechanical Construction", "tags": ["plumbing", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+1 907 563 3155", "href": "http://api.simplegeo.com/1.0/features/SG_1N8ApCJAbJxJwxroAWxFDR_61.168774_-149.890478@1293731153.json", "city": "Anchorage", "address": "720 W 58th Ave", "owner": "simplegeo", "postcode": "99518"}}
|
130
|
+
{"geometry": {"type": "Point", "coordinates": [-149.895632, 61.168772]}, "type": "Feature", "id": "SG_5XSUxHn7d5Y48cX5hl4B7z_61.168772_-149.895632@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Aurora Wildlife Arts", "tags": ["lumber", "taxidermist"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}, {"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Wood Products"}], "phone": "+1 907 561 2691", "href": "http://api.simplegeo.com/1.0/features/SG_5XSUxHn7d5Y48cX5hl4B7z_61.168772_-149.895632@1293731153.json", "address": "520 W 58th Ave", "owner": "simplegeo", "postcode": "99518"}}
|
131
|
+
{"geometry": {"type": "Point", "coordinates": [-161.770132, 60.794784]}, "type": "Feature", "id": "SG_39ZqSBKqAtlmREYy8xJyn7_60.794784_-161.770132@1293731153", "properties": {"province": "AK", "city": "Bethel", "name": "Twilight Travel", "tags": ["agency", "bureau"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Travel Agent"}], "phone": "+1 907 543 5990", "href": "http://api.simplegeo.com/1.0/features/SG_39ZqSBKqAtlmREYy8xJyn7_60.794784_-161.770132@1293731153.json", "address": "460 Ridgecrest Dr", "owner": "simplegeo", "postcode": "99559"}}
|
132
|
+
{"geometry": {"type": "Point", "coordinates": [-147.693753, 64.851056]}, "type": "Feature", "id": "SG_5oIolvuZjBYUbwib1Bm9Dd_64.851056_-147.693753@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Hide Out Lounge", "tags": ["lounge", "cocktail"], "country": "US", "classifiers": [{"category": "Bars & Pubs", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 456 1841", "href": "http://api.simplegeo.com/1.0/features/SG_5oIolvuZjBYUbwib1Bm9Dd_64.851056_-147.693753@1293731153.json", "address": "720 Old Steese Hwy", "owner": "simplegeo", "postcode": "99701"}}
|
133
|
+
{"geometry": {"type": "Point", "coordinates": [-149.462675, 61.582178]}, "type": "Feature", "id": "SG_0t74qsYDtp0nDOdBfZTHTm_61.582178_-149.462675@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "D & A Shop Rite", "tags": ["grocer"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Groceries & Convenience Stores"}], "phone": "+1 907 376 5262", "href": "http://api.simplegeo.com/1.0/features/SG_0t74qsYDtp0nDOdBfZTHTm_61.582178_-149.462675@1293731153.json", "address": "503 W Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
134
|
+
{"geometry": {"type": "Point", "coordinates": [-149.58009, 61.330454]}, "type": "Feature", "id": "SG_3l6tpVrpr6xsxMOVHSkpqS_61.330454_-149.580090@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "MRW Automotive", "tags": ["repairing", "automobile"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 694 8324", "href": "http://api.simplegeo.com/1.0/features/SG_3l6tpVrpr6xsxMOVHSkpqS_61.330454_-149.580090@1293731153.json", "address": "16709 Farm Ave", "owner": "simplegeo", "postcode": "99577"}}
|
135
|
+
{"geometry": {"type": "Point", "coordinates": [-149.834538, 61.183078]}, "type": "Feature", "id": "SG_4nhuCiW9WK2SVn9UpxwIuZ_61.183078_-149.834538@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Back Pain Ctr", "tags": ["therapist", "physical"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Health Practitioner"}], "phone": "+1 907 561 1711", "href": "http://api.simplegeo.com/1.0/features/SG_4nhuCiW9WK2SVn9UpxwIuZ_61.183078_-149.834538@1293731153.json", "address": "4048 Laurel St", "owner": "simplegeo", "postcode": "99508"}}
|
136
|
+
{"geometry": {"type": "Point", "coordinates": [-149.830146, 61.209742]}, "type": "Feature", "id": "SG_25YQ5q1LSlSmbWRiEskt7C_61.209742_-149.830146@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Norman Wilder MD", "tags": ["physician", "surgeon"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 264 1166", "href": "http://api.simplegeo.com/1.0/features/SG_25YQ5q1LSlSmbWRiEskt7C_61.209742_-149.830146@1293731153.json", "address": "2801 Debarr Rd", "owner": "simplegeo", "postcode": "99508"}}
|
137
|
+
{"geometry": {"type": "Point", "coordinates": [-149.89545, 61.213689]}, "type": "Feature", "id": "SG_3uTzpRNaZv1xGy60xzNJpr_61.213689_-149.895450@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Trailside Discovery Camp", "tags": ["environmental", "org"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Community Association"}], "phone": "+1 907 274 5437", "href": "http://api.simplegeo.com/1.0/features/SG_3uTzpRNaZv1xGy60xzNJpr_61.213689_-149.895450@1293731153.json", "address": "807 G St", "owner": "simplegeo", "postcode": "99501"}}
|
138
|
+
{"geometry": {"type": "Point", "coordinates": [-134.507297, 58.356217]}, "type": "Feature", "id": "SG_1WYGXPX87x5eTPDUV7w8SJ_58.356217_-134.507297@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Duran Construction Co", "tags": ["general", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 780 6161", "href": "http://api.simplegeo.com/1.0/features/SG_1WYGXPX87x5eTPDUV7w8SJ_58.356217_-134.507297@1293731153.json", "address": "6225 Alaway Ave", "owner": "simplegeo", "postcode": "99801"}}
|
139
|
+
{"geometry": {"type": "Point", "coordinates": [-131.532389, 55.302249]}, "type": "Feature", "id": "SG_5b72cUZLMAgvN0XeScCMhP_55.302249_-131.532389@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "A 1 Towing & Recovery", "tags": ["wrecker"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 247 6633", "href": "http://api.simplegeo.com/1.0/features/SG_5b72cUZLMAgvN0XeScCMhP_55.302249_-131.532389@1293731153.json", "address": "6633 Roosevelt Dr", "owner": "simplegeo", "postcode": "99901"}}
|
140
|
+
{"geometry": {"type": "Point", "coordinates": [-134.54389, 58.338579]}, "type": "Feature", "id": "SG_0p4B9e6J9zsoMjYTpsqwed_58.338579_-134.543890@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Martin Construction Inc", "tags": ["home", "blasting", "drilling", "family", "new"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 586 1884", "href": "http://api.simplegeo.com/1.0/features/SG_0p4B9e6J9zsoMjYTpsqwed_58.338579_-134.543890@1293731153.json", "address": "8529 N Douglas Hwy", "owner": "simplegeo", "postcode": "99801"}}
|
141
|
+
{"geometry": {"type": "Point", "coordinates": [-149.849705, 61.191901]}, "type": "Feature", "id": "SG_3f3x2ef2h0sOIV2PvdVChY_61.191901_-149.849705@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Hunter Electric", "tags": ["electrical", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Electrical"}], "phone": "+1 907 272 3006", "href": "http://api.simplegeo.com/1.0/features/SG_3f3x2ef2h0sOIV2PvdVChY_61.191901_-149.849705@1293731153.json", "address": "2901 Madison Way", "owner": "simplegeo", "postcode": "99508"}}
|
142
|
+
{"geometry": {"type": "Point", "coordinates": [-149.938229, 61.180226]}, "type": "Feature", "id": "SG_03ANr6273mYBbaukbZhc3i_61.180226_-149.938229@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "T P Mahaney Contractor", "tags": ["carpentry", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 227 1581", "href": "http://api.simplegeo.com/1.0/features/SG_03ANr6273mYBbaukbZhc3i_61.180226_-149.938229@1293731153.json", "address": "4510 Spenard Rd", "owner": "simplegeo", "postcode": "99517"}}
|
143
|
+
{"geometry": {"type": "Point", "coordinates": [-151.545092, 59.651674]}, "type": "Feature", "id": "SG_6BqOefDLeKdwB2IGSoqJIg_59.651674_-151.545092@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Homer Web Designs", "tags": ["home", "consulting", "page", "dev", "internet"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+1 907 235 4832", "href": "http://api.simplegeo.com/1.0/features/SG_6BqOefDLeKdwB2IGSoqJIg_59.651674_-151.545092@1293731153.json", "address": "184 W Cityview Ave", "owner": "simplegeo", "postcode": "99603"}}
|
144
|
+
{"geometry": {"type": "Point", "coordinates": [-134.48296, 58.357712]}, "type": "Feature", "id": "SG_49ItvQwepO0tk16PwOrrWI_58.357712_-134.482960@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Prindles Carpet & Upholstery", "tags": ["cleaners", "rug", "carpet"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Laundry & Dry Cleaning"}], "phone": "+1 907 796 3478", "href": "http://api.simplegeo.com/1.0/features/SG_49ItvQwepO0tk16PwOrrWI_58.357712_-134.482960@1293731153.json", "address": "5312 Commercial Blvd", "owner": "simplegeo", "postcode": "99801"}}
|
145
|
+
{"geometry": {"type": "Point", "coordinates": [-147.518049, 64.825991]}, "type": "Feature", "id": "SG_3BbgpIBdRE9NVSS6BZ8ozJ_64.825991_-147.518049@1293731153", "properties": {"province": "AK", "city": "North Pole", "name": "Hardy Enterprises", "tags": ["general", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 488 8298", "href": "http://api.simplegeo.com/1.0/features/SG_3BbgpIBdRE9NVSS6BZ8ozJ_64.825991_-147.518049@1293731153.json", "address": "1252 Range View Rd", "owner": "simplegeo", "postcode": "99705"}}
|
146
|
+
{"geometry": {"type": "Point", "coordinates": [-134.584505, 58.363112]}, "type": "Feature", "id": "SG_2q85onRivo0PwTKiTf2QfX_58.363112_-134.584505@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "His & Hers Salon", "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": "Beauty Salon"}], "phone": "+1 907 789 7100", "href": "http://api.simplegeo.com/1.0/features/SG_2q85onRivo0PwTKiTf2QfX_58.363112_-134.584505@1293731153.json", "address": "9200 Glacier Hwy", "owner": "simplegeo", "postcode": "99801"}}
|
147
|
+
{"geometry": {"type": "Point", "coordinates": [-149.901867, 61.202441]}, "type": "Feature", "id": "SG_16uNxz2cd6ZnZP8tThjeZA_61.202441_-149.901867@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Airport Bed & Breakfast", "tags": ["breakfast", "accommodation", "bed"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 243 6050", "href": "http://api.simplegeo.com/1.0/features/SG_16uNxz2cd6ZnZP8tThjeZA_61.202441_-149.901867@1293731153.json", "address": "1901 K St", "owner": "simplegeo", "postcode": "99503"}}
|
148
|
+
{"geometry": {"type": "Point", "coordinates": [-147.566167, 64.917857]}, "type": "Feature", "id": "SG_4ZKNwFJr6udoyET2n9j1pp_64.917857_-147.566167@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Golden Enterprises", "tags": ["herb"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Specialty"}], "phone": "+1 907 457 6380", "href": "http://api.simplegeo.com/1.0/features/SG_4ZKNwFJr6udoyET2n9j1pp_64.917857_-147.566167@1293731153.json", "address": "1280 Gilmore Trl", "owner": "simplegeo", "postcode": "99712"}}
|
149
|
+
{"geometry": {"type": "Point", "coordinates": [-151.236597, 60.559839]}, "type": "Feature", "id": "SG_37Q7hJx5LqQw7OR1P9lP6F_60.559839_-151.236597@1293731153", "properties": {"province": "AK", "city": "Kenai", "name": "Medi Center", "tags": ["clinic"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 283 9118", "href": "http://api.simplegeo.com/1.0/features/SG_37Q7hJx5LqQw7OR1P9lP6F_60.559839_-151.236597@1293731153.json", "address": "10543 Kenai Spur Hwy", "owner": "simplegeo", "postcode": "99611"}}
|
150
|
+
{"geometry": {"type": "Point", "coordinates": [-149.462487, 61.582209]}, "type": "Feature", "id": "SG_3HA9pYjrqgEZBJsJmLABpB_61.582209_-149.462487@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Nenana City School District", "country": "US", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "School"}], "phone": "+1 907 357 7734", "href": "http://api.simplegeo.com/1.0/features/SG_3HA9pYjrqgEZBJsJmLABpB_61.582209_-149.462487@1293731153.json", "address": "515 W Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
151
|
+
{"geometry": {"type": "Point", "coordinates": [-149.961073, 61.155769]}, "type": "Feature", "id": "SG_6bg0Txb3tJrJ0OTQeNIPht_61.155769_-149.961073@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "A & G Towing", "tags": ["wrecker"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 277 0041", "href": "http://api.simplegeo.com/1.0/features/SG_6bg0Txb3tJrJ0OTQeNIPht_61.155769_-149.961073@1293731153.json", "address": "6917 Crawford St", "owner": "simplegeo", "postcode": "99502"}}
|
152
|
+
{"geometry": {"type": "Point", "coordinates": [-147.724356, 64.859154]}, "type": "Feature", "id": "SG_7UNkSFNhoXAqnwa5rfYu9l_64.859154_-147.724356@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "College Collision", "tags": ["body", "automobile", "painting"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 457 8087", "href": "http://api.simplegeo.com/1.0/features/SG_7UNkSFNhoXAqnwa5rfYu9l_64.859154_-147.724356@1293731153.json", "address": "810 College Rd", "owner": "simplegeo", "postcode": "99701"}}
|
153
|
+
{"geometry": {"type": "Point", "coordinates": [-135.333533, 57.052904]}, "type": "Feature", "id": "SG_1YHO7yD6hNEBIGN9i4u6Zi_57.052904_-135.333533@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "Sitka Business Resource Ctr", "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+1 907 966 3301", "href": "http://api.simplegeo.com/1.0/features/SG_1YHO7yD6hNEBIGN9i4u6Zi_57.052904_-135.333533@1293731153.json", "address": "212 Lake St", "owner": "simplegeo", "postcode": "99835"}}
|
154
|
+
{"geometry": {"type": "Point", "coordinates": [-149.91084, 61.191163]}, "type": "Feature", "id": "SG_2OAKJKk1o7NkwY08AbaWER_61.191163_-149.910840@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Advanced Excavation Svc", "tags": ["excavating", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 337 4218", "href": "http://api.simplegeo.com/1.0/features/SG_2OAKJKk1o7NkwY08AbaWER_61.191163_-149.910840@1293731153.json", "address": "1410 W 32nd Ave", "owner": "simplegeo", "postcode": "99503"}}
|
155
|
+
{"geometry": {"type": "Point", "coordinates": [-147.402017, 64.887497]}, "type": "Feature", "id": "SG_2VIRmfyohJ2hhXc8FOxCa4_64.887497_-147.402017@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Hopper Creek Snowplowing", "tags": ["snow", "removal"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+1 907 488 0225", "href": "http://api.simplegeo.com/1.0/features/SG_2VIRmfyohJ2hhXc8FOxCa4_64.887497_-147.402017@1293731153.json", "address": "630 Tanglewood Rd", "owner": "simplegeo", "postcode": "99712"}}
|
156
|
+
{"geometry": {"type": "Point", "coordinates": [-149.807674, 61.147902]}, "type": "Feature", "id": "SG_0dNQed6GomEcaZtzg2Ti7s_61.147902_-149.807674@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Bear Paw Productions", "tags": ["pattern", "book", "quilt", "mfg"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Crafts & Fabrics"}], "phone": "+1 907 349 7873", "href": "http://api.simplegeo.com/1.0/features/SG_0dNQed6GomEcaZtzg2Ti7s_61.147902_-149.807674@1293731153.json", "address": "4015 Iona Cir", "owner": "simplegeo", "postcode": "99507"}}
|
157
|
+
{"geometry": {"type": "Point", "coordinates": [-147.734517, 64.840985]}, "type": "Feature", "id": "SG_4xn7u8SZflrp5IquLr1iQK_64.840985_-147.734517@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Sunshine Sewing Svc", "tags": ["sewing", "contractor"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Apparel"}], "phone": "+1 907 456 4992", "href": "http://api.simplegeo.com/1.0/features/SG_4xn7u8SZflrp5IquLr1iQK_64.840985_-147.734517@1293731153.json", "address": "944 Cowles St", "owner": "simplegeo", "postcode": "99701"}}
|
158
|
+
{"geometry": {"type": "Point", "coordinates": [-131.809343, 55.445264]}, "type": "Feature", "id": "SG_5lAU4WNyxKZfsOyoN44SWL_55.445264_-131.809343@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Diversified Diving Svc", "tags": ["designer", "marine", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 247 3483", "href": "http://api.simplegeo.com/1.0/features/SG_5lAU4WNyxKZfsOyoN44SWL_55.445264_-131.809343@1293731153.json", "address": "12034 N Tongass Hwy", "owner": "simplegeo", "postcode": "99901"}}
|
159
|
+
{"geometry": {"type": "Point", "coordinates": [-151.375047, 60.711891]}, "type": "Feature", "id": "SG_5ueu5BPJnhSqm9ISITcXc9_60.711891_-151.375047@1293731153", "properties": {"province": "AK", "city": "Kenai", "name": "G & J Refrigeration", "tags": ["refrigerating"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Hardware"}], "phone": "+1 907 776 5284", "href": "http://api.simplegeo.com/1.0/features/SG_5ueu5BPJnhSqm9ISITcXc9_60.711891_-151.375047@1293731153.json", "address": "54716 McKinley Ave", "owner": "simplegeo", "postcode": "99611"}}
|
160
|
+
{"geometry": {"type": "Point", "coordinates": [-134.492148, 58.354868]}, "type": "Feature", "id": "SG_0ZVmHEA9XhyDcZ2mjnUdFq_58.354868_-134.492148@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Counterfitters Inc", "tags": ["top", "counter"], "country": "US", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Furniture"}], "phone": "+1 907 780 4363", "href": "http://api.simplegeo.com/1.0/features/SG_0ZVmHEA9XhyDcZ2mjnUdFq_58.354868_-134.492148@1293731153.json", "address": "5441 Glacier Hwy", "owner": "simplegeo", "postcode": "99801"}}
|
161
|
+
{"geometry": {"type": "Point", "coordinates": [-151.062806, 60.489337]}, "type": "Feature", "id": "SG_3uxNeoas99159Dhn0urPvG_60.489337_-151.062806@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "A Misty Memory", "tags": ["album", "scrapbook"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Stationery & Office Supplies"}], "phone": "+1 907 260 3100", "href": "http://api.simplegeo.com/1.0/features/SG_3uxNeoas99159Dhn0urPvG_60.489337_-151.062806@1293731153.json", "address": "35105 Kenai Spur Hwy", "owner": "simplegeo", "postcode": "99669"}}
|
162
|
+
{"geometry": {"type": "Point", "coordinates": [-151.531807, 59.647482]}, "type": "Feature", "id": "SG_1e1jcVg9ys8pUS5TRN27Vy_59.647482_-151.531807@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Blackberry Bog", "tags": ["shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 235 5668", "href": "http://api.simplegeo.com/1.0/features/SG_1e1jcVg9ys8pUS5TRN27Vy_59.647482_-151.531807@1293731153.json", "address": "564 E Pioneer Ave", "owner": "simplegeo", "postcode": "99603"}}
|
163
|
+
{"geometry": {"type": "Point", "coordinates": [-147.722486, 64.817157]}, "type": "Feature", "id": "SG_7BNt8O5pfg4iDcd9I0Ra8G_64.817157_-147.722486@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Alyeska Pipeline Svc Co", "tags": ["pipe", "line", "company"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Petroleum"}], "phone": "+1 907 787 8777", "href": "http://api.simplegeo.com/1.0/features/SG_7BNt8O5pfg4iDcd9I0Ra8G_64.817157_-147.722486@1293731153.json", "address": "701 Bidwill Ave", "owner": "simplegeo", "postcode": "99701"}}
|
164
|
+
{"geometry": {"type": "Point", "coordinates": [-147.843969, 64.812771]}, "type": "Feature", "id": "SG_4EIhDUk0TnNIoKw3YVKcL9_64.812771_-147.843969@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Tanana Air Svc", "tags": ["aircraft", "leasing", "charter"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Equipment Rental"}], "phone": "+1 907 474 0301", "href": "http://api.simplegeo.com/1.0/features/SG_4EIhDUk0TnNIoKw3YVKcL9_64.812771_-147.843969@1293731153.json", "address": "3730 University Ave S", "owner": "simplegeo", "postcode": "99709"}}
|
165
|
+
{"geometry": {"type": "Point", "coordinates": [-149.759789, 61.195348]}, "type": "Feature", "id": "SG_6zpn9LPWxMp7Ll3S0FNxK1_61.195348_-149.759789@1293731153", "properties": {"province": "AK", "website": "www.fafc.org", "name": "KAFC", "tags": ["company", "broadcasting"], "country": "US", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": "Radio Station"}], "phone": "+1 907 222 4826", "href": "http://api.simplegeo.com/1.0/features/SG_6zpn9LPWxMp7Ll3S0FNxK1_61.195348_-149.759789@1293731153.json", "city": "Anchorage", "address": "6401 E Northern Lights Blvd", "owner": "simplegeo", "postcode": "99504"}}
|
166
|
+
{"geometry": {"type": "Point", "coordinates": [-149.426598, 61.584131]}, "type": "Feature", "id": "SG_24Yu8tPOKWXe9sW0uj9v9T_61.584131_-149.426598@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Alaska USA Mortgage Co", "tags": ["loan", "real estate"], "country": "US", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Bank"}], "phone": "+1 907 376 2694", "href": "http://api.simplegeo.com/1.0/features/SG_24Yu8tPOKWXe9sW0uj9v9T_61.584131_-149.426598@1293731153.json", "address": "851 E Usa Cir", "owner": "simplegeo", "postcode": "99654"}}
|
167
|
+
{"geometry": {"type": "Point", "coordinates": [-135.44482, 59.236526]}, "type": "Feature", "id": "SG_6NimmupVZvdwQueIvJtHtM_59.236526_-135.444820@1293731153", "properties": {"province": "AK", "website": "www.capchoice.com", "name": "Captain's Choice Motel", "city": "Haines", "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 766 3111", "href": "http://api.simplegeo.com/1.0/features/SG_6NimmupVZvdwQueIvJtHtM_59.236526_-135.444820@1293731153.json", "address": "108 2nd Ave", "owner": "simplegeo", "postcode": "99827"}}
|
168
|
+
{"geometry": {"type": "Point", "coordinates": [-149.863864, 61.11305]}, "type": "Feature", "id": "SG_12HyPEIMirGVoOLJlpWxRs_61.113050_-149.863864@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "International Bridge Corp", "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 336 4422", "href": "http://api.simplegeo.com/1.0/features/SG_12HyPEIMirGVoOLJlpWxRs_61.113050_-149.863864@1293731153.json", "address": "12050 Industry Way", "owner": "simplegeo", "postcode": "99515"}}
|
169
|
+
{"geometry": {"type": "Point", "coordinates": [-151.185799, 60.56151]}, "type": "Feature", "id": "SG_1bPzziTxuI5BM0ThfdIWNc_60.561510_-151.185799@1293731153", "properties": {"province": "AK", "city": "Kenai", "name": "Nordic Log Homes", "tags": ["prefabricated", "wood", "mfg"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Buildings"}], "phone": "+1 907 283 6535", "href": "http://api.simplegeo.com/1.0/features/SG_1bPzziTxuI5BM0ThfdIWNc_60.561510_-151.185799@1293731153.json", "address": "102 Highbush Ln", "owner": "simplegeo", "postcode": "99611"}}
|
170
|
+
{"geometry": {"type": "Point", "coordinates": [-131.6373, 55.343261]}, "type": "Feature", "id": "SG_0jVyiYTvIsm7CMb9hg1YBy_55.343261_-131.637300@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Ketchikan Homeless Shelter", "tags": ["organization", "welfare"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 225 4194", "href": "http://api.simplegeo.com/1.0/features/SG_0jVyiYTvIsm7CMb9hg1YBy_55.343261_-131.637300@1293731153.json", "address": "628 Park Ave", "owner": "simplegeo", "postcode": "99901"}}
|
171
|
+
{"geometry": {"type": "Point", "coordinates": [-149.738374, 61.195361]}, "type": "Feature", "id": "SG_1Gmk21AfTsRdKbQuVFSkIH_61.195361_-149.738374@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Sell 4 Free Real Estate Value", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 561 3733", "href": "http://api.simplegeo.com/1.0/features/SG_1Gmk21AfTsRdKbQuVFSkIH_61.195361_-149.738374@1293731153.json", "address": "7731 E Northern Lights Blvd", "owner": "simplegeo", "postcode": "99504"}}
|
172
|
+
{"geometry": {"type": "Point", "coordinates": [-149.441363, 60.102758]}, "type": "Feature", "id": "SG_60c7TtXI44e6dkTZ7Tp0ph_60.102758_-149.441363@1293731153", "properties": {"province": "AK", "city": "Seward", "name": "Liberty Theatre", "country": "US", "classifiers": [{"category": "Cinema", "type": "Entertainment", "subcategory": "Movie Theater"}], "phone": "+1 907 224 5418", "href": "http://api.simplegeo.com/1.0/features/SG_60c7TtXI44e6dkTZ7Tp0ph_60.102758_-149.441363@1293731153.json", "address": "305 Adams St", "owner": "simplegeo", "postcode": "99664"}}
|
173
|
+
{"geometry": {"type": "Point", "coordinates": [-135.339296, 57.049185]}, "type": "Feature", "id": "SG_73ZW0EuM6febTyL1nI2vfu_57.049185_-135.339296@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "Acupuncture & Oriental Med", "tags": ["clinic"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 747 6915", "href": "http://api.simplegeo.com/1.0/features/SG_73ZW0EuM6febTyL1nI2vfu_57.049185_-135.339296@1293731153.json", "address": "114 Lincoln St", "owner": "simplegeo", "postcode": "99835"}}
|
174
|
+
{"geometry": {"type": "Point", "coordinates": [-147.733359, 64.84179]}, "type": "Feature", "id": "SG_1NJkWPZ6MmPAFk5tXEl8iP_64.841790_-147.733359@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Commercial Refrigeration Spec", "tags": ["refrigerating"], "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Hardware"}], "phone": "+1 907 451 6896", "href": "http://api.simplegeo.com/1.0/features/SG_1NJkWPZ6MmPAFk5tXEl8iP_64.841790_-147.733359@1293731153.json", "address": "917 8th Ave", "owner": "simplegeo", "postcode": "99701"}}
|
175
|
+
{"geometry": {"type": "Point", "coordinates": [-147.708488, 64.85191]}, "type": "Feature", "id": "SG_0LT8RUZkLViMLrA8ZKHyHf_64.851910_-147.708488@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Regency Court Office", "tags": ["mall", "shopping", "center"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Operator"}], "phone": "+1 907 452 4992", "href": "http://api.simplegeo.com/1.0/features/SG_0LT8RUZkLViMLrA8ZKHyHf_64.851910_-147.708488@1293731153.json", "address": "59 College Rd", "owner": "simplegeo", "postcode": "99701"}}
|
176
|
+
{"geometry": {"type": "Point", "coordinates": [-152.446425, 57.779538]}, "type": "Feature", "id": "SG_1s7oMKLZtSIh0STVFrXzLm_57.779538_-152.446425@1293731153", "properties": {"province": "AK", "website": "www.kodiakfishmealcompany.com", "name": "Kodiak Fishmeal Company", "tags": ["feed", "mfg", "exporter", "prepared"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}, {"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Durable Goods & Equipment"}], "phone": "+1 907 486 3171", "href": "http://api.simplegeo.com/1.0/features/SG_1s7oMKLZtSIh0STVFrXzLm_57.779538_-152.446425@1293731153.json", "city": "Kodiak", "address": "915 Gibson Cove Rd", "owner": "simplegeo", "postcode": "99615"}}
|
177
|
+
{"geometry": {"type": "Point", "coordinates": [-149.797553, 61.143037]}, "type": "Feature", "id": "SG_4NIEQITwTYniy3ah34G4G0_61.143037_-149.797553@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "J L Stonebraker & Assoc", "tags": ["general", "contractor"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Engineering"}], "phone": "+1 907 346 1645", "href": "http://api.simplegeo.com/1.0/features/SG_4NIEQITwTYniy3ah34G4G0_61.143037_-149.797553@1293731153.json", "address": "8520 Jupiter Dr", "owner": "simplegeo", "postcode": "99507"}}
|
178
|
+
{"geometry": {"type": "Point", "coordinates": [-149.834357, 61.098995]}, "type": "Feature", "id": "SG_5YhxDK3nvGMrAn5lJBS6vW_61.098995_-149.834357@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "To The Point Communication", "tags": ["counselor", "public", "relations"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 345 4230", "href": "http://api.simplegeo.com/1.0/features/SG_5YhxDK3nvGMrAn5lJBS6vW_61.098995_-149.834357@1293731153.json", "address": "2410 Tradewind Dr", "owner": "simplegeo", "postcode": "99516"}}
|
179
|
+
{"geometry": {"type": "Point", "coordinates": [-149.409608, 61.577028]}, "type": "Feature", "id": "SG_6PoB414TkSXq7WPGZnWXj1_61.577028_-149.409608@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Alaska Eye Care Ctr", "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Optometrist"}], "phone": "+1 907 376 5266", "href": "http://api.simplegeo.com/1.0/features/SG_6PoB414TkSXq7WPGZnWXj1_61.577028_-149.409608@1293731153.json", "address": "1700 E Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
180
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897492, 61.214716]}, "type": "Feature", "id": "SG_5zUZP7x42mijbbGF0jzidR_61.214716_-149.897492@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "TKCC-Nhti JV II", "tags": ["commercial"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 565 7666", "href": "http://api.simplegeo.com/1.0/features/SG_5zUZP7x42mijbbGF0jzidR_61.214716_-149.897492@1293731153.json", "address": "711 H St", "owner": "simplegeo", "postcode": "99501"}}
|
181
|
+
{"geometry": {"type": "Point", "coordinates": [-150.985105, 60.499554]}, "type": "Feature", "id": "SG_42ta8YnlgJcZTlr8aPw0as_60.499554_-150.985105@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Cookie's Tender Care", "tags": ["home"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+1 907 262 6401", "href": "http://api.simplegeo.com/1.0/features/SG_42ta8YnlgJcZTlr8aPw0as_60.499554_-150.985105@1293731153.json", "address": "41524 Grove Ave", "owner": "simplegeo", "postcode": "99669"}}
|
182
|
+
{"geometry": {"type": "Point", "coordinates": [-149.43864, 61.583019]}, "type": "Feature", "id": "SG_0Zdk569ERsA8smahsE0nut_61.583019_-149.438640@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Portamedic", "tags": ["examination", "insurance"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Clinic"}], "phone": "+1 907 357 3966", "href": "http://api.simplegeo.com/1.0/features/SG_0Zdk569ERsA8smahsE0nut_61.583019_-149.438640@1293731153.json", "address": "500 E Swanson Ave", "owner": "simplegeo", "postcode": "99654"}}
|
183
|
+
{"geometry": {"type": "Point", "coordinates": [-149.938161, 61.197062]}, "type": "Feature", "id": "SG_1bTsUWTazuzMXafreiGOGL_61.197062_-149.938161@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Talbot & Assoc", "tags": ["consultant", "business"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 644 8777", "href": "http://api.simplegeo.com/1.0/features/SG_1bTsUWTazuzMXafreiGOGL_61.197062_-149.938161@1293731153.json", "address": "2378 Captain Cook Dr", "owner": "simplegeo", "postcode": "99517"}}
|
184
|
+
{"geometry": {"type": "Point", "coordinates": [-149.518481, 61.313379]}, "type": "Feature", "id": "SG_4jMPc36soKFfKlTjQtwsD9_61.313379_-149.518481@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "Frontier Fire Protection LLC", "tags": ["installation", "sprinkler", "fire", "consultant", "system", "protection"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}, {"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+1 907 694 4696", "href": "http://api.simplegeo.com/1.0/features/SG_4jMPc36soKFfKlTjQtwsD9_61.313379_-149.518481@1293731153.json", "address": "19546 3rd St", "owner": "simplegeo", "postcode": "99577"}}
|
185
|
+
{"geometry": {"type": "Point", "coordinates": [-149.85314, 61.108574]}, "type": "Feature", "id": "SG_6nc8usRJbaSZt9QVJo2Wuq_61.108574_-149.853140@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Caffe D'Arte Dist/Sappore Inc", "tags": ["shop", "coffee"], "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 345 9369", "href": "http://api.simplegeo.com/1.0/features/SG_6nc8usRJbaSZt9QVJo2Wuq_61.108574_-149.853140@1293731153.json", "address": "1530 Huffman Rd", "owner": "simplegeo", "postcode": "99515"}}
|
186
|
+
{"geometry": {"type": "Point", "coordinates": [-131.634771, 55.341412]}, "type": "Feature", "id": "SG_1qGmPoGouuqKj4gpLrrHQX_55.341412_-131.634771@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Yellow Taxi", "tags": ["taxicab"], "country": "US", "classifiers": [{"category": "Taxi", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 225 0528", "href": "http://api.simplegeo.com/1.0/features/SG_1qGmPoGouuqKj4gpLrrHQX_55.341412_-131.634771@1293731153.json", "address": "531 Deermount St", "owner": "simplegeo", "postcode": "99901"}}
|
187
|
+
{"geometry": {"type": "Point", "coordinates": [-149.866831, 61.144657]}, "type": "Feature", "id": "SG_6vPJmqDgK8O07i9sfTiHSv_61.144657_-149.866831@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Walleen's Gallery", "tags": ["art", "gallery", "dealer"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": ""}], "phone": "+1 907 336 1819", "href": "http://api.simplegeo.com/1.0/features/SG_6vPJmqDgK8O07i9sfTiHSv_61.144657_-149.866831@1293731153.json", "address": "800 E Dimond Blvd", "owner": "simplegeo", "postcode": "99515"}}
|
188
|
+
{"geometry": {"type": "Point", "coordinates": [-149.878828, 61.138274]}, "type": "Feature", "id": "SG_6ITNHGVWM8a9laHoQOuvGp_61.138274_-149.878828@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Stgeorge Chadux Corporation", "tags": ["fuel", "contracting", "general", "sales", "environmental"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 272 9886", "href": "http://api.simplegeo.com/1.0/features/SG_6ITNHGVWM8a9laHoQOuvGp_61.138274_-149.878828@1293731153.json", "address": "9135 King St", "owner": "simplegeo", "postcode": "99515"}}
|
189
|
+
{"geometry": {"type": "Point", "coordinates": [-149.845681, 61.217549]}, "type": "Feature", "id": "SG_7GmB2IoSb91WtJN3J5sjBg_61.217549_-149.845681@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Chaz Limited Collision Express", "tags": ["body", "automobile", "painting"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 792 2500", "href": "http://api.simplegeo.com/1.0/features/SG_7GmB2IoSb91WtJN3J5sjBg_61.217549_-149.845681@1293731153.json", "address": "1801 E 5th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
190
|
+
{"geometry": {"type": "Point", "coordinates": [-149.79838, 61.126756]}, "type": "Feature", "id": "SG_4ZqSSWVhK5pW8NelFHqUBf_61.126756_-149.798380@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "K Burgess Consulting", "tags": ["consultant", "business"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 346 3731", "href": "http://api.simplegeo.com/1.0/features/SG_4ZqSSWVhK5pW8NelFHqUBf_61.126756_-149.798380@1293731153.json", "address": "4535 E 104th Ave", "owner": "simplegeo", "postcode": "99507"}}
|
191
|
+
{"geometry": {"type": "Point", "coordinates": [-149.934311, 61.177219]}, "type": "Feature", "id": "SG_78mzIijksUhkmReEvRu0eC_61.177219_-149.934311@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Real Estate Appraisers", "tags": ["appraiser"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 243 6609", "href": "http://api.simplegeo.com/1.0/features/SG_78mzIijksUhkmReEvRu0eC_61.177219_-149.934311@1293731153.json", "address": "2701 Aspen Dr", "owner": "simplegeo", "postcode": "99517"}}
|
192
|
+
{"geometry": {"type": "Point", "coordinates": [-147.716124, 64.83689]}, "type": "Feature", "id": "SG_6JFOPgjAooMTOt2bH3Dwnb_64.836890_-147.716124@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Advanced Pain Ctr Of Alaska", "tags": ["clinic"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 374 6602", "href": "http://api.simplegeo.com/1.0/features/SG_6JFOPgjAooMTOt2bH3Dwnb_64.836890_-147.716124@1293731153.json", "address": "506 Gaffney Rd", "owner": "simplegeo", "postcode": "99701"}}
|
193
|
+
{"geometry": {"type": "Point", "coordinates": [-149.424977, 61.587351]}, "type": "Feature", "id": "SG_0YjMaXLlhMpiY40IHWlaXG_61.587351_-149.424977@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "LA Fiesta Dos", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 373 0599", "href": "http://api.simplegeo.com/1.0/features/SG_0YjMaXLlhMpiY40IHWlaXG_61.587351_-149.424977@1293731153.json", "address": "1051 Bogard Rd", "owner": "simplegeo", "postcode": "99654"}}
|
194
|
+
{"geometry": {"type": "Point", "coordinates": [-149.369303, 61.569246]}, "type": "Feature", "id": "SG_3wqYxkxAzaqvcpv9nhwcjQ_61.569246_-149.369303@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Lor Bud's Drywall", "tags": ["dry wall", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 357 2300", "href": "http://api.simplegeo.com/1.0/features/SG_3wqYxkxAzaqvcpv9nhwcjQ_61.569246_-149.369303@1293731153.json", "address": "3170 Southview Dr", "owner": "simplegeo", "postcode": "99654"}}
|
195
|
+
{"geometry": {"type": "Point", "coordinates": [-149.91814, 61.187387]}, "type": "Feature", "id": "SG_6Yc1eLNjvJkk4IzV1YAq1Z_61.187387_-149.918140@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "One Call Does It All", "tags": ["snow", "removal"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+1 907 274 6913", "href": "http://api.simplegeo.com/1.0/features/SG_6Yc1eLNjvJkk4IzV1YAq1Z_61.187387_-149.918140@1293731153.json", "address": "3608 Oregon Dr", "owner": "simplegeo", "postcode": "99517"}}
|
196
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897884, 61.188231]}, "type": "Feature", "id": "SG_0DnsPDhGW5jrbE44JFicex_61.188231_-149.897884@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "LA Luz Del Mundo", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 770 6685", "href": "http://api.simplegeo.com/1.0/features/SG_0DnsPDhGW5jrbE44JFicex_61.188231_-149.897884@1293731153.json", "address": "3545 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
197
|
+
{"geometry": {"type": "Point", "coordinates": [-147.861053, 64.845344]}, "type": "Feature", "id": "SG_1KqK73ebmhHL0koyQjoLPT_64.845344_-147.861053@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Flying School", "tags": ["aircraft", "school"], "country": "US", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Special Training"}], "phone": "+1 907 455 8250", "href": "http://api.simplegeo.com/1.0/features/SG_1KqK73ebmhHL0koyQjoLPT_64.845344_-147.861053@1293731153.json", "address": "228 Woodridge Dr", "owner": "simplegeo", "postcode": "99709"}}
|
198
|
+
{"geometry": {"type": "Point", "coordinates": [-149.359727, 61.579816]}, "type": "Feature", "id": "SG_5KcPbngQwJichOZw7tFJYi_61.579816_-149.359727@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Aarons Flooring & Cabinetry", "tags": ["resurfacing", "floor", "laying", "refinishing", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 376 3454", "href": "http://api.simplegeo.com/1.0/features/SG_5KcPbngQwJichOZw7tFJYi_61.579816_-149.359727@1293731153.json", "address": "400 Seward Meridian Rd", "owner": "simplegeo", "postcode": "99654"}}
|
199
|
+
{"geometry": {"type": "Point", "coordinates": [-149.892293, 61.19522]}, "type": "Feature", "id": "SG_4qycYiFVzZh03JJzj5fkM4_61.195220_-149.892293@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "CHI Of Alaska Inc", "country": "US", "classifiers": [{"category": "Insurance", "type": "Services", "subcategory": "Insurance Agent"}], "phone": "+1 907 276 7667", "href": "http://api.simplegeo.com/1.0/features/SG_4qycYiFVzZh03JJzj5fkM4_61.195220_-149.892293@1293731153.json", "address": "507 W Northern Lights Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
200
|
+
{"geometry": {"type": "Point", "coordinates": [-147.81808, 64.849084]}, "type": "Feature", "id": "SG_2xDsczmCdcuRHKkkqYxlgh_64.849084_-147.818080@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Crime Stoppers", "tags": ["organization", "welfare"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 456 2583", "href": "http://api.simplegeo.com/1.0/features/SG_2xDsczmCdcuRHKkkqYxlgh_64.849084_-147.818080@1293731153.json", "address": "3875 Geist Rd", "owner": "simplegeo", "postcode": "99709"}}
|
201
|
+
{"geometry": {"type": "Point", "coordinates": [-149.895658, 61.220447]}, "type": "Feature", "id": "SG_3ixIGlpSZzQFIGhPvuYg2v_61.220447_-149.895658@1293731153", "properties": {"province": "AK", "website": "www.alaskanha.org", "name": "Alaska Natural History Assn", "tags": ["organization", "nonprofit", "educational", "dealer"], "country": "US", "classifiers": [{"category": "Museum", "type": "Entertainment", "subcategory": ""}, {"category": "Shopping", "type": "Retail Goods", "subcategory": "Books"}], "phone": "+1 907 274 8440", "href": "http://api.simplegeo.com/1.0/features/SG_3ixIGlpSZzQFIGhPvuYg2v_61.220447_-149.895658@1293731153.json", "city": "Anchorage", "address": "750 W 2nd Ave", "owner": "simplegeo", "postcode": "99501"}}
|
202
|
+
{"geometry": {"type": "Point", "coordinates": [-149.947171, 61.137552]}, "type": "Feature", "id": "SG_7RaBlqdeTH3C59bIvvbZgP_61.137552_-149.947171@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Maranatha Full Gospel Fllwshp", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 243 2118", "href": "http://api.simplegeo.com/1.0/features/SG_7RaBlqdeTH3C59bIvvbZgP_61.137552_-149.947171@1293731153.json", "address": "3541 W Dimond Blvd", "owner": "simplegeo", "postcode": "99502"}}
|
203
|
+
{"geometry": {"type": "Point", "coordinates": [-149.827582, 61.140244]}, "type": "Feature", "id": "SG_50whelQ2zS4NWnipQEzI2k_61.140244_-149.827582@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Shoot-N-Edit", "tags": ["taping"], "country": "US", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": "Film & Video Production"}], "phone": "+1 907 677 9001", "href": "http://api.simplegeo.com/1.0/features/SG_50whelQ2zS4NWnipQEzI2k_61.140244_-149.827582@1293731153.json", "address": "2800 North Cir", "owner": "simplegeo", "postcode": "99507"}}
|
204
|
+
{"geometry": {"type": "Point", "coordinates": [-149.893491, 61.218551]}, "type": "Feature", "id": "SG_0RPL4F636YcH4C7aTPlO1A_61.218551_-149.893491@1293731153", "properties": {"province": "AK", "website": "www.grizzlysgifts.com", "name": "Grizzly Inc", "tags": ["shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 276 4933", "href": "http://api.simplegeo.com/1.0/features/SG_0RPL4F636YcH4C7aTPlO1A_61.218551_-149.893491@1293731153.json", "city": "Anchorage", "address": "501 W 4th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
205
|
+
{"geometry": {"type": "Point", "coordinates": [-149.886602, 61.189506]}, "type": "Feature", "id": "SG_0Uqdey2zaBO9LWG2q8yjGL_61.189506_-149.886602@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Cathy Hoaks", "country": "US", "classifiers": [{"category": "Insurance", "type": "Services", "subcategory": "Insurance Agent"}], "phone": "+1 907 770 2422", "href": "http://api.simplegeo.com/1.0/features/SG_0Uqdey2zaBO9LWG2q8yjGL_61.189506_-149.886602@1293731153.json", "address": "3300 C St", "owner": "simplegeo", "postcode": "99503"}}
|
206
|
+
{"geometry": {"type": "Point", "coordinates": [-149.871432, 61.212566]}, "type": "Feature", "id": "SG_3ctami1SEGW840jAd1B8rw_61.212566_-149.871432@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "US Immigration Naturalization", "tags": ["federal", "affairs"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 271 4953", "href": "http://api.simplegeo.com/1.0/features/SG_3ctami1SEGW840jAd1B8rw_61.212566_-149.871432@1293731153.json", "address": "620 E 10th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
207
|
+
{"geometry": {"type": "Point", "coordinates": [-149.416883, 61.6123]}, "type": "Feature", "id": "SG_5Uu8DH9ud6vkmCCab0EJzf_61.612300_-149.416883@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "Siekmeier & Siekmeier", "tags": ["parts", "snowmobile", "accessory"], "country": "US", "classifiers": [{"category": "Autos & Motor Vehicles", "type": "Retail Goods", "subcategory": "Automobile Sales"}], "phone": "+1 907 376 5745", "href": "http://api.simplegeo.com/1.0/features/SG_5Uu8DH9ud6vkmCCab0EJzf_61.612300_-149.416883@1293731153.json", "address": "2750 Holly Way", "owner": "simplegeo", "postcode": "99654"}}
|
208
|
+
{"geometry": {"type": "Point", "coordinates": [-149.892114, 61.156376]}, "type": "Feature", "id": "SG_7drIJ91CV33WBgvHvjfAjt_61.156376_-149.892114@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Hi-Tec Auto", "tags": ["repairing", "automobile"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 522 5656", "href": "http://api.simplegeo.com/1.0/features/SG_7drIJ91CV33WBgvHvjfAjt_61.156376_-149.892114@1293731153.json", "address": "7133 Arctic Blvd", "owner": "simplegeo", "postcode": "99518"}}
|
209
|
+
{"geometry": {"type": "Point", "coordinates": [-149.899141, 61.214685]}, "type": "Feature", "id": "SG_0K0oQ2bxYZ8zEBRZidjd2p_61.214685_-149.899141@1293731153", "properties": {"province": "AK", "website": "www.alaskadatatech.com", "name": "Alaska Data Technologies", "city": "Anchorage", "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Computer Services"}], "phone": "+1 907 278 8470", "href": "http://api.simplegeo.com/1.0/features/SG_0K0oQ2bxYZ8zEBRZidjd2p_61.214685_-149.899141@1293731153.json", "address": "825 W 8th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
210
|
+
{"geometry": {"type": "Point", "coordinates": [-147.79233, 64.823872]}, "type": "Feature", "id": "SG_1uXowPURpvbXeXmezFDdVc_64.823872_-147.792330@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Hite Inc", "tags": ["general", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 474 4722", "href": "http://api.simplegeo.com/1.0/features/SG_1uXowPURpvbXeXmezFDdVc_64.823872_-147.792330@1293731153.json", "address": "2750 Picket Pl", "owner": "simplegeo", "postcode": "99709"}}
|
211
|
+
{"geometry": {"type": "Point", "coordinates": [-134.406715, 58.299691]}, "type": "Feature", "id": "SG_7b3KAEczM9q26MWgaQ6C91_58.299691_-134.406715@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Juneau City Treasury", "tags": ["city", "taxation"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 586 5261", "href": "http://api.simplegeo.com/1.0/features/SG_7b3KAEczM9q26MWgaQ6C91_58.299691_-134.406715@1293731153.json", "address": "155 S Seward St", "owner": "simplegeo", "postcode": "99801"}}
|
212
|
+
{"geometry": {"type": "Point", "coordinates": [-149.957497, 61.175637]}, "type": "Feature", "id": "SG_7YQ7oCjLthda4yMFkXbkuB_61.175637_-149.957497@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "US Civil Aviation Security", "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 271 2243", "href": "http://api.simplegeo.com/1.0/features/SG_7YQ7oCjLthda4yMFkXbkuB_61.175637_-149.957497@1293731153.json", "address": "4000 W 50th Ave", "owner": "simplegeo", "postcode": "99502"}}
|
213
|
+
{"geometry": {"type": "Point", "coordinates": [-156.754559, 71.298444]}, "type": "Feature", "id": "SG_25gRmTuycJ0OpVtjwADvlA_71.298444_-156.754559@1293731153", "properties": {"province": "AK", "city": "Barrow", "name": "Arctic Women In Crisis", "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 852 0261", "href": "http://api.simplegeo.com/1.0/features/SG_25gRmTuycJ0OpVtjwADvlA_71.298444_-156.754559@1293731153.json", "address": "4470 N Star St", "owner": "simplegeo", "postcode": "99723"}}
|
214
|
+
{"geometry": {"type": "Point", "coordinates": [-150.972921, 60.470174]}, "type": "Feature", "id": "SG_2ON9s8y2Kj829HGKWbL6oy_60.470174_-150.972921@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Don Middleton", "tags": ["a", "boardwalk", "constructing", "fishing"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 262 2105", "href": "http://api.simplegeo.com/1.0/features/SG_2ON9s8y2Kj829HGKWbL6oy_60.470174_-150.972921@1293731153.json", "address": "33805 Keystone Dr", "owner": "simplegeo", "postcode": "99669"}}
|
215
|
+
{"geometry": {"type": "Point", "coordinates": [-151.075188, 60.479828]}, "type": "Feature", "id": "SG_79YGcKj3VZTDhnlGAqPHPL_60.479828_-151.075188@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Soldotna Little League Bingo", "tags": ["bingo", "game"], "country": "US", "classifiers": [{"category": "Recreation", "type": "Entertainment", "subcategory": ""}], "phone": "+1 907 262 5309", "href": "http://api.simplegeo.com/1.0/features/SG_79YGcKj3VZTDhnlGAqPHPL_60.479828_-151.075188@1293731153.json", "address": "44619 Sterling Hwy", "owner": "simplegeo", "postcode": "99669"}}
|
216
|
+
{"geometry": {"type": "Point", "coordinates": [-149.895797, 61.173709]}, "type": "Feature", "id": "SG_1T4mx4382UlcNyDatPBd9s_61.173709_-149.895797@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Memory Lane Al Spec Pet Cmtry", "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Animal Services"}], "phone": "+1 907 562 2999", "href": "http://api.simplegeo.com/1.0/features/SG_1T4mx4382UlcNyDatPBd9s_61.173709_-149.895797@1293731153.json", "address": "549 W International Airport Rd", "owner": "simplegeo", "postcode": "99518"}}
|
217
|
+
{"geometry": {"type": "Point", "coordinates": [-149.84296, 61.133188]}, "type": "Feature", "id": "SG_2T5X0SPoYtnwrDwQoCpTrs_61.133188_-149.842960@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Horizon Property Management", "tags": ["management"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 522 8970", "href": "http://api.simplegeo.com/1.0/features/SG_2T5X0SPoYtnwrDwQoCpTrs_61.133188_-149.842960@1293731153.json", "address": "9725 Independence Dr", "owner": "simplegeo", "postcode": "99507"}}
|
218
|
+
{"geometry": {"type": "Point", "coordinates": [-149.763336, 61.192566]}, "type": "Feature", "id": "SG_29i69u7e8DAqpB3y5LfUZo_61.192566_-149.763336@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Europa Painting", "tags": ["hanging", "painter", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 338 1741", "href": "http://api.simplegeo.com/1.0/features/SG_29i69u7e8DAqpB3y5LfUZo_61.192566_-149.763336@1293731153.json", "address": "2821 Baxter Rd", "owner": "simplegeo", "postcode": "99504"}}
|
219
|
+
{"geometry": {"type": "Point", "coordinates": [-151.130824, 60.492556]}, "type": "Feature", "id": "SG_4CCvipHocmL4DGKl1XDUvr_60.492556_-151.130824@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Country Apartments", "tags": ["apartment"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Operator"}], "phone": "+1 907 262 7881", "href": "http://api.simplegeo.com/1.0/features/SG_4CCvipHocmL4DGKl1XDUvr_60.492556_-151.130824@1293731153.json", "address": "35305 Poppy Ridge Rd", "owner": "simplegeo", "postcode": "99669"}}
|
220
|
+
{"geometry": {"type": "Point", "coordinates": [-134.42144, 58.301629]}, "type": "Feature", "id": "SG_518nnbUeJVUJdRIv3p2tHh_58.301629_-134.421440@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Juneau Sports Assn", "tags": ["athletic"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Membership Organization"}], "phone": "+1 907 463 3633", "href": "http://api.simplegeo.com/1.0/features/SG_518nnbUeJVUJdRIv3p2tHh_58.301629_-134.421440@1293731153.json", "address": "923 Glacier Ave", "owner": "simplegeo", "postcode": "99801"}}
|
221
|
+
{"geometry": {"type": "Point", "coordinates": [-132.38612, 56.465593]}, "type": "Feature", "id": "SG_2SfawjBdLekDHlGwV1CSnw_56.465593_-132.386120@1293731153", "properties": {"province": "AK", "city": "Wrangell", "name": "Breakwater Seafoods", "country": "US", "classifiers": [{"category": "Wholesale", "type": "Manufacturing & Wholesale Goods", "subcategory": "Seafood"}], "phone": "+1 907 874 3642", "href": "http://api.simplegeo.com/1.0/features/SG_2SfawjBdLekDHlGwV1CSnw_56.465593_-132.386120@1293731153.json", "address": "319 Ocean View Dr", "owner": "simplegeo", "postcode": "99929"}}
|
222
|
+
{"geometry": {"type": "Point", "coordinates": [-151.152352, 60.490104]}, "type": "Feature", "id": "SG_5jX7izshB6m0XeOK3J1XIX_60.490104_-151.152352@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "C & C Tops & Bottoms", "tags": ["carpentry", "top", "counter", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}, {"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Furniture"}], "phone": "+1 907 260 8402", "href": "http://api.simplegeo.com/1.0/features/SG_5jX7izshB6m0XeOK3J1XIX_60.490104_-151.152352@1293731153.json", "address": "35125 K B Dr", "owner": "simplegeo", "postcode": "99669"}}
|
223
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897567, 61.214615]}, "type": "Feature", "id": "SG_680T0eJalZYzm7gp8jyOj7_61.214615_-149.897567@1293731153", "properties": {"province": "AK", "website": "www.lukehart.com", "name": "Eagle Strategies Corp", "tags": ["advisory", "financial"], "country": "US", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Investment Brokerage"}], "phone": "+1 907 257 5213", "href": "http://api.simplegeo.com/1.0/features/SG_680T0eJalZYzm7gp8jyOj7_61.214615_-149.897567@1293731153.json", "city": "Anchorage", "address": "701 W 8th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
224
|
+
{"geometry": {"type": "Point", "coordinates": [-147.713856, 64.838894]}, "type": "Feature", "id": "SG_0qpHRiq0xP5hSmJxI8yL40_64.838894_-147.713856@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Professional Pharmacy", "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Pharmacy"}], "phone": "+1 907 452 2556", "href": "http://api.simplegeo.com/1.0/features/SG_0qpHRiq0xP5hSmJxI8yL40_64.838894_-147.713856@1293731153.json", "address": "1001 Noble St", "owner": "simplegeo", "postcode": "99701"}}
|
225
|
+
{"geometry": {"type": "Point", "coordinates": [-149.544637, 61.314354]}, "type": "Feature", "id": "SG_5TCf2giC22y1bmLyiVWaSB_61.314354_-149.544637@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "Campfire Alaska Council", "tags": ["youth", "organization", "center"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 694 3755", "href": "http://api.simplegeo.com/1.0/features/SG_5TCf2giC22y1bmLyiVWaSB_61.314354_-149.544637@1293731153.json", "address": "18001 Baronof Ave", "owner": "simplegeo", "postcode": "99577"}}
|
226
|
+
{"geometry": {"type": "Point", "coordinates": [-149.770781, 61.209796]}, "type": "Feature", "id": "SG_0Hbk9wtJQD5F4v38iqrxnY_61.209796_-149.770781@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "AJC Construction Svc", "tags": ["general", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 337 9991", "href": "http://api.simplegeo.com/1.0/features/SG_0Hbk9wtJQD5F4v38iqrxnY_61.209796_-149.770781@1293731153.json", "address": "6189 Debarr Rd", "owner": "simplegeo", "postcode": "99504"}}
|
227
|
+
{"geometry": {"type": "Point", "coordinates": [-149.886935, 61.198807]}, "type": "Feature", "id": "SG_3BEKwScShysVAY3IDV2Glb_61.198807_-149.886935@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Siam Spicy Thai Restaurant", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 338 0757", "href": "http://api.simplegeo.com/1.0/features/SG_3BEKwScShysVAY3IDV2Glb_61.198807_-149.886935@1293731153.json", "address": "2409 C St", "owner": "simplegeo", "postcode": "99503"}}
|
228
|
+
{"geometry": {"type": "Point", "coordinates": [-149.79263, 61.199323]}, "type": "Feature", "id": "SG_5OqJGVWgK8T2Pq0b1cgzuq_61.199323_-149.792630@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Chenery's Pro Repping", "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+1 907 929 7913", "href": "http://api.simplegeo.com/1.0/features/SG_5OqJGVWgK8T2Pq0b1cgzuq_61.199323_-149.792630@1293731153.json", "address": "2240 Nash Cir", "owner": "simplegeo", "postcode": "99508"}}
|
229
|
+
{"geometry": {"type": "Point", "coordinates": [-152.408031, 57.788308]}, "type": "Feature", "id": "SG_4fn6HaRv6u76SCQLeO3Nv9_57.788308_-152.408031@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "Goldsmith", "tags": ["jeweler"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Jewelry"}], "phone": "+1 907 481 3033", "href": "http://api.simplegeo.com/1.0/features/SG_4fn6HaRv6u76SCQLeO3Nv9_57.788308_-152.408031@1293731153.json", "address": "518 Marine Way W", "owner": "simplegeo", "postcode": "99615"}}
|
230
|
+
{"geometry": {"type": "Point", "coordinates": [-143.608261, 70.126144]}, "type": "Feature", "id": "SG_0PijEMN7aGPkSJwNOSlEUX_70.126144_-143.608261@1293731153", "properties": {"province": "AK", "city": "Kaktovik", "name": "Kaktovik Presbyterian Church", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 640 6612", "href": "http://api.simplegeo.com/1.0/features/SG_0PijEMN7aGPkSJwNOSlEUX_70.126144_-143.608261@1293731153.json", "address": "101 1st St", "owner": "simplegeo", "postcode": "99747"}}
|
231
|
+
{"geometry": {"type": "Point", "coordinates": [-135.34187, 57.051695]}, "type": "Feature", "id": "SG_6gX9nuxMNpd1GZsIOMQgXx_57.051695_-135.341870@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "Sitka Electronics Lab", "tags": ["equipment", "electronic", "supply"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}], "phone": "+1 907 747 6570", "href": "http://api.simplegeo.com/1.0/features/SG_6gX9nuxMNpd1GZsIOMQgXx_57.051695_-135.341870@1293731153.json", "address": "232 Katlian St", "owner": "simplegeo", "postcode": "99835"}}
|
232
|
+
{"geometry": {"type": "Point", "coordinates": [-152.395174, 57.794859]}, "type": "Feature", "id": "SG_13irOG3jOXqLBJ7FQyLoNg_57.794859_-152.395174@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "Borough Property Tax", "tags": ["city", "taxation"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 486 9324", "href": "http://api.simplegeo.com/1.0/features/SG_13irOG3jOXqLBJ7FQyLoNg_57.794859_-152.395174@1293731153.json", "address": "710 Mill Bay Rd", "owner": "simplegeo", "postcode": "99615"}}
|
233
|
+
{"geometry": {"type": "Point", "coordinates": [-149.889814, 61.16312]}, "type": "Feature", "id": "SG_4u3mxdjQlNEBxp0fJIOcva_61.163120_-149.889814@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "The Cabinet Works Inc", "tags": ["wood", "mfg"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Furniture"}], "phone": "+1 907 561 5231", "href": "http://api.simplegeo.com/1.0/features/SG_4u3mxdjQlNEBxp0fJIOcva_61.163120_-149.889814@1293731153.json", "address": "6350 Nielson Way", "owner": "simplegeo", "postcode": "99518"}}
|
234
|
+
{"geometry": {"type": "Point", "coordinates": [-149.887257, 61.203989]}, "type": "Feature", "id": "SG_6uICgMuuasUBe1ZtcIYb9E_61.203989_-149.887257@1293731153", "properties": {"province": "AK", "website": "www.voaak.org", "name": "Volunteers Of America-Alaska", "tags": ["organization", "welfare"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 279 9634", "href": "http://api.simplegeo.com/1.0/features/SG_6uICgMuuasUBe1ZtcIYb9E_61.203989_-149.887257@1293731153.json", "city": "Anchorage", "address": "1675 C St", "owner": "simplegeo", "postcode": "99501"}}
|
235
|
+
{"geometry": {"type": "Point", "coordinates": [-149.573253, 61.322291]}, "type": "Feature", "id": "SG_06qmAMtGy0ftZesGlIcRyZ_61.322291_-149.573253@1293731153", "properties": {"province": "AK", "website": "www.remax-eagleriver-ak.com", "name": "Re/Max", "city": "Eagle River", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 694 4200", "href": "http://api.simplegeo.com/1.0/features/SG_06qmAMtGy0ftZesGlIcRyZ_61.322291_-149.573253@1293731153.json", "address": "16600 Centerfield Dr", "owner": "simplegeo", "postcode": "99577"}}
|
236
|
+
{"geometry": {"type": "Point", "coordinates": [-149.875028, 61.220769]}, "type": "Feature", "id": "SG_6h6aU1qJPjFC8eryyClMJA_61.220769_-149.875028@1293731153", "properties": {"province": "AK", "website": "www.southcentralfoundation.org", "name": "Southcentral Foundation", "tags": ["organization", "welfare"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": ""}], "phone": "+1 907 278 6619", "href": "http://api.simplegeo.com/1.0/features/SG_6h6aU1qJPjFC8eryyClMJA_61.220769_-149.875028@1293731153.json", "city": "Anchorage", "address": "225 Eagle St", "owner": "simplegeo", "postcode": "99501"}}
|
237
|
+
{"geometry": {"type": "Point", "coordinates": [-147.811807, 64.84885]}, "type": "Feature", "id": "SG_4OWZ0ZmO4sUNuloOpvsx6H_64.848850_-147.811807@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Wolf Run Restaurant", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 458 0636", "href": "http://api.simplegeo.com/1.0/features/SG_4OWZ0ZmO4sUNuloOpvsx6H_64.848850_-147.811807@1293731153.json", "address": "3360 Wolf Run", "owner": "simplegeo", "postcode": "99709"}}
|
238
|
+
{"geometry": {"type": "Point", "coordinates": [-149.462651, 61.58203]}, "type": "Feature", "id": "SG_2MvLwmXvGLF8288fYt6N3O_61.582030_-149.462651@1293731153", "properties": {"province": "AK", "website": "www.icewormrvp.com", "name": "Iceworm", "tags": ["shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 892 8200", "href": "http://api.simplegeo.com/1.0/features/SG_2MvLwmXvGLF8288fYt6N3O_61.582030_-149.462651@1293731153.json", "city": "Wasilla", "address": "502 W Parks Hwy", "owner": "simplegeo", "postcode": "99654"}}
|
239
|
+
{"geometry": {"type": "Point", "coordinates": [-149.872423, 61.196235]}, "type": "Feature", "id": "SG_3vKvtk1DIhsPXDOJoGNZI2_61.196235_-149.872423@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "RSVP", "tags": ["butler", "maid"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Cleaning & Sanitation"}], "phone": "+1 907 272 7787", "href": "http://api.simplegeo.com/1.0/features/SG_3vKvtk1DIhsPXDOJoGNZI2_61.196235_-149.872423@1293731153.json", "address": "2611 Fairbanks St", "owner": "simplegeo", "postcode": "99503"}}
|
240
|
+
{"geometry": {"type": "Point", "coordinates": [-134.48951, 58.356802]}, "type": "Feature", "id": "SG_3tEWlkccrb4FNT06Qwj1oF_58.356802_-134.489510@1293731153", "properties": {"province": "AK", "website": "www.juneau.org", "name": "Juneau Public Works Dept", "tags": ["marking", "maintenance", "parking"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 780 6888", "href": "http://api.simplegeo.com/1.0/features/SG_3tEWlkccrb4FNT06Qwj1oF_58.356802_-134.489510@1293731153.json", "city": "Juneau", "address": "5433 Shaune Dr", "owner": "simplegeo", "postcode": "99801"}}
|
241
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897874, 61.17372]}, "type": "Feature", "id": "SG_6iNujKPQzOPgs9pxUzMQQs_61.173720_-149.897874@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Tackle Repair Ctr", "tags": ["tackle", "parts", "fishing"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Bicycles & Sporting Goods"}], "phone": "+1 907 561 0444", "href": "http://api.simplegeo.com/1.0/features/SG_6iNujKPQzOPgs9pxUzMQQs_61.173720_-149.897874@1293731153.json", "address": "5011 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
242
|
+
{"geometry": {"type": "Point", "coordinates": [-151.086716, 60.48151]}, "type": "Feature", "id": "SG_0Ue8RkLZGBHGFU00j24JRF_60.481510_-151.086716@1293731153", "properties": {"province": "AK", "city": "Soldotna", "name": "Sikorski Consulting", "tags": ["counselor", "public", "relations"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Management & Consulting"}], "phone": "+1 907 262 6462", "href": "http://api.simplegeo.com/1.0/features/SG_0Ue8RkLZGBHGFU00j24JRF_60.481510_-151.086716@1293731153.json", "address": "315 S Kobuk St", "owner": "simplegeo", "postcode": "99669"}}
|
243
|
+
{"geometry": {"type": "Point", "coordinates": [-149.765378, 61.218435]}, "type": "Feature", "id": "SG_5xEUhTYqm3kkx9TBtgy7VD_61.218435_-149.765378@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "DHR Group", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 278 1906", "href": "http://api.simplegeo.com/1.0/features/SG_5xEUhTYqm3kkx9TBtgy7VD_61.218435_-149.765378@1293731153.json", "address": "6019 Driftwood Ave", "owner": "simplegeo", "postcode": "99504"}}
|
244
|
+
{"geometry": {"type": "Point", "coordinates": [-133.067872, 55.550624]}, "type": "Feature", "id": "SG_1S7MqfYqdugyOfGtJymaiy_55.550624_-133.067872@1293731153", "properties": {"province": "AK", "website": "www.fireweedlodge.com", "name": "Fireweed Lodge", "tags": ["resort"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 755 2930", "href": "http://api.simplegeo.com/1.0/features/SG_1S7MqfYqdugyOfGtJymaiy_55.550624_-133.067872@1293731153.json", "city": "Klawock", "address": "7 Hollis Rd", "owner": "simplegeo", "postcode": "99925"}}
|
245
|
+
{"geometry": {"type": "Point", "coordinates": [-149.897408, 61.218479]}, "type": "Feature", "id": "SG_17QPwGvJCVs9nvVLJTItBn_61.218479_-149.897408@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Representative Pete Kott", "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 269 0155", "href": "http://api.simplegeo.com/1.0/features/SG_17QPwGvJCVs9nvVLJTItBn_61.218479_-149.897408@1293731153.json", "address": "716 W 4th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
246
|
+
{"geometry": {"type": "Point", "coordinates": [-152.600862, 57.703109]}, "type": "Feature", "id": "SG_07sKqsAYVqGo5tjDrXzlEt_57.703109_-152.600862@1293731153", "properties": {"province": "AK", "city": "Kodiak", "name": "Carver Geologic", "tags": ["consultant", "geological"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": ""}], "phone": "+1 907 487 4551", "href": "http://api.simplegeo.com/1.0/features/SG_07sKqsAYVqGo5tjDrXzlEt_57.703109_-152.600862@1293731153.json", "address": "12021 Middle Bay Dr", "owner": "simplegeo", "postcode": "99615"}}
|
247
|
+
{"geometry": {"type": "Point", "coordinates": [-147.829489, 64.83537]}, "type": "Feature", "id": "SG_6K7bkRNqgh1fCvsFdeCjRP_64.835370_-147.829489@1293731153", "properties": {"province": "AK", "website": "www.harleyoutpost.com", "name": "Harley-Davidson Inc", "tags": ["leather"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Clothing, Apparel, & Fashions"}], "phone": "+1 907 456 3265", "href": "http://api.simplegeo.com/1.0/features/SG_6K7bkRNqgh1fCvsFdeCjRP_64.835370_-147.829489@1293731153.json", "city": "Fairbanks", "address": "1450 Karen Way", "owner": "simplegeo", "postcode": "99709"}}
|
248
|
+
{"geometry": {"type": "Point", "coordinates": [-147.747285, 64.844179]}, "type": "Feature", "id": "SG_1LOJrRfDLsBRYxbUndbxOf_64.844179_-147.747285@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Fairbanks Drama Assoc", "tags": ["organization", "arts", "information"], "country": "US", "classifiers": [{"category": "Museum", "type": "Entertainment", "subcategory": ""}], "phone": "+1 907 456 7529", "href": "http://api.simplegeo.com/1.0/features/SG_1LOJrRfDLsBRYxbUndbxOf_64.844179_-147.747285@1293731153.json", "address": "1852 2nd Ave", "owner": "simplegeo", "postcode": "99701"}}
|
249
|
+
{"geometry": {"type": "Point", "coordinates": [-149.863906, 61.14056]}, "type": "Feature", "id": "SG_4Z5C36TOTGo1bzVpFB1yNT_61.140560_-149.863906@1293731153", "properties": {"province": "AK", "website": "www.thesportsauthority.com", "name": "Sports Authority", "city": "Anchorage", "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Bicycles & Sporting Goods"}], "phone": "+1 907 349 6881", "href": "http://api.simplegeo.com/1.0/features/SG_4Z5C36TOTGo1bzVpFB1yNT_61.140560_-149.863906@1293731153.json", "address": "8931 Old Seward Hwy", "owner": "simplegeo", "postcode": "99515"}}
|
250
|
+
{"geometry": {"type": "Point", "coordinates": [-149.86621, 61.183428]}, "type": "Feature", "id": "SG_4eLp8qn7DqZ1pHz80t2lNj_61.183428_-149.866210@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Steelhead Custom Landscaping", "tags": ["landscape", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Landscaping Services"}], "phone": "+1 907 346 4600", "href": "http://api.simplegeo.com/1.0/features/SG_4eLp8qn7DqZ1pHz80t2lNj_61.183428_-149.866210@1293731153.json", "address": "4141 Ingra St", "owner": "simplegeo", "postcode": "99503"}}
|
251
|
+
{"geometry": {"type": "Point", "coordinates": [-134.414446, 58.300177]}, "type": "Feature", "id": "SG_7H0mIQYZHNSECr6Q7D1xPD_58.300177_-134.414446@1293731153", "properties": {"province": "AK", "website": "www.museums.state.ak.us", "name": "State Museum", "city": "Juneau", "country": "US", "classifiers": [{"category": "Museum", "type": "Entertainment", "subcategory": ""}], "phone": "+1 907 465 2901", "href": "http://api.simplegeo.com/1.0/features/SG_7H0mIQYZHNSECr6Q7D1xPD_58.300177_-134.414446@1293731153.json", "address": "395 Whittier St", "owner": "simplegeo", "postcode": "99801"}}
|
252
|
+
{"geometry": {"type": "Point", "coordinates": [-147.720934, 64.842738]}, "type": "Feature", "id": "SG_7JzL27OKQiyylm6TeTN1rq_64.842738_-147.720934@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Winfree Law Office", "tags": ["attorney"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+1 907 451 6500", "href": "http://api.simplegeo.com/1.0/features/SG_7JzL27OKQiyylm6TeTN1rq_64.842738_-147.720934@1293731153.json", "address": "301 Cushman St", "owner": "simplegeo", "postcode": "99701"}}
|
253
|
+
{"geometry": {"type": "Point", "coordinates": [-134.382722, 58.269552]}, "type": "Feature", "id": "SG_5dONTSzZpzfWABlFTmYLNB_58.269552_-134.382722@1293731153", "properties": {"province": "AK", "city": "Douglas", "name": "Rickey & Assoc", "tags": ["consultant", "fishery"], "country": "US", "classifiers": [{"category": "Farming", "type": "Manufacturing & Wholesale Goods", "subcategory": "Aquatic Farm"}], "phone": "+1 907 586 2442", "href": "http://api.simplegeo.com/1.0/features/SG_5dONTSzZpzfWABlFTmYLNB_58.269552_-134.382722@1293731153.json", "address": "112 5th St", "owner": "simplegeo", "postcode": "99824"}}
|
254
|
+
{"geometry": {"type": "Point", "coordinates": [-149.870471, 61.155485]}, "type": "Feature", "id": "SG_6kOLK0GRhocdC72wwAt1zO_61.155485_-149.870471@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Seakers", "tags": ["expediters"], "country": "US", "classifiers": [{"category": "Airline", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 562 7099", "href": "http://api.simplegeo.com/1.0/features/SG_6kOLK0GRhocdC72wwAt1zO_61.155485_-149.870471@1293731153.json", "address": "846 E 72nd Ave", "owner": "simplegeo", "postcode": "99518"}}
|
255
|
+
{"geometry": {"type": "Point", "coordinates": [-149.551149, 61.315411]}, "type": "Feature", "id": "SG_6TJAs8mOX6rGNLgyc8osTe_61.315411_-149.551149@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "Sunshine Generation", "tags": ["instruction", "dancing"], "country": "US", "classifiers": [{"category": "Education", "type": "Public Place", "subcategory": "Dance Studio"}], "phone": "+1 907 694 6356", "href": "http://api.simplegeo.com/1.0/features/SG_6TJAs8mOX6rGNLgyc8osTe_61.315411_-149.551149@1293731153.json", "address": "17757 Chilkat Ct", "owner": "simplegeo", "postcode": "99577"}}
|
256
|
+
{"geometry": {"type": "Point", "coordinates": [-131.728987, 55.377672]}, "type": "Feature", "id": "SG_4ZhvSiVp9nTsnDQPQS7e6b_55.377672_-131.728987@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Alaska Diving Svc Inc", "tags": ["diver"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+1 907 225 3667", "href": "http://api.simplegeo.com/1.0/features/SG_4ZhvSiVp9nTsnDQPQS7e6b_55.377672_-131.728987@1293731153.json", "address": "5194 Shoreline Dr", "owner": "simplegeo", "postcode": "99901"}}
|
257
|
+
{"geometry": {"type": "Point", "coordinates": [-131.672077, 55.34934]}, "type": "Feature", "id": "SG_3qTaWrd8WxIuw5Va2J4rrq_55.349340_-131.672077@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Recovery Center-Alcoholsim Drg", "tags": ["rehabilitation"], "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Job Training"}], "phone": "+1 907 247 4330", "href": "http://api.simplegeo.com/1.0/features/SG_3qTaWrd8WxIuw5Va2J4rrq_55.349340_-131.672077@1293731153.json", "address": "126 Washington St", "owner": "simplegeo", "postcode": "99901"}}
|
258
|
+
{"geometry": {"type": "Point", "coordinates": [-149.5713, 61.318147]}, "type": "Feature", "id": "SG_3binU8JlnU0SorucQt7lEP_61.318147_-149.571300@1293731153", "properties": {"province": "AK", "city": "Eagle River", "name": "Representative Pete Kott", "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 694 8944", "href": "http://api.simplegeo.com/1.0/features/SG_3binU8JlnU0SorucQt7lEP_61.318147_-149.571300@1293731153.json", "address": "10928 Eagle River Rd", "owner": "simplegeo", "postcode": "99577"}}
|
259
|
+
{"geometry": {"type": "Point", "coordinates": [-134.406581, 58.303048]}, "type": "Feature", "id": "SG_1H4YzXt1ZlntFx1KYK4Dya_58.303048_-134.406581@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Sabel Media", "tags": ["taping"], "country": "US", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": "Film & Video Production"}], "phone": "+1 907 586 1319", "href": "http://api.simplegeo.com/1.0/features/SG_1H4YzXt1ZlntFx1KYK4Dya_58.303048_-134.406581@1293731153.json", "address": "416 Harris St", "owner": "simplegeo", "postcode": "99801"}}
|
260
|
+
{"geometry": {"type": "Point", "coordinates": [-161.736032, 60.791489]}, "type": "Feature", "id": "SG_2G1efqmMQpHAyd7TaCcBHU_60.791489_-161.736032@1293731153", "properties": {"province": "AK", "city": "Bethel", "name": "Dos Guys Boat Shop", "tags": ["repairing", "boat"], "country": "US", "classifiers": [{"category": "Recreation", "type": "Entertainment", "subcategory": "Marina"}], "phone": "+1 907 543 2057", "href": "http://api.simplegeo.com/1.0/features/SG_2G1efqmMQpHAyd7TaCcBHU_60.791489_-161.736032@1293731153.json", "address": "264 East Ave", "owner": "simplegeo", "postcode": "99559"}}
|
261
|
+
{"geometry": {"type": "Point", "coordinates": [-149.879142, 61.198176]}, "type": "Feature", "id": "SG_5rFbrgAfySMZngrmF1IvHA_61.198176_-149.879142@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Richard Cobb & Assoc", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Architect"}], "phone": "+1 907 276 1996", "href": "http://api.simplegeo.com/1.0/features/SG_5rFbrgAfySMZngrmF1IvHA_61.198176_-149.879142@1293731153.json", "address": "225 E Fireweed Ln", "owner": "simplegeo", "postcode": "99503"}}
|
262
|
+
{"geometry": {"type": "Point", "coordinates": [-147.722214, 64.828498]}, "type": "Feature", "id": "SG_0N8tZjJEDbna41sGvLKqq5_64.828498_-147.722214@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Borealis Kids Day Care", "country": "US", "classifiers": [{"category": "Social Services", "type": "Services", "subcategory": "Child Care"}], "phone": "+1 907 374 9355", "href": "http://api.simplegeo.com/1.0/features/SG_0N8tZjJEDbna41sGvLKqq5_64.828498_-147.722214@1293731153.json", "address": "2025 Blueberry St", "owner": "simplegeo", "postcode": "99701"}}
|
263
|
+
{"geometry": {"type": "Point", "coordinates": [-149.913114, 61.184592]}, "type": "Feature", "id": "SG_1b99FJ3dlT0DKr9Ew1QbQ5_61.184592_-149.913114@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "In The Pocket", "tags": ["center"], "country": "US", "classifiers": [{"category": "Sports & Exercise", "type": "Entertainment", "subcategory": "Bowling"}], "phone": "+1 907 562 9740", "href": "http://api.simplegeo.com/1.0/features/SG_1b99FJ3dlT0DKr9Ew1QbQ5_61.184592_-149.913114@1293731153.json", "address": "3717 Minnesota Dr", "owner": "simplegeo", "postcode": "99503"}}
|
264
|
+
{"geometry": {"type": "Point", "coordinates": [-149.77151, 61.207457]}, "type": "Feature", "id": "SG_0xXIIpYqv0TShb2FR386JI_61.207457_-149.771510@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Wee B's Catering", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 522 1260", "href": "http://api.simplegeo.com/1.0/features/SG_0xXIIpYqv0TShb2FR386JI_61.207457_-149.771510@1293731153.json", "address": "1260 O'Malley Rd", "owner": "simplegeo", "postcode": "99515"}}
|
265
|
+
{"geometry": {"type": "Point", "coordinates": [-149.926918, 61.183928]}, "type": "Feature", "id": "SG_0l4J2P8NK2kipuc0X0jHI2_61.183928_-149.926918@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Spenard Motel", "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 243 6917", "href": "http://api.simplegeo.com/1.0/features/SG_0l4J2P8NK2kipuc0X0jHI2_61.183928_-149.926918@1293731153.json", "address": "3960 Spenard Rd", "owner": "simplegeo", "postcode": "99517"}}
|
266
|
+
{"geometry": {"type": "Point", "coordinates": [-147.724354, 64.822417]}, "type": "Feature", "id": "SG_7ZDthx2bw0WYlPkHkH3bx0_64.822417_-147.724354@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Sheridan Apartments", "tags": ["apartment"], "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Operator"}], "phone": "+1 907 456 3826", "href": "http://api.simplegeo.com/1.0/features/SG_7ZDthx2bw0WYlPkHkH3bx0_64.822417_-147.724354@1293731153.json", "address": "909 27th Ave", "owner": "simplegeo", "postcode": "99701"}}
|
267
|
+
{"geometry": {"type": "Point", "coordinates": [-149.894458, 61.170611]}, "type": "Feature", "id": "SG_4v5DpRezL6vaN9iEe3ZVtT_61.170611_-149.894458@1293731153", "properties": {"province": "AK", "website": "www.smythmoving.com", "name": "Smyth Moving Svc Inc", "tags": ["storage"], "country": "US", "classifiers": [{"category": "Freight", "type": "Transportation", "subcategory": ""}], "phone": "+1 907 561 1842", "href": "http://api.simplegeo.com/1.0/features/SG_4v5DpRezL6vaN9iEe3ZVtT_61.170611_-149.894458@1293731153.json", "city": "Anchorage", "address": "624 W Potter Dr", "owner": "simplegeo", "postcode": "99518"}}
|
268
|
+
{"geometry": {"type": "Point", "coordinates": [-149.903818, 61.216682]}, "type": "Feature", "id": "SG_5pDYlq14fyERd40NG09vIJ_61.216682_-149.903818@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Lawyer Referral Svc", "tags": ["attorney"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+1 907 272 0352", "href": "http://api.simplegeo.com/1.0/features/SG_5pDYlq14fyERd40NG09vIJ_61.216682_-149.903818@1293731153.json", "address": "510 L St", "owner": "simplegeo", "postcode": "99501"}}
|
269
|
+
{"geometry": {"type": "Point", "coordinates": [-149.893481, 61.216584]}, "type": "Feature", "id": "SG_6KEP8z2W2y4ZOZQW9WnQVC_61.216584_-149.893481@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Firenze Design", "tags": ["interior", "consultant", "design", "decorator"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Business Services"}], "phone": "+1 907 563 7953", "href": "http://api.simplegeo.com/1.0/features/SG_6KEP8z2W2y4ZOZQW9WnQVC_61.216584_-149.893481@1293731153.json", "address": "500 W 6th Ave", "owner": "simplegeo", "postcode": "99501"}}
|
270
|
+
{"geometry": {"type": "Point", "coordinates": [-134.426683, 58.304517]}, "type": "Feature", "id": "SG_52hGDvMrDNAwqJ0P0FoDJU_58.304517_-134.426683@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Southeast Dental Group", "tags": ["dentist"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 586 9586", "href": "http://api.simplegeo.com/1.0/features/SG_52hGDvMrDNAwqJ0P0FoDJU_58.304517_-134.426683@1293731153.json", "address": "1600 Glacier Ave", "owner": "simplegeo", "postcode": "99801"}}
|
271
|
+
{"geometry": {"type": "Point", "coordinates": [-131.653113, 55.344075]}, "type": "Feature", "id": "SG_1Jdjnrd2nxZXTmsNOJy7Jv_55.344075_-131.653113@1293731153", "properties": {"province": "AK", "website": "www.afa-advisors.com", "name": "Alaska Financial Advisors", "tags": ["consultant", "planning", "financial"], "country": "US", "classifiers": [{"category": "Banks & Credit Unions", "type": "Services", "subcategory": "Investment Brokerage"}], "phone": "+1 907 225 0619", "href": "http://api.simplegeo.com/1.0/features/SG_1Jdjnrd2nxZXTmsNOJy7Jv_55.344075_-131.653113@1293731153.json", "city": "Ketchikan", "address": "809 Water St", "owner": "simplegeo", "postcode": "99901"}}
|
272
|
+
{"geometry": {"type": "Point", "coordinates": [-149.898031, 61.191053]}, "type": "Feature", "id": "SG_1YsmezMvdpMMQKaLskzS3V_61.191053_-149.898031@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Pacific North Management", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 561 4580", "href": "http://api.simplegeo.com/1.0/features/SG_1YsmezMvdpMMQKaLskzS3V_61.191053_-149.898031@1293731153.json", "address": "3300 Arctic Blvd", "owner": "simplegeo", "postcode": "99503"}}
|
273
|
+
{"geometry": {"type": "Point", "coordinates": [-131.721239, 55.408796]}, "type": "Feature", "id": "SG_7gQNb1OB6Mpouy9XHSKm0Z_55.408796_-131.721239@1293731153", "properties": {"province": "AK", "city": "Ketchikan", "name": "Southeast Construction Inc", "tags": ["excavating"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 247 1151", "href": "http://api.simplegeo.com/1.0/features/SG_7gQNb1OB6Mpouy9XHSKm0Z_55.408796_-131.721239@1293731153.json", "address": "7446 N Tongass Hwy", "owner": "simplegeo", "postcode": "99928"}}
|
274
|
+
{"geometry": {"type": "Point", "coordinates": [-161.767774, 60.793714]}, "type": "Feature", "id": "SG_3Hyk9GXd2l99gBFSeYt4xY_60.793714_-161.767774@1293731153", "properties": {"province": "AK", "city": "Bethel", "name": "Moravian Bible Seminary", "tags": ["church"], "country": "US", "classifiers": [{"category": "Organizations", "type": "Services", "subcategory": "Religious Organization"}], "phone": "+1 907 543 4382", "href": "http://api.simplegeo.com/1.0/features/SG_3Hyk9GXd2l99gBFSeYt4xY_60.793714_-161.767774@1293731153.json", "address": "461 3rd Ave", "owner": "simplegeo", "postcode": "99559"}}
|
275
|
+
{"geometry": {"type": "Point", "coordinates": [-149.845802, 61.138947]}, "type": "Feature", "id": "SG_4XsIecQJKPwRuXEnRobMNR_61.138947_-149.845802@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Tes/Ghemm Company Joint Ventr", "tags": ["plant", "power"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 365 6299", "href": "http://api.simplegeo.com/1.0/features/SG_4XsIecQJKPwRuXEnRobMNR_61.138947_-149.845802@1293731153.json", "address": "2121 Abbott Rd", "owner": "simplegeo", "postcode": "99507"}}
|
276
|
+
{"geometry": {"type": "Point", "coordinates": [-149.868154, 61.185683]}, "type": "Feature", "id": "SG_1AefJ49DtqgoHfqizP2JIP_61.185683_-149.868154@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Safeway", "tags": ["grocer"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Groceries & Convenience Stores"}], "phone": "+1 907 561 7540", "href": "http://api.simplegeo.com/1.0/features/SG_1AefJ49DtqgoHfqizP2JIP_61.185683_-149.868154@1293731153.json", "address": "3801 Old Seward Hwy", "owner": "simplegeo", "postcode": "99503"}}
|
277
|
+
{"geometry": {"type": "Point", "coordinates": [-149.891516, 61.213908]}, "type": "Feature", "id": "SG_55NO9oeTJiK9Z6IMRx7B0a_61.213908_-149.891516@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Kim J Stohr", "tags": ["attorney"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Lawyer & Legal Services"}], "phone": "+1 907 274 0265", "href": "http://api.simplegeo.com/1.0/features/SG_55NO9oeTJiK9Z6IMRx7B0a_61.213908_-149.891516@1293731153.json", "address": "828 E St", "owner": "simplegeo", "postcode": "99501"}}
|
278
|
+
{"geometry": {"type": "Point", "coordinates": [-149.710932, 61.09983]}, "type": "Feature", "id": "SG_0NT0h679C00xDLLX7E4hVu_61.099830_-149.710932@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Lewis Mechanical Inc", "tags": ["mechanical", "contractor"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Plumbing"}], "phone": "+1 907 561 9997", "href": "http://api.simplegeo.com/1.0/features/SG_0NT0h679C00xDLLX7E4hVu_61.099830_-149.710932@1293731153.json", "address": "13240 View Heights Way", "owner": "simplegeo", "postcode": "99516"}}
|
279
|
+
{"geometry": {"type": "Point", "coordinates": [-149.901647, 61.217563]}, "type": "Feature", "id": "SG_2oJZOLmD9m8OQASzOGmvd1_61.217563_-149.901647@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Sandwich Deck", "country": "US", "classifiers": [{"category": "Restaurant", "type": "Food & Drink", "subcategory": ""}], "phone": "+1 907 276 1401", "href": "http://api.simplegeo.com/1.0/features/SG_2oJZOLmD9m8OQASzOGmvd1_61.217563_-149.901647@1293731153.json", "address": "400 K St", "owner": "simplegeo", "postcode": "99501"}}
|
280
|
+
{"geometry": {"type": "Point", "coordinates": [-149.834289, 61.159825]}, "type": "Feature", "id": "SG_6M82VBiMmtgZn0KNF2dwFe_61.159825_-149.834289@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Five Star Automotive Repair", "tags": ["repairing", "automobile"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Auto Repair"}], "phone": "+1 907 349 2629", "href": "http://api.simplegeo.com/1.0/features/SG_6M82VBiMmtgZn0KNF2dwFe_61.159825_-149.834289@1293731153.json", "address": "6614 Lake Otis Pkwy", "owner": "simplegeo", "postcode": "99507"}}
|
281
|
+
{"geometry": {"type": "Point", "coordinates": [-151.549654, 59.64372]}, "type": "Feature", "id": "SG_4uLF8acK0SJ5z1LUSFXsiN_59.643720_-151.549654@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Public Assistance Div", "tags": ["state", "resource"], "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 235 6132", "href": "http://api.simplegeo.com/1.0/features/SG_4uLF8acK0SJ5z1LUSFXsiN_59.643720_-151.549654@1293731153.json", "address": "270 W Pioneer Ave", "owner": "simplegeo", "postcode": "99603"}}
|
282
|
+
{"geometry": {"type": "Point", "coordinates": [-149.884368, 61.182098]}, "type": "Feature", "id": "SG_7362fKXpXaIFMvwblzp7ff_61.182098_-149.884368@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Kluane Construction Inc", "tags": ["dam", "contractor", "moving", "highway", "earth", "general", "road"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Construction"}], "phone": "+1 907 562 0189", "href": "http://api.simplegeo.com/1.0/features/SG_7362fKXpXaIFMvwblzp7ff_61.182098_-149.884368@1293731153.json", "address": "4141 B St", "owner": "simplegeo", "postcode": "99503"}}
|
283
|
+
{"geometry": {"type": "Point", "coordinates": [-135.331984, 57.051185]}, "type": "Feature", "id": "SG_49ykHHBnOwou08z4kwTLub_57.051185_-135.331984@1293731153", "properties": {"province": "AK", "city": "Sitka", "name": "Work & Rugged Gear Store", "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Clothing, Apparel, & Fashions"}], "phone": "+1 907 747 6238", "href": "http://api.simplegeo.com/1.0/features/SG_49ykHHBnOwou08z4kwTLub_57.051185_-135.331984@1293731153.json", "address": "407 Lincoln St", "owner": "simplegeo", "postcode": "99835"}}
|
284
|
+
{"geometry": {"type": "Point", "coordinates": [-151.485525, 59.655116]}, "type": "Feature", "id": "SG_6KziQJX3aoPzb2lvN6id8o_59.655116_-151.485525@1293731153", "properties": {"province": "AK", "city": "Homer", "name": "Brown's Sure-Lock Of Homer", "tags": ["lock", "locksmith"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}], "phone": "+1 907 235 7070", "href": "http://api.simplegeo.com/1.0/features/SG_6KziQJX3aoPzb2lvN6id8o_59.655116_-151.485525@1293731153.json", "address": "2158 Aspen Ln", "owner": "simplegeo", "postcode": "99603"}}
|
285
|
+
{"geometry": {"type": "Point", "coordinates": [-145.75851, 60.54474]}, "type": "Feature", "id": "SG_02rDeR3rkQT6zRvjw6hVoN_60.544740_-145.758510@1293731153", "properties": {"province": "AK", "website": "www.copperriver.org", "name": "Copper River Watershed Project", "tags": ["economic", "analysis"], "country": "US", "classifiers": [{"category": "Professional", "type": "Services", "subcategory": "Research"}], "phone": "+1 907 424 3334", "href": "http://api.simplegeo.com/1.0/features/SG_02rDeR3rkQT6zRvjw6hVoN_60.544740_-145.758510@1293731153.json", "city": "Cordova", "address": "511 1st St", "owner": "simplegeo", "postcode": "99574"}}
|
286
|
+
{"geometry": {"type": "Point", "coordinates": [-147.662634, 64.895731]}, "type": "Feature", "id": "SG_41zjjWrpIGtrh7ns6kemRN_64.895731_-147.662634@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Best Welding Svc", "tags": ["welding"], "country": "US", "classifiers": [{"category": "Retail", "type": "Services", "subcategory": "Repair Shop"}], "phone": "+1 907 457 2410", "href": "http://api.simplegeo.com/1.0/features/SG_41zjjWrpIGtrh7ns6kemRN_64.895731_-147.662634@1293731153.json", "address": "710 McGrath Rd", "owner": "simplegeo", "postcode": "99712"}}
|
287
|
+
{"geometry": {"type": "Point", "coordinates": [-149.951802, 61.137492]}, "type": "Feature", "id": "SG_7kG8Dz3qTwDhnnCbx491JL_61.137492_-149.951802@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Holiday Express Stores", "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Groceries & Convenience Stores"}], "phone": "+1 907 243 5639", "href": "http://api.simplegeo.com/1.0/features/SG_7kG8Dz3qTwDhnnCbx491JL_61.137492_-149.951802@1293731153.json", "address": "8803 Jewel Lake Rd", "owner": "simplegeo", "postcode": "99502"}}
|
288
|
+
{"geometry": {"type": "Point", "coordinates": [-149.963419, 61.15838]}, "type": "Feature", "id": "SG_2idYP9SS2eLBgDBB7z3nem_61.158380_-149.963419@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "D G Engstrom & Assoc", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 243 3972", "href": "http://api.simplegeo.com/1.0/features/SG_2idYP9SS2eLBgDBB7z3nem_61.158380_-149.963419@1293731153.json", "address": "7140 Whitehall St", "owner": "simplegeo", "postcode": "99502"}}
|
289
|
+
{"geometry": {"type": "Point", "coordinates": [-149.865107, 61.166466]}, "type": "Feature", "id": "SG_5OOycyqNsD7n3dpMU7gBT0_61.166466_-149.865107@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Ubik Broadcasting Corp", "tags": ["company", "broadcasting"], "country": "US", "classifiers": [{"category": "Communications", "type": "Services", "subcategory": "Radio Station"}], "phone": "+1 907 562 8119", "href": "http://api.simplegeo.com/1.0/features/SG_5OOycyqNsD7n3dpMU7gBT0_61.166466_-149.865107@1293731153.json", "address": "907 E Dowling Rd", "owner": "simplegeo", "postcode": "99518"}}
|
290
|
+
{"geometry": {"type": "Point", "coordinates": [-149.430761, 60.137552]}, "type": "Feature", "id": "SG_7aNwUEWJltxKyjuRpp8gaV_60.137552_-149.430761@1293731153", "properties": {"province": "AK", "city": "Seward", "name": "Harmony Bed & Breakfast", "tags": ["breakfast", "accommodation", "bed"], "country": "US", "classifiers": [{"category": "Travel", "type": "Entertainment", "subcategory": "Hotels & Motels"}], "phone": "+1 907 224 3661", "href": "http://api.simplegeo.com/1.0/features/SG_7aNwUEWJltxKyjuRpp8gaV_60.137552_-149.430761@1293731153.json", "address": "2411 Spruce St", "owner": "simplegeo", "postcode": "99664"}}
|
291
|
+
{"geometry": {"type": "Point", "coordinates": [-147.763903, 64.846132]}, "type": "Feature", "id": "SG_1olhOKgGn9dT4cCtkyp6Ez_64.846132_-147.763903@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Wallpaper Warehouse", "tags": ["wallpaper"], "country": "US", "classifiers": [{"category": "Home & Garden", "type": "Retail Goods", "subcategory": "Building Materials"}], "phone": "+1 907 451 8247", "href": "http://api.simplegeo.com/1.0/features/SG_1olhOKgGn9dT4cCtkyp6Ez_64.846132_-147.763903@1293731153.json", "address": "1988 Phillips Field Rd", "owner": "simplegeo", "postcode": "99701"}}
|
292
|
+
{"geometry": {"type": "Point", "coordinates": [-149.866831, 61.144657]}, "type": "Feature", "id": "SG_6E6FiA4olR6xCeqZZnbM7P_61.144657_-149.866831@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Handcrafted Holiday Gallery", "tags": ["shop"], "country": "US", "classifiers": [{"category": "Shopping", "type": "Retail Goods", "subcategory": "Gifts & Souvenirs"}], "phone": "+1 907 349 9627", "href": "http://api.simplegeo.com/1.0/features/SG_6E6FiA4olR6xCeqZZnbM7P_61.144657_-149.866831@1293731153.json", "address": "800 E Dimond Blvd", "owner": "simplegeo", "postcode": "99515"}}
|
293
|
+
{"geometry": {"type": "Point", "coordinates": [-134.418235, 58.300572]}, "type": "Feature", "id": "SG_3mlVNFhwZO2edAamG6pR5O_58.300572_-134.418235@1293731153", "properties": {"province": "AK", "city": "Juneau", "name": "Sante Chez", "tags": ["therapist", "massage"], "country": "US", "classifiers": [{"category": "Personal", "type": "Services", "subcategory": ""}], "phone": "+1 907 586 8600", "href": "http://api.simplegeo.com/1.0/features/SG_3mlVNFhwZO2edAamG6pR5O_58.300572_-134.418235@1293731153.json", "address": "641 W Willoughby Ave", "owner": "simplegeo", "postcode": "99801"}}
|
294
|
+
{"geometry": {"type": "Point", "coordinates": [-149.890478, 61.168774]}, "type": "Feature", "id": "SG_4O5WY8hkS9A5qpsHaXUMnM_61.168774_-149.890478@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "STI Alaska Inc", "tags": ["material", "fireproofing"], "country": "US", "classifiers": [{"category": "Manufacturing", "type": "Manufacturing & Wholesale Goods", "subcategory": "Chemicals & Compounds"}], "phone": "+1 907 561 8351", "href": "http://api.simplegeo.com/1.0/features/SG_4O5WY8hkS9A5qpsHaXUMnM_61.168774_-149.890478@1293731153.json", "address": "720 W 58th Ave", "owner": "simplegeo", "postcode": "99518"}}
|
295
|
+
{"geometry": {"type": "Point", "coordinates": [-149.881303, 61.214631]}, "type": "Feature", "id": "SG_39LOupKtQsUXSBDI9iRVP6_61.214631_-149.881303@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Condo Line", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Real Estate Agent"}], "phone": "+1 907 646 0525", "href": "http://api.simplegeo.com/1.0/features/SG_39LOupKtQsUXSBDI9iRVP6_61.214631_-149.881303@1293731153.json", "address": "702 Barrow St", "owner": "simplegeo", "postcode": "99501"}}
|
296
|
+
{"geometry": {"type": "Point", "coordinates": [-149.433439, 61.579571]}, "type": "Feature", "id": "SG_4yyYPDSS5YW1UDIocseBIr_61.579571_-149.433439@1293731153", "properties": {"province": "AK", "city": "Wasilla", "name": "State Legislature", "country": "US", "classifiers": [{"category": "Government", "type": "Public Place", "subcategory": "Office"}], "phone": "+1 907 376 3704", "href": "http://api.simplegeo.com/1.0/features/SG_4yyYPDSS5YW1UDIocseBIr_61.579571_-149.433439@1293731153.json", "address": "600 E Railroad Ave", "owner": "simplegeo", "postcode": "99654"}}
|
297
|
+
{"geometry": {"type": "Point", "coordinates": [-149.868924, 61.207731]}, "type": "Feature", "id": "SG_3JiuhcWtxJHTwRgtZtqpfI_61.207731_-149.868924@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Anna's Health Foods", "tags": ["health", "diet"], "country": "US", "classifiers": [{"category": "Food & Beverages", "type": "Retail Goods", "subcategory": "Specialty"}], "phone": "+1 907 277 2662", "href": "http://api.simplegeo.com/1.0/features/SG_3JiuhcWtxJHTwRgtZtqpfI_61.207731_-149.868924@1293731153.json", "address": "1403 Hyder St", "owner": "simplegeo", "postcode": "99501"}}
|
298
|
+
{"geometry": {"type": "Point", "coordinates": [-149.919565, 61.185572]}, "type": "Feature", "id": "SG_6y8S4GCiawRWMxEya6Q5j1_61.185572_-149.919565@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Ivy & Co Architects", "country": "US", "classifiers": [{"category": "Real Estate", "type": "Services", "subcategory": "Architect"}], "phone": "+1 907 563 5656", "href": "http://api.simplegeo.com/1.0/features/SG_6y8S4GCiawRWMxEya6Q5j1_61.185572_-149.919565@1293731153.json", "address": "3835 Spenard Rd", "owner": "simplegeo", "postcode": "99517"}}
|
299
|
+
{"geometry": {"type": "Point", "coordinates": [-147.643459, 64.882164]}, "type": "Feature", "id": "SG_5Vxmvoq0JL72Q7UodxdQBB_64.882164_-147.643459@1293731153", "properties": {"province": "AK", "city": "Fairbanks", "name": "Shields Rental Ctr", "tags": ["yard"], "country": "US", "classifiers": [{"category": "Building & Trades", "type": "Services", "subcategory": "Equipment Rental"}], "phone": "+1 907 457 3226", "href": "http://api.simplegeo.com/1.0/features/SG_5Vxmvoq0JL72Q7UodxdQBB_64.882164_-147.643459@1293731153.json", "address": "310 Birch Hill Rd", "owner": "simplegeo", "postcode": "99712"}}
|
300
|
+
{"geometry": {"type": "Point", "coordinates": [-149.871631, 61.189588]}, "type": "Feature", "id": "SG_1MxmlsrI6LbsAvqM37KpSV_61.189588_-149.871631@1293731153", "properties": {"province": "AK", "city": "Anchorage", "name": "Kidsmile", "tags": ["dentist"], "country": "US", "classifiers": [{"category": "Health Services", "type": "Services", "subcategory": "Doctor"}], "phone": "+1 907 272 1144", "href": "http://api.simplegeo.com/1.0/features/SG_1MxmlsrI6LbsAvqM37KpSV_61.189588_-149.871631@1293731153.json", "address": "625 E 34th Ave", "owner": "simplegeo", "postcode": "99503"}}
|