tagcrumbs 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +79 -56
  3. data/README.rdoc +9 -1
  4. data/Rakefile +2 -1
  5. data/TODO.txt +0 -7
  6. data/config/website.yml +2 -0
  7. data/examples/filter_new.rb +7 -3
  8. data/examples/placemark_new_suggestions.rb +4 -2
  9. data/examples/request_authorization.rb +1 -1
  10. data/examples/tagcrumbs_find.rb +3 -3
  11. data/examples/user.rb +1 -1
  12. data/lib/console.rb +14 -0
  13. data/lib/tagcrumbs.rb +41 -14
  14. data/lib/tagcrumbs/cli.rb +1 -1
  15. data/lib/tagcrumbs/config_store.rb +3 -3
  16. data/lib/tagcrumbs/core_extensions.rb +19 -0
  17. data/lib/tagcrumbs/parsers/json_parser.rb +7 -3
  18. data/lib/tagcrumbs/proxy.rb +6 -3
  19. data/lib/tagcrumbs/requestor.rb +22 -5
  20. data/lib/tagcrumbs/resources/{array.rb → collection.rb} +8 -7
  21. data/lib/tagcrumbs/resources/models/access_token.rb +8 -0
  22. data/lib/tagcrumbs/resources/models/accessors.rb +17 -3
  23. data/lib/tagcrumbs/resources/models/activity.rb +1 -0
  24. data/lib/tagcrumbs/resources/models/application.rb +9 -0
  25. data/lib/tagcrumbs/resources/models/comment.rb +2 -0
  26. data/lib/tagcrumbs/resources/models/email_recommendation.rb +17 -0
  27. data/lib/tagcrumbs/resources/models/favorite.rb +2 -1
  28. data/lib/tagcrumbs/resources/models/filter.rb +2 -2
  29. data/lib/tagcrumbs/resources/models/flag.rb +3 -0
  30. data/lib/tagcrumbs/resources/models/model.rb +8 -7
  31. data/lib/tagcrumbs/resources/models/paragraph.rb +8 -0
  32. data/lib/tagcrumbs/resources/models/picture.rb +4 -4
  33. data/lib/tagcrumbs/resources/models/place.rb +3 -3
  34. data/lib/tagcrumbs/resources/models/placemark.rb +3 -2
  35. data/lib/tagcrumbs/resources/models/profile.rb +0 -1
  36. data/lib/tagcrumbs/resources/models/profile_link.rb +1 -1
  37. data/lib/tagcrumbs/resources/models/root.rb +3 -3
  38. data/lib/tagcrumbs/resources/models/settings.rb +2 -1
  39. data/lib/tagcrumbs/resources/models/tagcrumb.rb +4 -12
  40. data/lib/tagcrumbs/resources/models/user.rb +27 -6
  41. data/lib/tagcrumbs/resources/models/user_recommendation.rb +1 -1
  42. data/lib/tagcrumbs/resources/resource.rb +4 -4
  43. data/script/console +8 -3
  44. data/spec/fixtures_external/README.rdoc +15 -0
  45. data/spec/fixtures_external/json/access_token.json +11 -0
  46. data/spec/{fixtures → fixtures_external/json}/activity.json +32 -25
  47. data/spec/{fixtures → fixtures_external/json}/address.json +22 -25
  48. data/spec/fixtures_external/json/application.json +13 -0
  49. data/spec/{fixtures → fixtures_external/json}/city.json +2 -11
  50. data/spec/{fixtures → fixtures_external/json}/comment.json +51 -44
  51. data/spec/{fixtures → fixtures_external/json}/country.json +1 -4
  52. data/spec/fixtures_external/json/email_recommendation.json +286 -0
  53. data/spec/{fixtures → fixtures_external/json}/fanship.json +30 -30
  54. data/spec/{fixtures → fixtures_external/json}/favorite.json +45 -47
  55. data/spec/{fixtures → fixtures_external/json}/filter.json +30 -42
  56. data/spec/{fixtures → fixtures_external/json}/friendship.json +30 -30
  57. data/spec/fixtures_external/json/geoname.json +18 -0
  58. data/spec/{fixtures → fixtures_external/json}/link.json +41 -44
  59. data/spec/{fixtures → fixtures_external/json}/location.json +21 -31
  60. data/spec/fixtures_external/json/paragraph.json +12 -0
  61. data/spec/fixtures_external/json/picture.json +129 -0
  62. data/spec/fixtures_external/json/picture_upload.json +9 -0
  63. data/spec/{fixtures → fixtures_external/json}/placemark.json +136 -142
  64. data/spec/fixtures_external/json/placemarks.json +851 -0
  65. data/spec/{fixtures → fixtures_external/json}/profile.json +65 -94
  66. data/spec/fixtures_external/json/profile_link.json +123 -0
  67. data/spec/{fixtures → fixtures_external/json}/root.json +17 -21
  68. data/spec/{fixtures → fixtures_external/json}/settings.json +26 -19
  69. data/spec/{fixtures → fixtures_external/json}/state.json +2 -8
  70. data/spec/{fixtures → fixtures_external/json}/subscription.json +41 -44
  71. data/spec/fixtures_external/json/suggestions.json +302 -0
  72. data/spec/{fixtures → fixtures_external/json}/tag.json +0 -0
  73. data/spec/{fixtures → fixtures_external/json}/user.json +44 -20
  74. data/spec/{fixtures → fixtures_external/json}/user_recommendation.json +52 -55
  75. data/spec/fixtures_external/json/validation_errors.json +6 -0
  76. data/spec/fixtures_external/kml/network_link.kml +24 -0
  77. data/spec/fixtures_external/kml/tagcrumbs.kml +64 -0
  78. data/spec/fixtures_external/rdf/placemark.rdf +56 -0
  79. data/spec/fixtures_external/rss/tagcrumbs.rss +24 -0
  80. data/spec/fixtures_external/xml/access_token.xml +5 -0
  81. data/spec/fixtures_external/xml/activity.xml +62 -0
  82. data/spec/fixtures_external/xml/address.xml +51 -0
  83. data/spec/fixtures_external/xml/application.xml +5 -0
  84. data/spec/fixtures_external/xml/city.xml +27 -0
  85. data/spec/fixtures_external/xml/comment.xml +81 -0
  86. data/spec/fixtures_external/xml/country.xml +10 -0
  87. data/spec/fixtures_external/xml/email_recommendation.xml +78 -0
  88. data/spec/fixtures_external/xml/fanship.xml +49 -0
  89. data/spec/fixtures_external/xml/favorite.xml +97 -0
  90. data/spec/fixtures_external/xml/filter.xml +68 -0
  91. data/spec/fixtures_external/xml/friendship.xml +49 -0
  92. data/spec/fixtures_external/xml/geoname.xml +6 -0
  93. data/spec/fixtures_external/xml/link.xml +78 -0
  94. data/spec/fixtures_external/xml/location.xml +58 -0
  95. data/spec/fixtures_external/xml/paragraph.xml +8 -0
  96. data/spec/fixtures_external/xml/picture.xml +36 -0
  97. data/spec/fixtures_external/xml/picture_upload.xml +153 -0
  98. data/spec/fixtures_external/xml/placemark.xml +54 -0
  99. data/spec/fixtures_external/xml/placemarks.xml +336 -0
  100. data/spec/fixtures_external/xml/profile.xml +77 -0
  101. data/spec/fixtures_external/xml/profile_link.xml +34 -0
  102. data/spec/fixtures_external/xml/root.xml +12 -0
  103. data/spec/fixtures_external/xml/settings.xml +42 -0
  104. data/spec/fixtures_external/xml/state.xml +19 -0
  105. data/spec/fixtures_external/xml/subscription.xml +76 -0
  106. data/spec/fixtures_external/xml/suggestions.xml +106 -0
  107. data/spec/{fixtures → fixtures_external/xml}/tag.xml +2 -2
  108. data/spec/fixtures_external/xml/user.xml +37 -0
  109. data/spec/fixtures_external/xml/user_recommendation.xml +94 -0
  110. data/spec/fixtures_external/xml/validation_errors.xml +5 -0
  111. data/spec/spec_helper.rb +12 -2
  112. data/spec/tagcrumbs/requestor_spec.rb +2 -2
  113. data/spec/tagcrumbs/resources/array_spec.rb +38 -38
  114. data/spec/tagcrumbs/resources/models/access_token_spec.rb +16 -0
  115. data/spec/tagcrumbs/resources/models/accessors_spec.rb +2 -2
  116. data/spec/tagcrumbs/resources/models/activity_spec.rb +5 -1
  117. data/spec/tagcrumbs/resources/models/address_spec.rb +1 -1
  118. data/spec/tagcrumbs/resources/models/application_spec.rb +17 -0
  119. data/spec/tagcrumbs/resources/models/city_spec.rb +2 -5
  120. data/spec/tagcrumbs/resources/models/comment_spec.rb +8 -2
  121. data/spec/tagcrumbs/resources/models/country_spec.rb +2 -4
  122. data/spec/tagcrumbs/resources/models/email_recommendation_spec.rb +31 -0
  123. data/spec/tagcrumbs/resources/models/fanship_spec.rb +1 -1
  124. data/spec/tagcrumbs/resources/models/favorite_spec.rb +5 -1
  125. data/spec/tagcrumbs/resources/models/filter_spec.rb +3 -4
  126. data/spec/tagcrumbs/resources/models/friendship_spec.rb +1 -1
  127. data/spec/tagcrumbs/resources/models/geoname_spec.rb +1 -1
  128. data/spec/tagcrumbs/resources/models/link_spec.rb +1 -1
  129. data/spec/tagcrumbs/resources/models/location_spec.rb +1 -1
  130. data/spec/tagcrumbs/resources/models/model_spec.rb +20 -3
  131. data/spec/tagcrumbs/resources/models/paragraph_spec.rb +21 -0
  132. data/spec/tagcrumbs/resources/models/picture_spec.rb +13 -21
  133. data/spec/tagcrumbs/resources/models/place_spec.rb +3 -3
  134. data/spec/tagcrumbs/resources/models/placemark_spec.rb +11 -9
  135. data/spec/tagcrumbs/resources/models/profile_link_spec.rb +6 -12
  136. data/spec/tagcrumbs/resources/models/profile_spec.rb +5 -12
  137. data/spec/tagcrumbs/resources/models/root_spec.rb +15 -19
  138. data/spec/tagcrumbs/resources/models/settings_spec.rb +3 -1
  139. data/spec/tagcrumbs/resources/models/state_spec.rb +2 -5
  140. data/spec/tagcrumbs/resources/models/subscription_spec.rb +1 -1
  141. data/spec/tagcrumbs/resources/models/suggestions_spec.rb +7 -7
  142. data/spec/tagcrumbs/resources/models/tag_spec.rb +1 -1
  143. data/spec/tagcrumbs/resources/models/tagcrumb_spec.rb +3 -11
  144. data/spec/tagcrumbs/resources/models/user_recommendation_spec.rb +1 -1
  145. data/spec/tagcrumbs/resources/models/user_spec.rb +35 -27
  146. data/spec/tagcrumbs/resources/resource_spec.rb +3 -3
  147. data/spec/tagcrumbs_spec.rb +7 -7
  148. data/tagcrumbs.gemspec +2 -2
  149. metadata +82 -58
  150. data/examples/tagcrumbs_search.rb +0 -7
  151. data/lib/tagcrumbs/validations.rb +0 -301
  152. data/spec/fixtures/activity.xml +0 -66
  153. data/spec/fixtures/address.xml +0 -58
  154. data/spec/fixtures/city.xml +0 -34
  155. data/spec/fixtures/comment.xml +0 -87
  156. data/spec/fixtures/country.xml +0 -13
  157. data/spec/fixtures/fanship.xml +0 -54
  158. data/spec/fixtures/favorite.xml +0 -109
  159. data/spec/fixtures/filter.xml +0 -80
  160. data/spec/fixtures/friendship.xml +0 -54
  161. data/spec/fixtures/geoname.json +0 -18
  162. data/spec/fixtures/geoname.xml +0 -6
  163. data/spec/fixtures/link.xml +0 -88
  164. data/spec/fixtures/location.xml +0 -71
  165. data/spec/fixtures/picture.json +0 -154
  166. data/spec/fixtures/picture.xml +0 -49
  167. data/spec/fixtures/placemark.xml +0 -58
  168. data/spec/fixtures/placemarks.json +0 -887
  169. data/spec/fixtures/placemarks.xml +0 -348
  170. data/spec/fixtures/profile.xml +0 -100
  171. data/spec/fixtures/profile_link.json +0 -156
  172. data/spec/fixtures/profile_link.xml +0 -49
  173. data/spec/fixtures/root.xml +0 -14
  174. data/spec/fixtures/settings.xml +0 -45
  175. data/spec/fixtures/state.xml +0 -23
  176. data/spec/fixtures/subscription.xml +0 -86
  177. data/spec/fixtures/suggestions.json +0 -1877
  178. data/spec/fixtures/suggestions.xml +0 -724
  179. data/spec/fixtures/user.xml +0 -31
  180. data/spec/fixtures/user_recommendation.xml +0 -106
  181. data/spec/fixtures/validation_errors.json +0 -5
  182. data/spec/fixtures/validation_errors.xml +0 -5
  183. data/spec/tagcrumbs/validations_spec.rb +0 -27
@@ -1,49 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <profile_link type="ProfileLink" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.tagcrumbs.com/sascha/profile/links/1000042.xml">
3
- <link_type>Homepage</link_type>
4
- <url>http://www.test1.de</url>
5
- <created_at type="timestamp">2009-04-14T16:09:04+02:00</created_at>
6
- <updated_at type="timestamp">2009-05-29T12:40:16+02:00</updated_at>
7
- <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml">
8
- <fullname>FULLNAME</fullname>
9
-
10
- <about>ABOUT</about>
11
- <description>DESCRIPTION</description>
12
- <created_at type="timestamp">2008-06-12T09:34:55+02:00</created_at>
13
- <updated_at type="timestamp">2009-06-05T14:16:55+02:00</updated_at>
14
- <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
15
- <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/stuttgart.xml"/>
16
- <profile_links type="array" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
17
-
18
- <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
19
- <username>sascha</username>
20
- <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
21
- <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
22
- <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
23
- <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
24
- <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
25
- <filters type="array" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
26
-
27
- <links type="array" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
28
- <comments type="array" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
29
- <flags type="array" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
30
- <recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
31
- <received_recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations/received.xml"/>
32
- <subscriptions type="array" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
33
- <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
34
- <profile_links type="array" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
35
- <tagcrumbs type="array" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
36
-
37
- <placemarks type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
38
- <favorites type="array" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
39
- <activities type="array" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
40
- <tags type="array" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
41
- <places type="array" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
42
- <friendships type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
43
- <fanships type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
44
- <tagcrumbs_friends type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
45
- <tagcrumbs_fans type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
46
-
47
- </user>
48
- </profile>
49
- </profile_link>
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <root type="Root" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.tagcrumbs.com/?format=xml">
3
- <you type="User" xlink:href="http://www.tagcrumbs.com/you.xml"/>
4
- <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
5
- <tagcrumbs type="array" xlink:href="http://www.tagcrumbs.com/tagcrumbs.xml"/>
6
- <nearby_tagcrumbs type="array" xlink:href="http://www.tagcrumbs.com/nearby.xml"/>
7
- <countries type="array" xlink:href="http://www.tagcrumbs.com/places.xml"/>
8
- <popular_countries type="array" xlink:href="http://www.tagcrumbs.com/popular/places.xml"/>
9
- <place_search type="array" xlink:href="http://www.tagcrumbs.com/places/search.xml"/>
10
- <tags type="array" xlink:href="http://www.tagcrumbs.com/tags.xml"/>
11
- <users type="array" xlink:href="http://www.tagcrumbs.com/users.xml"/>
12
-
13
- <search type="array" xlink:href="http://www.tagcrumbs.com/search.xml"/>
14
- </root>
@@ -1,45 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <settings type="Settings" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml">
3
- <locale>de-DE</locale>
4
- <unit_system>imperial</unit_system>
5
- <notification_recommendation type="boolean">true</notification_recommendation>
6
- <notification_fan type="boolean">true</notification_fan>
7
- <newsletter type="boolean">false</newsletter>
8
-
9
- <facebook_new_placemark_feed type="boolean">true</facebook_new_placemark_feed>
10
- <facebook_new_favorite_feed type="boolean">true</facebook_new_favorite_feed>
11
- <facebook_new_comment_feed type="boolean">true</facebook_new_comment_feed>
12
- <updated_at type="timestamp">2009-06-10T15:00:47+02:00</updated_at>
13
- <created_at type="timestamp">2008-06-12T09:34:55+02:00</created_at>
14
- <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
15
-
16
- <username>sascha</username>
17
- <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
18
- <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
19
- <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
20
- <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
21
- <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
22
- <filters type="array" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
23
- <links type="array" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
24
-
25
- <comments type="array" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
26
- <flags type="array" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
27
- <recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
28
- <received_recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations/received.xml"/>
29
- <subscriptions type="array" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
30
- <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
31
- <profile_links type="array" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
32
- <tagcrumbs type="array" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
33
- <placemarks type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
34
-
35
- <favorites type="array" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
36
- <activities type="array" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
37
- <tags type="array" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
38
- <places type="array" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
39
- <friendships type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
40
- <fanships type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
41
- <tagcrumbs_friends type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
42
- <tagcrumbs_fans type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
43
- </user>
44
-
45
- </settings>
@@ -1,23 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <state type="State" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.xml">
3
- <name>Land Baden-W&#252;rttemberg</name>
4
- <permalink>land-baden-w&#252;rttemberg</permalink>
5
- <geoname type="Geoname" xlink:href="http://www.geonames.org/2953481">
6
- <geonameid type="integer">2953481</geonameid>
7
- <latitude type="float">48.5</latitude>
8
-
9
- <longitude type="float">9.0</longitude>
10
- </geoname>
11
- <country type="Country" xlink:href="http://www.tagcrumbs.com/places/germany.xml">
12
- <name>Deutschland</name>
13
- <permalink>germany</permalink>
14
- <geoname type="Geoname" xlink:href="http://www.geonames.org/2921044">
15
- <geonameid type="integer">2921044</geonameid>
16
-
17
- <latitude type="float">51.5</latitude>
18
- <longitude type="float">10.5</longitude>
19
- </geoname>
20
- <states type="array" xlink:href="http://www.tagcrumbs.com/places/germany/states.xml"/>
21
- </country>
22
- <cities type="array" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.xml"/>
23
- </state>
@@ -1,86 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <subscription type="Subscription" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions/1.xml">
3
- <created_at type="timestamp">2009-04-10T09:19:54+02:00</created_at>
4
- <updated_at type="timestamp">2009-04-10T09:19:54+02:00</updated_at>
5
- <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
6
- <username>sascha</username>
7
- <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
8
- <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
9
-
10
- <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
11
- <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
12
- <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
13
- <filters type="array" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
14
- <links type="array" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
15
- <comments type="array" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
16
- <flags type="array" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
17
- <recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
18
- <received_recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations/received.xml"/>
19
-
20
- <subscriptions type="array" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
21
- <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
22
- <profile_links type="array" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
23
- <tagcrumbs type="array" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
24
- <placemarks type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
25
- <favorites type="array" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
26
- <activities type="array" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
27
- <tags type="array" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
28
- <places type="array" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
29
-
30
- <friendships type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
31
- <fanships type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
32
- <tagcrumbs_friends type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
33
- <tagcrumbs_fans type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
34
- </user>
35
- <tagcrumb type="Placemark" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name.xml">
36
- <name>PLACEMARK NAME</name>
37
- <notes>PLACEMARK NOTES</notes>
38
-
39
- <tag_list>tag1, tag2</tag_list>
40
- <latitude type="float">48.9936222840986</latitude>
41
- <longitude type="float">8.89738082885742</longitude>
42
- <permalink>placemark-name</permalink>
43
- <favorites_count type="integer">0</favorites_count>
44
- <short_url>http://www.tagcrumbs.com/p/M2Y5Y2V</short_url>
45
-
46
- <created_at type="timestamp">2009-04-06T15:40:09+02:00</created_at>
47
- <updated_at type="timestamp">2009-04-09T10:09:14+02:00</updated_at>
48
- <private type="boolean">false</private>
49
- <city type="City" xlink:href="http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/illingen.xml"/>
50
- <address type="Address" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/address.xml"/>
51
- <links type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/links.xml"/>
52
- <recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/recommendations.xml"/>
53
-
54
- <comments type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks/placemark-name/comments.xml"/>
55
- <user type="User" xlink:href="http://www.tagcrumbs.com/sascha.xml">
56
- <username>sascha</username>
57
- <created_at type="timestamp">2008-06-12T09:34:00+02:00</created_at>
58
- <profile type="Profile" xlink:href="http://www.tagcrumbs.com/sascha/profile.xml"/>
59
- <settings type="Settings" xlink:href="http://www.tagcrumbs.com/sascha/settings.xml"/>
60
- <location type="Location" xlink:href="http://www.tagcrumbs.com/location.xml"/>
61
- <suggestions type="Suggestions" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.xml"/>
62
-
63
- <filters type="array" xlink:href="http://www.tagcrumbs.com/sascha/filters.xml"/>
64
- <links type="array" xlink:href="http://www.tagcrumbs.com/sascha/links.xml"/>
65
- <comments type="array" xlink:href="http://www.tagcrumbs.com/sascha/comments.xml"/>
66
- <flags type="array" xlink:href="http://www.tagcrumbs.com/sascha/flags.xml"/>
67
- <recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations.xml"/>
68
- <received_recommendations type="array" xlink:href="http://www.tagcrumbs.com/sascha/recommendations/received.xml"/>
69
- <subscriptions type="array" xlink:href="http://www.tagcrumbs.com/sascha/subscriptions.xml"/>
70
- <picture type="Picture" xlink:href="http://www.tagcrumbs.com/sascha/profile/picture.xml"/>
71
- <profile_links type="array" xlink:href="http://www.tagcrumbs.com/sascha/profile/links.xml"/>
72
-
73
- <tagcrumbs type="array" xlink:href="http://www.tagcrumbs.com/sascha/tagcrumbs.xml"/>
74
- <placemarks type="array" xlink:href="http://www.tagcrumbs.com/sascha/placemarks.xml"/>
75
- <favorites type="array" xlink:href="http://www.tagcrumbs.com/sascha/favorites.xml"/>
76
- <activities type="array" xlink:href="http://www.tagcrumbs.com/sascha/activities.xml"/>
77
- <tags type="array" xlink:href="http://www.tagcrumbs.com/sascha/tags.xml"/>
78
- <places type="array" xlink:href="http://www.tagcrumbs.com/sascha/places.xml"/>
79
- <friendships type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends.xml"/>
80
- <fanships type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans.xml"/>
81
- <tagcrumbs_friends type="array" xlink:href="http://www.tagcrumbs.com/sascha/friends/tagcrumbs.xml"/>
82
-
83
- <tagcrumbs_fans type="array" xlink:href="http://www.tagcrumbs.com/sascha/fans/tagcrumbs.xml"/>
84
- </user>
85
- </tagcrumb>
86
- </subscription>
@@ -1,1877 +0,0 @@
1
- {
2
- "suggestions": {
3
- "names": {
4
- "name": [
5
- {
6
- "$": "name1"
7
- },
8
- {
9
- "$": "name2"
10
- },
11
- {
12
- "$": "name3"
13
- }
14
- ],
15
- "@type": "array"
16
- },
17
- "@xlink:href": "http://www.tagcrumbs.com/sascha/tagcrumbs/suggestions.json",
18
- "popular_tags": {
19
- "@type": "array",
20
- "popular_tag": [
21
- {
22
- "@xlink:href": "http://www.tagcrumbs.com/tags/tag1.json",
23
- "name": {
24
- "$": "tag1"
25
- },
26
- "@type": "Tag"
27
- },
28
- {
29
- "@xlink:href": "http://www.tagcrumbs.com/tags/tag2.json",
30
- "name": {
31
- "$": "tag2"
32
- },
33
- "@type": "Tag"
34
- }
35
- ]
36
- },
37
- "@type": "Suggestions",
38
- "recommended_tags": {
39
- "@type": "array",
40
- "recommended_tag": [
41
- {
42
- "@xlink:href": "http://www.tagcrumbs.com/sascha/tags/tag3.json",
43
- "user": {
44
- "@xlink:href": "http://www.tagcrumbs.com/sascha.json",
45
- "@type": "User"
46
- },
47
- "name": {
48
- "$": "tag3"
49
- },
50
- "@type": "Tag"
51
- },
52
- {
53
- "@xlink:href": "http://www.tagcrumbs.com/sascha/tags/tag4.json",
54
- "user": {
55
- "@xlink:href": "http://www.tagcrumbs.com/sascha.json",
56
- "@type": "User"
57
- },
58
- "name": {
59
- "$": "tag4"
60
- },
61
- "@type": "Tag"
62
- }
63
- ]
64
- },
65
- "cities": {
66
- "city": [
67
- {
68
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/hohenhaslach.json",
69
- "geoname": {
70
- "geonameid": {
71
- "@type": "integer",
72
- "$": 2901727
73
- },
74
- "@xlink:href": "http://www.geonames.org/2901727",
75
- "longitude": {
76
- "@type": "float",
77
- "$": 9.0144444
78
- },
79
- "@type": "Geoname",
80
- "latitude": {
81
- "@type": "float",
82
- "$": 49.0022222
83
- }
84
- },
85
- "permalink": {
86
- "$": "hohenhaslach"
87
- },
88
- "name": {
89
- "$": "Hohenhaslach"
90
- },
91
- "@type": "City",
92
- "state": {
93
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
94
- "geoname": {
95
- "geonameid": {
96
- "@type": "integer",
97
- "$": 2953481
98
- },
99
- "@xlink:href": "http://www.geonames.org/2953481",
100
- "longitude": {
101
- "@type": "float",
102
- "$": 9.0
103
- },
104
- "@type": "Geoname",
105
- "latitude": {
106
- "@type": "float",
107
- "$": 48.5
108
- }
109
- },
110
- "permalink": {
111
- "$": "land-baden-w\u00fcrttemberg"
112
- },
113
- "name": {
114
- "$": "Land Baden-W\u00fcrttemberg"
115
- },
116
- "@type": "State",
117
- "cities": {
118
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
119
- "@type": "array"
120
- },
121
- "country": {
122
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
123
- "geoname": {
124
- "geonameid": {
125
- "@type": "integer",
126
- "$": 2921044
127
- },
128
- "@xlink:href": "http://www.geonames.org/2921044",
129
- "longitude": {
130
- "@type": "float",
131
- "$": 10.5
132
- },
133
- "@type": "Geoname",
134
- "latitude": {
135
- "@type": "float",
136
- "$": 51.5
137
- }
138
- },
139
- "permalink": {
140
- "$": "germany"
141
- },
142
- "name": {
143
- "$": "Deutschland"
144
- },
145
- "@type": "Country",
146
- "states": {
147
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
148
- "@type": "array"
149
- }
150
- }
151
- }
152
- },
153
- {
154
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/mittelhaslach.json",
155
- "geoname": {
156
- "geonameid": {
157
- "@type": "integer",
158
- "$": 2870706
159
- },
160
- "@xlink:href": "http://www.geonames.org/2870706",
161
- "longitude": {
162
- "@type": "float",
163
- "$": 9.0166667
164
- },
165
- "@type": "Geoname",
166
- "latitude": {
167
- "@type": "float",
168
- "$": 49.0
169
- }
170
- },
171
- "permalink": {
172
- "$": "mittelhaslach"
173
- },
174
- "name": {
175
- "$": "Mittelhaslach"
176
- },
177
- "@type": "City",
178
- "state": {
179
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
180
- "geoname": {
181
- "geonameid": {
182
- "@type": "integer",
183
- "$": 2953481
184
- },
185
- "@xlink:href": "http://www.geonames.org/2953481",
186
- "longitude": {
187
- "@type": "float",
188
- "$": 9.0
189
- },
190
- "@type": "Geoname",
191
- "latitude": {
192
- "@type": "float",
193
- "$": 48.5
194
- }
195
- },
196
- "permalink": {
197
- "$": "land-baden-w\u00fcrttemberg"
198
- },
199
- "name": {
200
- "$": "Land Baden-W\u00fcrttemberg"
201
- },
202
- "@type": "State",
203
- "cities": {
204
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
205
- "@type": "array"
206
- },
207
- "country": {
208
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
209
- "geoname": {
210
- "geonameid": {
211
- "@type": "integer",
212
- "$": 2921044
213
- },
214
- "@xlink:href": "http://www.geonames.org/2921044",
215
- "longitude": {
216
- "@type": "float",
217
- "$": 10.5
218
- },
219
- "@type": "Geoname",
220
- "latitude": {
221
- "@type": "float",
222
- "$": 51.5
223
- }
224
- },
225
- "permalink": {
226
- "$": "germany"
227
- },
228
- "name": {
229
- "$": "Deutschland"
230
- },
231
- "@type": "Country",
232
- "states": {
233
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
234
- "@type": "array"
235
- }
236
- }
237
- }
238
- },
239
- {
240
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/niederhaslach.json",
241
- "geoname": {
242
- "geonameid": {
243
- "@type": "integer",
244
- "$": 2863369
245
- },
246
- "@xlink:href": "http://www.geonames.org/2863369",
247
- "longitude": {
248
- "@type": "float",
249
- "$": 9.0166667
250
- },
251
- "@type": "Geoname",
252
- "latitude": {
253
- "@type": "float",
254
- "$": 49.0
255
- }
256
- },
257
- "permalink": {
258
- "$": "niederhaslach"
259
- },
260
- "name": {
261
- "$": "Niederhaslach"
262
- },
263
- "@type": "City",
264
- "state": {
265
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
266
- "geoname": {
267
- "geonameid": {
268
- "@type": "integer",
269
- "$": 2953481
270
- },
271
- "@xlink:href": "http://www.geonames.org/2953481",
272
- "longitude": {
273
- "@type": "float",
274
- "$": 9.0
275
- },
276
- "@type": "Geoname",
277
- "latitude": {
278
- "@type": "float",
279
- "$": 48.5
280
- }
281
- },
282
- "permalink": {
283
- "$": "land-baden-w\u00fcrttemberg"
284
- },
285
- "name": {
286
- "$": "Land Baden-W\u00fcrttemberg"
287
- },
288
- "@type": "State",
289
- "cities": {
290
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
291
- "@type": "array"
292
- },
293
- "country": {
294
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
295
- "geoname": {
296
- "geonameid": {
297
- "@type": "integer",
298
- "$": 2921044
299
- },
300
- "@xlink:href": "http://www.geonames.org/2921044",
301
- "longitude": {
302
- "@type": "float",
303
- "$": 10.5
304
- },
305
- "@type": "Geoname",
306
- "latitude": {
307
- "@type": "float",
308
- "$": 51.5
309
- }
310
- },
311
- "permalink": {
312
- "$": "germany"
313
- },
314
- "name": {
315
- "$": "Deutschland"
316
- },
317
- "@type": "Country",
318
- "states": {
319
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
320
- "@type": "array"
321
- }
322
- }
323
- }
324
- },
325
- {
326
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/spielberg.json",
327
- "geoname": {
328
- "geonameid": {
329
- "@type": "integer",
330
- "$": 2830495
331
- },
332
- "@xlink:href": "http://www.geonames.org/2830495",
333
- "longitude": {
334
- "@type": "float",
335
- "$": 8.9966667
336
- },
337
- "@type": "Geoname",
338
- "latitude": {
339
- "@type": "float",
340
- "$": 49.0186111
341
- }
342
- },
343
- "permalink": {
344
- "$": "spielberg"
345
- },
346
- "name": {
347
- "$": "Spielberg"
348
- },
349
- "@type": "City",
350
- "state": {
351
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
352
- "geoname": {
353
- "geonameid": {
354
- "@type": "integer",
355
- "$": 2953481
356
- },
357
- "@xlink:href": "http://www.geonames.org/2953481",
358
- "longitude": {
359
- "@type": "float",
360
- "$": 9.0
361
- },
362
- "@type": "Geoname",
363
- "latitude": {
364
- "@type": "float",
365
- "$": 48.5
366
- }
367
- },
368
- "permalink": {
369
- "$": "land-baden-w\u00fcrttemberg"
370
- },
371
- "name": {
372
- "$": "Land Baden-W\u00fcrttemberg"
373
- },
374
- "@type": "State",
375
- "cities": {
376
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
377
- "@type": "array"
378
- },
379
- "country": {
380
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
381
- "geoname": {
382
- "geonameid": {
383
- "@type": "integer",
384
- "$": 2921044
385
- },
386
- "@xlink:href": "http://www.geonames.org/2921044",
387
- "longitude": {
388
- "@type": "float",
389
- "$": 10.5
390
- },
391
- "@type": "Geoname",
392
- "latitude": {
393
- "@type": "float",
394
- "$": 51.5
395
- }
396
- },
397
- "permalink": {
398
- "$": "germany"
399
- },
400
- "name": {
401
- "$": "Deutschland"
402
- },
403
- "@type": "Country",
404
- "states": {
405
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
406
- "@type": "array"
407
- }
408
- }
409
- }
410
- },
411
- {
412
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/horrheim.json",
413
- "geoname": {
414
- "geonameid": {
415
- "@type": "integer",
416
- "$": 2898729
417
- },
418
- "@xlink:href": "http://www.geonames.org/2898729",
419
- "longitude": {
420
- "@type": "float",
421
- "$": 8.9833333
422
- },
423
- "@type": "Geoname",
424
- "latitude": {
425
- "@type": "float",
426
- "$": 48.9833333
427
- }
428
- },
429
- "permalink": {
430
- "$": "horrheim"
431
- },
432
- "name": {
433
- "$": "Horrheim"
434
- },
435
- "@type": "City",
436
- "state": {
437
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
438
- "geoname": {
439
- "geonameid": {
440
- "@type": "integer",
441
- "$": 2953481
442
- },
443
- "@xlink:href": "http://www.geonames.org/2953481",
444
- "longitude": {
445
- "@type": "float",
446
- "$": 9.0
447
- },
448
- "@type": "Geoname",
449
- "latitude": {
450
- "@type": "float",
451
- "$": 48.5
452
- }
453
- },
454
- "permalink": {
455
- "$": "land-baden-w\u00fcrttemberg"
456
- },
457
- "name": {
458
- "$": "Land Baden-W\u00fcrttemberg"
459
- },
460
- "@type": "State",
461
- "cities": {
462
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
463
- "@type": "array"
464
- },
465
- "country": {
466
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
467
- "geoname": {
468
- "geonameid": {
469
- "@type": "integer",
470
- "$": 2921044
471
- },
472
- "@xlink:href": "http://www.geonames.org/2921044",
473
- "longitude": {
474
- "@type": "float",
475
- "$": 10.5
476
- },
477
- "@type": "Geoname",
478
- "latitude": {
479
- "@type": "float",
480
- "$": 51.5
481
- }
482
- },
483
- "permalink": {
484
- "$": "germany"
485
- },
486
- "name": {
487
- "$": "Deutschland"
488
- },
489
- "@type": "Country",
490
- "states": {
491
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
492
- "@type": "array"
493
- }
494
- }
495
- }
496
- },
497
- {
498
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/ochsenbach-2.json",
499
- "geoname": {
500
- "geonameid": {
501
- "@type": "integer",
502
- "$": 2858386
503
- },
504
- "@xlink:href": "http://www.geonames.org/2858386",
505
- "longitude": {
506
- "@type": "float",
507
- "$": 8.9816667
508
- },
509
- "@type": "Geoname",
510
- "latitude": {
511
- "@type": "float",
512
- "$": 49.0230556
513
- }
514
- },
515
- "permalink": {
516
- "$": "ochsenbach-2"
517
- },
518
- "name": {
519
- "$": "Ochsenbach"
520
- },
521
- "@type": "City",
522
- "state": {
523
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
524
- "geoname": {
525
- "geonameid": {
526
- "@type": "integer",
527
- "$": 2953481
528
- },
529
- "@xlink:href": "http://www.geonames.org/2953481",
530
- "longitude": {
531
- "@type": "float",
532
- "$": 9.0
533
- },
534
- "@type": "Geoname",
535
- "latitude": {
536
- "@type": "float",
537
- "$": 48.5
538
- }
539
- },
540
- "permalink": {
541
- "$": "land-baden-w\u00fcrttemberg"
542
- },
543
- "name": {
544
- "$": "Land Baden-W\u00fcrttemberg"
545
- },
546
- "@type": "State",
547
- "cities": {
548
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
549
- "@type": "array"
550
- },
551
- "country": {
552
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
553
- "geoname": {
554
- "geonameid": {
555
- "@type": "integer",
556
- "$": 2921044
557
- },
558
- "@xlink:href": "http://www.geonames.org/2921044",
559
- "longitude": {
560
- "@type": "float",
561
- "$": 10.5
562
- },
563
- "@type": "Geoname",
564
- "latitude": {
565
- "@type": "float",
566
- "$": 51.5
567
- }
568
- },
569
- "permalink": {
570
- "$": "germany"
571
- },
572
- "name": {
573
- "$": "Deutschland"
574
- },
575
- "@type": "Country",
576
- "states": {
577
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
578
- "@type": "array"
579
- }
580
- }
581
- }
582
- },
583
- {
584
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/rechentshofen.json",
585
- "geoname": {
586
- "geonameid": {
587
- "@type": "integer",
588
- "$": 2849723
589
- },
590
- "@xlink:href": "http://www.geonames.org/2849723",
591
- "longitude": {
592
- "@type": "float",
593
- "$": 9.0333333
594
- },
595
- "@type": "Geoname",
596
- "latitude": {
597
- "@type": "float",
598
- "$": 48.9833333
599
- }
600
- },
601
- "permalink": {
602
- "$": "rechentshofen"
603
- },
604
- "name": {
605
- "$": "Rechentshofen"
606
- },
607
- "@type": "City",
608
- "state": {
609
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
610
- "geoname": {
611
- "geonameid": {
612
- "@type": "integer",
613
- "$": 2953481
614
- },
615
- "@xlink:href": "http://www.geonames.org/2953481",
616
- "longitude": {
617
- "@type": "float",
618
- "$": 9.0
619
- },
620
- "@type": "Geoname",
621
- "latitude": {
622
- "@type": "float",
623
- "$": 48.5
624
- }
625
- },
626
- "permalink": {
627
- "$": "land-baden-w\u00fcrttemberg"
628
- },
629
- "name": {
630
- "$": "Land Baden-W\u00fcrttemberg"
631
- },
632
- "@type": "State",
633
- "cities": {
634
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
635
- "@type": "array"
636
- },
637
- "country": {
638
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
639
- "geoname": {
640
- "geonameid": {
641
- "@type": "integer",
642
- "$": 2921044
643
- },
644
- "@xlink:href": "http://www.geonames.org/2921044",
645
- "longitude": {
646
- "@type": "float",
647
- "$": 10.5
648
- },
649
- "@type": "Geoname",
650
- "latitude": {
651
- "@type": "float",
652
- "$": 51.5
653
- }
654
- },
655
- "permalink": {
656
- "$": "germany"
657
- },
658
- "name": {
659
- "$": "Deutschland"
660
- },
661
- "@type": "Country",
662
- "states": {
663
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
664
- "@type": "array"
665
- }
666
- }
667
- }
668
- },
669
- {
670
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/sersheim.json",
671
- "geoname": {
672
- "geonameid": {
673
- "@type": "integer",
674
- "$": 2832939
675
- },
676
- "@xlink:href": "http://www.geonames.org/2832939",
677
- "longitude": {
678
- "@type": "float",
679
- "$": 9.0166667
680
- },
681
- "@type": "Geoname",
682
- "latitude": {
683
- "@type": "float",
684
- "$": 48.9666667
685
- }
686
- },
687
- "permalink": {
688
- "$": "sersheim"
689
- },
690
- "name": {
691
- "$": "Sersheim"
692
- },
693
- "@type": "City",
694
- "state": {
695
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
696
- "geoname": {
697
- "geonameid": {
698
- "@type": "integer",
699
- "$": 2953481
700
- },
701
- "@xlink:href": "http://www.geonames.org/2953481",
702
- "longitude": {
703
- "@type": "float",
704
- "$": 9.0
705
- },
706
- "@type": "Geoname",
707
- "latitude": {
708
- "@type": "float",
709
- "$": 48.5
710
- }
711
- },
712
- "permalink": {
713
- "$": "land-baden-w\u00fcrttemberg"
714
- },
715
- "name": {
716
- "$": "Land Baden-W\u00fcrttemberg"
717
- },
718
- "@type": "State",
719
- "cities": {
720
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
721
- "@type": "array"
722
- },
723
- "country": {
724
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
725
- "geoname": {
726
- "geonameid": {
727
- "@type": "integer",
728
- "$": 2921044
729
- },
730
- "@xlink:href": "http://www.geonames.org/2921044",
731
- "longitude": {
732
- "@type": "float",
733
- "$": 10.5
734
- },
735
- "@type": "Geoname",
736
- "latitude": {
737
- "@type": "float",
738
- "$": 51.5
739
- }
740
- },
741
- "permalink": {
742
- "$": "germany"
743
- },
744
- "name": {
745
- "$": "Deutschland"
746
- },
747
- "@type": "Country",
748
- "states": {
749
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
750
- "@type": "array"
751
- }
752
- }
753
- }
754
- },
755
- {
756
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/eibensbach.json",
757
- "geoname": {
758
- "geonameid": {
759
- "@type": "integer",
760
- "$": 2932739
761
- },
762
- "@xlink:href": "http://www.geonames.org/2932739",
763
- "longitude": {
764
- "@type": "float",
765
- "$": 8.9986111
766
- },
767
- "@type": "Geoname",
768
- "latitude": {
769
- "@type": "float",
770
- "$": 49.0488889
771
- }
772
- },
773
- "permalink": {
774
- "$": "eibensbach"
775
- },
776
- "name": {
777
- "$": "Eibensbach"
778
- },
779
- "@type": "City",
780
- "state": {
781
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
782
- "geoname": {
783
- "geonameid": {
784
- "@type": "integer",
785
- "$": 2953481
786
- },
787
- "@xlink:href": "http://www.geonames.org/2953481",
788
- "longitude": {
789
- "@type": "float",
790
- "$": 9.0
791
- },
792
- "@type": "Geoname",
793
- "latitude": {
794
- "@type": "float",
795
- "$": 48.5
796
- }
797
- },
798
- "permalink": {
799
- "$": "land-baden-w\u00fcrttemberg"
800
- },
801
- "name": {
802
- "$": "Land Baden-W\u00fcrttemberg"
803
- },
804
- "@type": "State",
805
- "cities": {
806
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
807
- "@type": "array"
808
- },
809
- "country": {
810
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
811
- "geoname": {
812
- "geonameid": {
813
- "@type": "integer",
814
- "$": 2921044
815
- },
816
- "@xlink:href": "http://www.geonames.org/2921044",
817
- "longitude": {
818
- "@type": "float",
819
- "$": 10.5
820
- },
821
- "@type": "Geoname",
822
- "latitude": {
823
- "@type": "float",
824
- "$": 51.5
825
- }
826
- },
827
- "permalink": {
828
- "$": "germany"
829
- },
830
- "name": {
831
- "$": "Deutschland"
832
- },
833
- "@type": "Country",
834
- "states": {
835
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
836
- "@type": "array"
837
- }
838
- }
839
- }
840
- },
841
- {
842
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/cleebronn.json",
843
- "geoname": {
844
- "geonameid": {
845
- "@type": "integer",
846
- "$": 2939990
847
- },
848
- "@xlink:href": "http://www.geonames.org/2939990",
849
- "longitude": {
850
- "@type": "float",
851
- "$": 9.0369444
852
- },
853
- "@type": "Geoname",
854
- "latitude": {
855
- "@type": "float",
856
- "$": 49.045
857
- }
858
- },
859
- "permalink": {
860
- "$": "cleebronn"
861
- },
862
- "name": {
863
- "$": "Cleebronn"
864
- },
865
- "@type": "City",
866
- "state": {
867
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
868
- "geoname": {
869
- "geonameid": {
870
- "@type": "integer",
871
- "$": 2953481
872
- },
873
- "@xlink:href": "http://www.geonames.org/2953481",
874
- "longitude": {
875
- "@type": "float",
876
- "$": 9.0
877
- },
878
- "@type": "Geoname",
879
- "latitude": {
880
- "@type": "float",
881
- "$": 48.5
882
- }
883
- },
884
- "permalink": {
885
- "$": "land-baden-w\u00fcrttemberg"
886
- },
887
- "name": {
888
- "$": "Land Baden-W\u00fcrttemberg"
889
- },
890
- "@type": "State",
891
- "cities": {
892
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
893
- "@type": "array"
894
- },
895
- "country": {
896
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
897
- "geoname": {
898
- "geonameid": {
899
- "@type": "integer",
900
- "$": 2921044
901
- },
902
- "@xlink:href": "http://www.geonames.org/2921044",
903
- "longitude": {
904
- "@type": "float",
905
- "$": 10.5
906
- },
907
- "@type": "Geoname",
908
- "latitude": {
909
- "@type": "float",
910
- "$": 51.5
911
- }
912
- },
913
- "permalink": {
914
- "$": "germany"
915
- },
916
- "name": {
917
- "$": "Deutschland"
918
- },
919
- "@type": "Country",
920
- "states": {
921
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
922
- "@type": "array"
923
- }
924
- }
925
- }
926
- },
927
- {
928
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/freudental.json",
929
- "geoname": {
930
- "geonameid": {
931
- "@type": "integer",
932
- "$": 2924888
933
- },
934
- "@xlink:href": "http://www.geonames.org/2924888",
935
- "longitude": {
936
- "@type": "float",
937
- "$": 9.0591667
938
- },
939
- "@type": "Geoname",
940
- "latitude": {
941
- "@type": "float",
942
- "$": 49.0097222
943
- }
944
- },
945
- "permalink": {
946
- "$": "freudental"
947
- },
948
- "name": {
949
- "$": "Freudental"
950
- },
951
- "@type": "City",
952
- "state": {
953
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
954
- "geoname": {
955
- "geonameid": {
956
- "@type": "integer",
957
- "$": 2953481
958
- },
959
- "@xlink:href": "http://www.geonames.org/2953481",
960
- "longitude": {
961
- "@type": "float",
962
- "$": 9.0
963
- },
964
- "@type": "Geoname",
965
- "latitude": {
966
- "@type": "float",
967
- "$": 48.5
968
- }
969
- },
970
- "permalink": {
971
- "$": "land-baden-w\u00fcrttemberg"
972
- },
973
- "name": {
974
- "$": "Land Baden-W\u00fcrttemberg"
975
- },
976
- "@type": "State",
977
- "cities": {
978
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
979
- "@type": "array"
980
- },
981
- "country": {
982
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
983
- "geoname": {
984
- "geonameid": {
985
- "@type": "integer",
986
- "$": 2921044
987
- },
988
- "@xlink:href": "http://www.geonames.org/2921044",
989
- "longitude": {
990
- "@type": "float",
991
- "$": 10.5
992
- },
993
- "@type": "Geoname",
994
- "latitude": {
995
- "@type": "float",
996
- "$": 51.5
997
- }
998
- },
999
- "permalink": {
1000
- "$": "germany"
1001
- },
1002
- "name": {
1003
- "$": "Deutschland"
1004
- },
1005
- "@type": "Country",
1006
- "states": {
1007
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1008
- "@type": "array"
1009
- }
1010
- }
1011
- }
1012
- },
1013
- {
1014
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/kleinglattbach.json",
1015
- "geoname": {
1016
- "geonameid": {
1017
- "@type": "integer",
1018
- "$": 2888851
1019
- },
1020
- "@xlink:href": "http://www.geonames.org/2888851",
1021
- "longitude": {
1022
- "@type": "float",
1023
- "$": 8.9666667
1024
- },
1025
- "@type": "Geoname",
1026
- "latitude": {
1027
- "@type": "float",
1028
- "$": 48.95
1029
- }
1030
- },
1031
- "permalink": {
1032
- "$": "kleinglattbach"
1033
- },
1034
- "name": {
1035
- "$": "Kleinglattbach"
1036
- },
1037
- "@type": "City",
1038
- "state": {
1039
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1040
- "geoname": {
1041
- "geonameid": {
1042
- "@type": "integer",
1043
- "$": 2953481
1044
- },
1045
- "@xlink:href": "http://www.geonames.org/2953481",
1046
- "longitude": {
1047
- "@type": "float",
1048
- "$": 9.0
1049
- },
1050
- "@type": "Geoname",
1051
- "latitude": {
1052
- "@type": "float",
1053
- "$": 48.5
1054
- }
1055
- },
1056
- "permalink": {
1057
- "$": "land-baden-w\u00fcrttemberg"
1058
- },
1059
- "name": {
1060
- "$": "Land Baden-W\u00fcrttemberg"
1061
- },
1062
- "@type": "State",
1063
- "cities": {
1064
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1065
- "@type": "array"
1066
- },
1067
- "country": {
1068
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1069
- "geoname": {
1070
- "geonameid": {
1071
- "@type": "integer",
1072
- "$": 2921044
1073
- },
1074
- "@xlink:href": "http://www.geonames.org/2921044",
1075
- "longitude": {
1076
- "@type": "float",
1077
- "$": 10.5
1078
- },
1079
- "@type": "Geoname",
1080
- "latitude": {
1081
- "@type": "float",
1082
- "$": 51.5
1083
- }
1084
- },
1085
- "permalink": {
1086
- "$": "germany"
1087
- },
1088
- "name": {
1089
- "$": "Deutschland"
1090
- },
1091
- "@type": "Country",
1092
- "states": {
1093
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1094
- "@type": "array"
1095
- }
1096
- }
1097
- }
1098
- },
1099
- {
1100
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/ensingen.json",
1101
- "geoname": {
1102
- "geonameid": {
1103
- "@type": "integer",
1104
- "$": 2930004
1105
- },
1106
- "@xlink:href": "http://www.geonames.org/2930004",
1107
- "longitude": {
1108
- "@type": "float",
1109
- "$": 8.95
1110
- },
1111
- "@type": "Geoname",
1112
- "latitude": {
1113
- "@type": "float",
1114
- "$": 48.9666667
1115
- }
1116
- },
1117
- "permalink": {
1118
- "$": "ensingen"
1119
- },
1120
- "name": {
1121
- "$": "Ensingen"
1122
- },
1123
- "@type": "City",
1124
- "state": {
1125
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1126
- "geoname": {
1127
- "geonameid": {
1128
- "@type": "integer",
1129
- "$": 2953481
1130
- },
1131
- "@xlink:href": "http://www.geonames.org/2953481",
1132
- "longitude": {
1133
- "@type": "float",
1134
- "$": 9.0
1135
- },
1136
- "@type": "Geoname",
1137
- "latitude": {
1138
- "@type": "float",
1139
- "$": 48.5
1140
- }
1141
- },
1142
- "permalink": {
1143
- "$": "land-baden-w\u00fcrttemberg"
1144
- },
1145
- "name": {
1146
- "$": "Land Baden-W\u00fcrttemberg"
1147
- },
1148
- "@type": "State",
1149
- "cities": {
1150
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1151
- "@type": "array"
1152
- },
1153
- "country": {
1154
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1155
- "geoname": {
1156
- "geonameid": {
1157
- "@type": "integer",
1158
- "$": 2921044
1159
- },
1160
- "@xlink:href": "http://www.geonames.org/2921044",
1161
- "longitude": {
1162
- "@type": "float",
1163
- "$": 10.5
1164
- },
1165
- "@type": "Geoname",
1166
- "latitude": {
1167
- "@type": "float",
1168
- "$": 51.5
1169
- }
1170
- },
1171
- "permalink": {
1172
- "$": "germany"
1173
- },
1174
- "name": {
1175
- "$": "Deutschland"
1176
- },
1177
- "@type": "Country",
1178
- "states": {
1179
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1180
- "@type": "array"
1181
- }
1182
- }
1183
- }
1184
- },
1185
- {
1186
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/treffentrill.json",
1187
- "geoname": {
1188
- "geonameid": {
1189
- "@type": "integer",
1190
- "$": 2821397
1191
- },
1192
- "@xlink:href": "http://www.geonames.org/2821397",
1193
- "longitude": {
1194
- "@type": "float",
1195
- "$": 9.05
1196
- },
1197
- "@type": "Geoname",
1198
- "latitude": {
1199
- "@type": "float",
1200
- "$": 49.0333333
1201
- }
1202
- },
1203
- "permalink": {
1204
- "$": "treffentrill"
1205
- },
1206
- "name": {
1207
- "$": "Treffentrill"
1208
- },
1209
- "@type": "City",
1210
- "state": {
1211
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1212
- "geoname": {
1213
- "geonameid": {
1214
- "@type": "integer",
1215
- "$": 2953481
1216
- },
1217
- "@xlink:href": "http://www.geonames.org/2953481",
1218
- "longitude": {
1219
- "@type": "float",
1220
- "$": 9.0
1221
- },
1222
- "@type": "Geoname",
1223
- "latitude": {
1224
- "@type": "float",
1225
- "$": 48.5
1226
- }
1227
- },
1228
- "permalink": {
1229
- "$": "land-baden-w\u00fcrttemberg"
1230
- },
1231
- "name": {
1232
- "$": "Land Baden-W\u00fcrttemberg"
1233
- },
1234
- "@type": "State",
1235
- "cities": {
1236
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1237
- "@type": "array"
1238
- },
1239
- "country": {
1240
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1241
- "geoname": {
1242
- "geonameid": {
1243
- "@type": "integer",
1244
- "$": 2921044
1245
- },
1246
- "@xlink:href": "http://www.geonames.org/2921044",
1247
- "longitude": {
1248
- "@type": "float",
1249
- "$": 10.5
1250
- },
1251
- "@type": "Geoname",
1252
- "latitude": {
1253
- "@type": "float",
1254
- "$": 51.5
1255
- }
1256
- },
1257
- "permalink": {
1258
- "$": "germany"
1259
- },
1260
- "name": {
1261
- "$": "Deutschland"
1262
- },
1263
- "@type": "Country",
1264
- "states": {
1265
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1266
- "@type": "array"
1267
- }
1268
- }
1269
- }
1270
- },
1271
- {
1272
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/im-tal-2.json",
1273
- "geoname": {
1274
- "geonameid": {
1275
- "@type": "integer",
1276
- "$": 2896155
1277
- },
1278
- "@xlink:href": "http://www.geonames.org/2896155",
1279
- "longitude": {
1280
- "@type": "float",
1281
- "$": 9.05
1282
- },
1283
- "@type": "Geoname",
1284
- "latitude": {
1285
- "@type": "float",
1286
- "$": 48.9666667
1287
- }
1288
- },
1289
- "permalink": {
1290
- "$": "im-tal-2"
1291
- },
1292
- "name": {
1293
- "$": "Im Tal"
1294
- },
1295
- "@type": "City",
1296
- "state": {
1297
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1298
- "geoname": {
1299
- "geonameid": {
1300
- "@type": "integer",
1301
- "$": 2953481
1302
- },
1303
- "@xlink:href": "http://www.geonames.org/2953481",
1304
- "longitude": {
1305
- "@type": "float",
1306
- "$": 9.0
1307
- },
1308
- "@type": "Geoname",
1309
- "latitude": {
1310
- "@type": "float",
1311
- "$": 48.5
1312
- }
1313
- },
1314
- "permalink": {
1315
- "$": "land-baden-w\u00fcrttemberg"
1316
- },
1317
- "name": {
1318
- "$": "Land Baden-W\u00fcrttemberg"
1319
- },
1320
- "@type": "State",
1321
- "cities": {
1322
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1323
- "@type": "array"
1324
- },
1325
- "country": {
1326
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1327
- "geoname": {
1328
- "geonameid": {
1329
- "@type": "integer",
1330
- "$": 2921044
1331
- },
1332
- "@xlink:href": "http://www.geonames.org/2921044",
1333
- "longitude": {
1334
- "@type": "float",
1335
- "$": 10.5
1336
- },
1337
- "@type": "Geoname",
1338
- "latitude": {
1339
- "@type": "float",
1340
- "$": 51.5
1341
- }
1342
- },
1343
- "permalink": {
1344
- "$": "germany"
1345
- },
1346
- "name": {
1347
- "$": "Deutschland"
1348
- },
1349
- "@type": "Country",
1350
- "states": {
1351
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1352
- "@type": "array"
1353
- }
1354
- }
1355
- }
1356
- },
1357
- {
1358
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/leinfelderhof.json",
1359
- "geoname": {
1360
- "geonameid": {
1361
- "@type": "integer",
1362
- "$": 2879184
1363
- },
1364
- "@xlink:href": "http://www.geonames.org/2879184",
1365
- "longitude": {
1366
- "@type": "float",
1367
- "$": 9.0
1368
- },
1369
- "@type": "Geoname",
1370
- "latitude": {
1371
- "@type": "float",
1372
- "$": 48.9333333
1373
- }
1374
- },
1375
- "permalink": {
1376
- "$": "leinfelderhof"
1377
- },
1378
- "name": {
1379
- "$": "Leinfelderhof"
1380
- },
1381
- "@type": "City",
1382
- "state": {
1383
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1384
- "geoname": {
1385
- "geonameid": {
1386
- "@type": "integer",
1387
- "$": 2953481
1388
- },
1389
- "@xlink:href": "http://www.geonames.org/2953481",
1390
- "longitude": {
1391
- "@type": "float",
1392
- "$": 9.0
1393
- },
1394
- "@type": "Geoname",
1395
- "latitude": {
1396
- "@type": "float",
1397
- "$": 48.5
1398
- }
1399
- },
1400
- "permalink": {
1401
- "$": "land-baden-w\u00fcrttemberg"
1402
- },
1403
- "name": {
1404
- "$": "Land Baden-W\u00fcrttemberg"
1405
- },
1406
- "@type": "State",
1407
- "cities": {
1408
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1409
- "@type": "array"
1410
- },
1411
- "country": {
1412
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1413
- "geoname": {
1414
- "geonameid": {
1415
- "@type": "integer",
1416
- "$": 2921044
1417
- },
1418
- "@xlink:href": "http://www.geonames.org/2921044",
1419
- "longitude": {
1420
- "@type": "float",
1421
- "$": 10.5
1422
- },
1423
- "@type": "Geoname",
1424
- "latitude": {
1425
- "@type": "float",
1426
- "$": 51.5
1427
- }
1428
- },
1429
- "permalink": {
1430
- "$": "germany"
1431
- },
1432
- "name": {
1433
- "$": "Deutschland"
1434
- },
1435
- "@type": "Country",
1436
- "states": {
1437
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1438
- "@type": "array"
1439
- }
1440
- }
1441
- }
1442
- },
1443
- {
1444
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/g%C3%BCndelbach.json",
1445
- "geoname": {
1446
- "geonameid": {
1447
- "@type": "integer",
1448
- "$": 2913715
1449
- },
1450
- "@xlink:href": "http://www.geonames.org/2913715",
1451
- "longitude": {
1452
- "@type": "float",
1453
- "$": 8.9333333
1454
- },
1455
- "@type": "Geoname",
1456
- "latitude": {
1457
- "@type": "float",
1458
- "$": 49.0
1459
- }
1460
- },
1461
- "permalink": {
1462
- "$": "g\u00fcndelbach"
1463
- },
1464
- "name": {
1465
- "$": "G\u00fcndelbach"
1466
- },
1467
- "@type": "City",
1468
- "state": {
1469
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1470
- "geoname": {
1471
- "geonameid": {
1472
- "@type": "integer",
1473
- "$": 2953481
1474
- },
1475
- "@xlink:href": "http://www.geonames.org/2953481",
1476
- "longitude": {
1477
- "@type": "float",
1478
- "$": 9.0
1479
- },
1480
- "@type": "Geoname",
1481
- "latitude": {
1482
- "@type": "float",
1483
- "$": 48.5
1484
- }
1485
- },
1486
- "permalink": {
1487
- "$": "land-baden-w\u00fcrttemberg"
1488
- },
1489
- "name": {
1490
- "$": "Land Baden-W\u00fcrttemberg"
1491
- },
1492
- "@type": "State",
1493
- "cities": {
1494
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1495
- "@type": "array"
1496
- },
1497
- "country": {
1498
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1499
- "geoname": {
1500
- "geonameid": {
1501
- "@type": "integer",
1502
- "$": 2921044
1503
- },
1504
- "@xlink:href": "http://www.geonames.org/2921044",
1505
- "longitude": {
1506
- "@type": "float",
1507
- "$": 10.5
1508
- },
1509
- "@type": "Geoname",
1510
- "latitude": {
1511
- "@type": "float",
1512
- "$": 51.5
1513
- }
1514
- },
1515
- "permalink": {
1516
- "$": "germany"
1517
- },
1518
- "name": {
1519
- "$": "Deutschland"
1520
- },
1521
- "@type": "Country",
1522
- "states": {
1523
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1524
- "@type": "array"
1525
- }
1526
- }
1527
- }
1528
- },
1529
- {
1530
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/pfaffenhofen.json",
1531
- "geoname": {
1532
- "geonameid": {
1533
- "@type": "integer",
1534
- "$": 2854392
1535
- },
1536
- "@xlink:href": "http://www.geonames.org/2854392",
1537
- "longitude": {
1538
- "@type": "float",
1539
- "$": 8.9763889
1540
- },
1541
- "@type": "Geoname",
1542
- "latitude": {
1543
- "@type": "float",
1544
- "$": 49.0644444
1545
- }
1546
- },
1547
- "permalink": {
1548
- "$": "pfaffenhofen"
1549
- },
1550
- "name": {
1551
- "$": "Pfaffenhofen"
1552
- },
1553
- "@type": "City",
1554
- "state": {
1555
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1556
- "geoname": {
1557
- "geonameid": {
1558
- "@type": "integer",
1559
- "$": 2953481
1560
- },
1561
- "@xlink:href": "http://www.geonames.org/2953481",
1562
- "longitude": {
1563
- "@type": "float",
1564
- "$": 9.0
1565
- },
1566
- "@type": "Geoname",
1567
- "latitude": {
1568
- "@type": "float",
1569
- "$": 48.5
1570
- }
1571
- },
1572
- "permalink": {
1573
- "$": "land-baden-w\u00fcrttemberg"
1574
- },
1575
- "name": {
1576
- "$": "Land Baden-W\u00fcrttemberg"
1577
- },
1578
- "@type": "State",
1579
- "cities": {
1580
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1581
- "@type": "array"
1582
- },
1583
- "country": {
1584
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1585
- "geoname": {
1586
- "geonameid": {
1587
- "@type": "integer",
1588
- "$": 2921044
1589
- },
1590
- "@xlink:href": "http://www.geonames.org/2921044",
1591
- "longitude": {
1592
- "@type": "float",
1593
- "$": 10.5
1594
- },
1595
- "@type": "Geoname",
1596
- "latitude": {
1597
- "@type": "float",
1598
- "$": 51.5
1599
- }
1600
- },
1601
- "permalink": {
1602
- "$": "germany"
1603
- },
1604
- "name": {
1605
- "$": "Deutschland"
1606
- },
1607
- "@type": "Country",
1608
- "states": {
1609
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1610
- "@type": "array"
1611
- }
1612
- }
1613
- }
1614
- },
1615
- {
1616
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/g%C3%BCglingen.json",
1617
- "geoname": {
1618
- "geonameid": {
1619
- "@type": "integer",
1620
- "$": 2913838
1621
- },
1622
- "@xlink:href": "http://www.geonames.org/2913838",
1623
- "longitude": {
1624
- "@type": "float",
1625
- "$": 8.9944444
1626
- },
1627
- "@type": "Geoname",
1628
- "latitude": {
1629
- "@type": "float",
1630
- "$": 49.0697222
1631
- }
1632
- },
1633
- "permalink": {
1634
- "$": "g\u00fcglingen"
1635
- },
1636
- "name": {
1637
- "$": "G\u00fcglingen"
1638
- },
1639
- "@type": "City",
1640
- "state": {
1641
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1642
- "geoname": {
1643
- "geonameid": {
1644
- "@type": "integer",
1645
- "$": 2953481
1646
- },
1647
- "@xlink:href": "http://www.geonames.org/2953481",
1648
- "longitude": {
1649
- "@type": "float",
1650
- "$": 9.0
1651
- },
1652
- "@type": "Geoname",
1653
- "latitude": {
1654
- "@type": "float",
1655
- "$": 48.5
1656
- }
1657
- },
1658
- "permalink": {
1659
- "$": "land-baden-w\u00fcrttemberg"
1660
- },
1661
- "name": {
1662
- "$": "Land Baden-W\u00fcrttemberg"
1663
- },
1664
- "@type": "State",
1665
- "cities": {
1666
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1667
- "@type": "array"
1668
- },
1669
- "country": {
1670
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1671
- "geoname": {
1672
- "geonameid": {
1673
- "@type": "integer",
1674
- "$": 2921044
1675
- },
1676
- "@xlink:href": "http://www.geonames.org/2921044",
1677
- "longitude": {
1678
- "@type": "float",
1679
- "$": 10.5
1680
- },
1681
- "@type": "Geoname",
1682
- "latitude": {
1683
- "@type": "float",
1684
- "$": 51.5
1685
- }
1686
- },
1687
- "permalink": {
1688
- "$": "germany"
1689
- },
1690
- "name": {
1691
- "$": "Deutschland"
1692
- },
1693
- "@type": "Country",
1694
- "states": {
1695
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1696
- "@type": "array"
1697
- }
1698
- }
1699
- }
1700
- },
1701
- {
1702
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/weiler-an-der-zaber.json",
1703
- "geoname": {
1704
- "geonameid": {
1705
- "@type": "integer",
1706
- "$": 2812572
1707
- },
1708
- "@xlink:href": "http://www.geonames.org/2812572",
1709
- "longitude": {
1710
- "@type": "float",
1711
- "$": 8.9522222
1712
- },
1713
- "@type": "Geoname",
1714
- "latitude": {
1715
- "@type": "float",
1716
- "$": 49.0561111
1717
- }
1718
- },
1719
- "permalink": {
1720
- "$": "weiler-an-der-zaber"
1721
- },
1722
- "name": {
1723
- "$": "Weiler an der Zaber"
1724
- },
1725
- "@type": "City",
1726
- "state": {
1727
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1728
- "geoname": {
1729
- "geonameid": {
1730
- "@type": "integer",
1731
- "$": 2953481
1732
- },
1733
- "@xlink:href": "http://www.geonames.org/2953481",
1734
- "longitude": {
1735
- "@type": "float",
1736
- "$": 9.0
1737
- },
1738
- "@type": "Geoname",
1739
- "latitude": {
1740
- "@type": "float",
1741
- "$": 48.5
1742
- }
1743
- },
1744
- "permalink": {
1745
- "$": "land-baden-w\u00fcrttemberg"
1746
- },
1747
- "name": {
1748
- "$": "Land Baden-W\u00fcrttemberg"
1749
- },
1750
- "@type": "State",
1751
- "cities": {
1752
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1753
- "@type": "array"
1754
- },
1755
- "country": {
1756
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1757
- "geoname": {
1758
- "geonameid": {
1759
- "@type": "integer",
1760
- "$": 2921044
1761
- },
1762
- "@xlink:href": "http://www.geonames.org/2921044",
1763
- "longitude": {
1764
- "@type": "float",
1765
- "$": 10.5
1766
- },
1767
- "@type": "Geoname",
1768
- "latitude": {
1769
- "@type": "float",
1770
- "$": 51.5
1771
- }
1772
- },
1773
- "permalink": {
1774
- "$": "germany"
1775
- },
1776
- "name": {
1777
- "$": "Deutschland"
1778
- },
1779
- "@type": "Country",
1780
- "states": {
1781
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1782
- "@type": "array"
1783
- }
1784
- }
1785
- }
1786
- },
1787
- {
1788
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities/vaihingen-an-der-enz.json",
1789
- "geoname": {
1790
- "geonameid": {
1791
- "@type": "integer",
1792
- "$": 2817927
1793
- },
1794
- "@xlink:href": "http://www.geonames.org/2817927",
1795
- "longitude": {
1796
- "@type": "float",
1797
- "$": 8.9666667
1798
- },
1799
- "@type": "Geoname",
1800
- "latitude": {
1801
- "@type": "float",
1802
- "$": 48.9333333
1803
- }
1804
- },
1805
- "permalink": {
1806
- "$": "vaihingen-an-der-enz"
1807
- },
1808
- "name": {
1809
- "$": "Vaihingen an der Enz"
1810
- },
1811
- "@type": "City",
1812
- "state": {
1813
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg.json",
1814
- "geoname": {
1815
- "geonameid": {
1816
- "@type": "integer",
1817
- "$": 2953481
1818
- },
1819
- "@xlink:href": "http://www.geonames.org/2953481",
1820
- "longitude": {
1821
- "@type": "float",
1822
- "$": 9.0
1823
- },
1824
- "@type": "Geoname",
1825
- "latitude": {
1826
- "@type": "float",
1827
- "$": 48.5
1828
- }
1829
- },
1830
- "permalink": {
1831
- "$": "land-baden-w\u00fcrttemberg"
1832
- },
1833
- "name": {
1834
- "$": "Land Baden-W\u00fcrttemberg"
1835
- },
1836
- "@type": "State",
1837
- "cities": {
1838
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states/land-baden-w%C3%BCrttemberg/cities.json",
1839
- "@type": "array"
1840
- },
1841
- "country": {
1842
- "@xlink:href": "http://www.tagcrumbs.com/places/germany.json",
1843
- "geoname": {
1844
- "geonameid": {
1845
- "@type": "integer",
1846
- "$": 2921044
1847
- },
1848
- "@xlink:href": "http://www.geonames.org/2921044",
1849
- "longitude": {
1850
- "@type": "float",
1851
- "$": 10.5
1852
- },
1853
- "@type": "Geoname",
1854
- "latitude": {
1855
- "@type": "float",
1856
- "$": 51.5
1857
- }
1858
- },
1859
- "permalink": {
1860
- "$": "germany"
1861
- },
1862
- "name": {
1863
- "$": "Deutschland"
1864
- },
1865
- "@type": "Country",
1866
- "states": {
1867
- "@xlink:href": "http://www.tagcrumbs.com/places/germany/states.json",
1868
- "@type": "array"
1869
- }
1870
- }
1871
- }
1872
- }
1873
- ],
1874
- "@type": "array"
1875
- }
1876
- }
1877
- }