add demonstration of geosearch
[gae-samples.git] / search / product_search_python / stores.py
blob69137fb28785c5ae0c31c488c4f3b69b18c05cef
1 #!/usr/bin/env python
3 # Copyright 2012 Google Inc.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # A set of example retail store locations, specified in terms
18 # of latitude and longitude.
20 stores = [('gosford', 'Gosford', '123 Main St.',
21 [-33.4282627126087, 151.341658830643]),
22 ('sydney','Sydney', '123 Main St.', [-33.873038, 151.20563]),
23 ('marrickville', 'Marrickville', '123 Main St.',
24 [-33.8950341379958, 151.156479120255]),
25 ('armidale', 'Armidale', '123 Main St.', [-30.51683, 151.648041]),
26 ('ashfield', 'Ashfield', '123 Main St.', [-33.888424, 151.124329]),
27 ('bathurst', 'Bathurst', '123 Main St.', [-33.43528, 149.608887]),
28 ('blacktown', 'Blacktown', '123 Main St.', [-33.771873, 150.908234]),
29 ('botany', 'Botany Bay', '123 Main St.', [-33.925842, 151.196564]),
30 ('london', 'London', '123 Main St.', [51.5000,-0.1167]),
31 ('paris', 'Paris', '123 Main St.', [48.8667,2.3333]),
32 ('newyork', 'New York', '123 Main St.', [40.7619,-73.9763]),
33 ('sanfrancisco', 'San Francisco', '123 Main St.', [37.62, -122.38]),
34 ('tokyo', 'Tokyo', '123 Main St.', [35.6850, 139.7514]),
35 ('beijing', 'Beijing', '123 Main St.', [39.9289, 116.3883]),
36 ('newdelhi', 'New Delhi', '123 Main St.', [28.6000, 77.2000]),
37 ('lawrence', 'Lawrence', '123 Main St.', [39.0393, -95.2087]),
38 ('baghdad', 'Baghdad', '123 Main St.', [33.3386, 44.3939]),
39 ('oakland', 'Oakland', '123 Main St.', [37.73, -122.22]),
40 ('sancarlos', 'San Carlos', '123 Main St.', [37.52, -122.25]),
41 ('sanjose', 'San Jose', '123 Main St.', [37.37, -121.92]),
42 ('hayward', 'Hayward', '123 Main St.', [37.65, -122.12]),
43 ('monterey', 'Monterey', '123 Main St.', [36.58, -121.85])