Last active
September 3, 2015 10:22
-
-
Save leighghunt/9954b6d82d51556befd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def convert_json(items): | |
import json | |
return json.dumps({ "type": "FeatureCollection", | |
"features": [ | |
{"type": "Feature", | |
"geometry": { "type": "Point", | |
"coordinates": [ | |
float(feature['store_geocode'].split(',')[0]), | |
float(feature['store_geocode'].split(',')[1]) | |
]}, | |
"properties": { key: value | |
for key, value in feature.items() | |
if key in ('store_code', 'title') } | |
} | |
for feature in items | |
if feature['store_geocode'] # There's some invalid data in there | |
] | |
}) | |
import json | |
from pprint import pprint | |
with open('maccas.json') as data_file: | |
data = json.load(data_file) | |
geojson = convert_json(data) | |
pprint(geojson) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title": "QUEEN STREET", | |
"nid": "1628", | |
"store_code": "9400002", | |
"store_address": "260 QUEEN STREET", | |
"store_suburb": "AUCKLAND", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 3094883", | |
"store_fax": null, | |
"store_building_type": "Instore", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.764913,-36.850138,0" | |
}, | |
{ | |
"title": "LOWER HUTT", | |
"nid": "1629", | |
"store_code": "9400003", | |
"store_address": "CNR OF 338 HIGH ST AND RAROA RD", | |
"store_suburb": "LOWER HUTT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04 569 7142", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.9101900,-41.2074910,0" | |
}, | |
{ | |
"title": "NEW LYNN", | |
"nid": "1630", | |
"store_code": "9400004", | |
"store_address": "1 MEMORIAL DRIVE", | |
"store_suburb": "NEW LYNN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8273879", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.6838320,-36.9084230,0" | |
}, | |
{ | |
"title": "MANNERS ST", | |
"nid": "1631", | |
"store_code": "9400005", | |
"store_address": "75 MANNERS ST", | |
"store_suburb": "WELLINGTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-4723498", | |
"store_fax": null, | |
"store_building_type": "Instore", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.77655519999996, -41.29084599999999,0" | |
}, | |
{ | |
"title": "WANGANUI", | |
"nid": "1632", | |
"store_code": "9400006", | |
"store_address": "314 VICTORIA AVENUE", | |
"store_suburb": "WANGANUI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-3484537", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.042762,-39.926789,0" | |
}, | |
{ | |
"title": "NEW PLYMOUTH", | |
"nid": "1633", | |
"store_code": "9400008", | |
"store_address": "CNR ELIOT & LEACH STS, 50-58 ELIOT STREET", | |
"store_suburb": "NEW PLYMOUTH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-7579936", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.08304,-39.056664,0" | |
}, | |
{ | |
"title": "TAURANGA", | |
"nid": "1634", | |
"store_code": "9400010", | |
"store_address": "CNR CAMERON RD & ELEVENTH AVE, 549 - 567 ELEVENTH AVE", | |
"store_suburb": "TAURANGA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-5781216", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.158294,-37.698591,0" | |
}, | |
{ | |
"title": "NEWTOWN", | |
"nid": "1635", | |
"store_code": "9400011", | |
"store_address": "190 RIDDIFORD STREET", | |
"store_suburb": "NEWTOWN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "6021", | |
"store_phone": "04-3894960", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.7798030,-41.3144250,0" | |
}, | |
{ | |
"title": "ROTORUA", | |
"nid": "1636", | |
"store_code": "9400012", | |
"store_address": "CNR FENTON & AMOHAU STS", | |
"store_suburb": "ROTORUA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 350 3213", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.253117,-38.140292,0" | |
}, | |
{ | |
"title": "WEST CITY", | |
"nid": "1637", | |
"store_code": "9400013", | |
"store_address": "WEST CITY SHOPPPING CENTRE, CATHERINE STREET", | |
"store_suburb": "HENDERSON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8362446", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.632424,-36.880792,0" | |
}, | |
{ | |
"title": "ST LUKES Foodcourt", | |
"nid": "1638", | |
"store_code": "9400014", | |
"store_address": "CNR MORNINGSIDE & ST LUKES ROAD", | |
"store_suburb": "MT ALBERT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 8465160", | |
"store_fax": null, | |
"store_building_type": "Mall", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.733367,-36.882968,0" | |
}, | |
{ | |
"title": "UPPER HUTT", | |
"nid": "1639", | |
"store_code": "9400015", | |
"store_address": "CNR MAIN ST & FERGUSSON AVE, 935 FERGUSSON AVE", | |
"store_suburb": "UPPER HUTT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-5284067", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.074822,-41.124208,0" | |
}, | |
{ | |
"title": "MANGERE", | |
"nid": "1640", | |
"store_code": "9400018", | |
"store_address": "119 BADER DRIVE", | |
"store_suburb": "MANGERE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2753086", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.799621,-36.969882,0" | |
}, | |
{ | |
"title": "WHANGAREI", | |
"nid": "1641", | |
"store_code": "9400019", | |
"store_address": "CNR BANK & APIRANA STS, 145 BANK ST", | |
"store_suburb": "WHANGAREI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 430 2527", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.321269,-35.71874,0" | |
}, | |
{ | |
"title": "MERIVALE", | |
"nid": "1642", | |
"store_code": "9400022", | |
"store_address": "217 PAPANUI ROAD", | |
"store_suburb": "MERIVALE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3557643", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.624153,-43.513446,0" | |
}, | |
{ | |
"title": "HASTINGS", | |
"nid": "1643", | |
"store_code": "9400023", | |
"store_address": "626 HERETAUNGA STREET WEST", | |
"store_suburb": "HASTINGS", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-8783041", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "176.836954,-39.636771,0" | |
}, | |
{ | |
"title": "MANUKAU CITY", | |
"nid": "1644", | |
"store_code": "9400024", | |
"store_address": "2 RONWOOD AVE", | |
"store_suburb": "MANUKAU CITY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2610167", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.882292,-36.989506,0" | |
}, | |
{ | |
"title": "GISBORNE", | |
"nid": "1645", | |
"store_code": "9400025", | |
"store_address": "30 BRIGHT STREET", | |
"store_suburb": "GISBORNE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-8679351", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "178.026343,-38.66509,0" | |
}, | |
{ | |
"title": "JOHNSONVILLE", | |
"nid": "1646", | |
"store_code": "9400026", | |
"store_address": "CNR MOOREFIELD & JOHNSONVILLE ROADS (2 JOHNSONVILLE ROAD)", | |
"store_suburb": "JOHNSONVILLE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-4617138", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.8058230,-41.2223470,0" | |
}, | |
{ | |
"title": "LINWOOD", | |
"nid": "1647", | |
"store_code": "9400027", | |
"store_address": "CNR LINWOOD AVE & BUCKLEYS RD", | |
"store_suburb": "LINWOOD", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3891099", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.674174,-43.533527,0" | |
}, | |
{ | |
"title": "PARAPARAUMU", | |
"nid": "1648", | |
"store_code": "9400028", | |
"store_address": "STATE HIGHWAY 1", | |
"store_suburb": "PARAPARAUMU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-2972436", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.005851,-40.917431,0" | |
}, | |
{ | |
"title": "RICCARTON", | |
"nid": "1649", | |
"store_code": "9400029", | |
"store_address": "CNR RICCARTON RD & MATIPO ST, 155 RICCARTON RD", | |
"store_suburb": "RICCARTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3430549", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
} | |
], | |
"store_geocode": "172.595302,-43.530321,0" | |
}, | |
{ | |
"title": "NELSON", | |
"nid": "1650", | |
"store_code": "9400030", | |
"store_address": "111 RUTHERFORD ST", | |
"store_suburb": "NELSON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-5482888", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "173.2810730,-41.2748560,0" | |
}, | |
{ | |
"title": "NAPIER", | |
"nid": "1651", | |
"store_code": "9400032", | |
"store_address": "5 THACKERAY STREET", | |
"store_suburb": "NAPIER", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-8359055", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.908755,-39.493345,0" | |
}, | |
{ | |
"title": "ROYAL OAK", | |
"nid": "1652", | |
"store_code": "9400033", | |
"store_address": "ROYAL OAK SHOPPING CENTRE", | |
"store_suburb": "MT ALBERT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-6242107", | |
"store_fax": null, | |
"store_building_type": "Mall", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.774676,-36.911394,0" | |
}, | |
{ | |
"title": "PANMURE", | |
"nid": "1653", | |
"store_code": "9400034", | |
"store_address": "509 ELLERSLIE PANMURE HIGHWAY", | |
"store_suburb": "HIGHWAYS", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 5740046", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.845325,-36.897656,0" | |
}, | |
{ | |
"title": "DUNEDIN", | |
"nid": "1654", | |
"store_code": "9400035", | |
"store_address": "232 GEORGE STREET", | |
"store_suburb": "DUNEDIN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-4790576", | |
"store_fax": null, | |
"store_building_type": "Instore", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "170.506165,-45.871176,0" | |
}, | |
{ | |
"title": "LINCOLN RD", | |
"nid": "1655", | |
"store_code": "9400036", | |
"store_address": "CNR LINCOLN RD & MOSELLE AVE", | |
"store_suburb": "HENDERSON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8374454", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.62907,-36.863957,0" | |
}, | |
{ | |
"title": "FRANKTON", | |
"nid": "1656", | |
"store_code": "9400038", | |
"store_address": "24-28 GREENWOOD STREET", | |
"store_suburb": "FRANKTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8472780", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.260935,-37.79374,0" | |
}, | |
{ | |
"title": "AIRPORT ARRIVALS (DN)", | |
"nid": "1657", | |
"store_code": "9400040", | |
"store_address": "GROUND FLOOR, INTERNATIONAL TERMINAL", | |
"store_suburb": "AUCKLAND AIRPORT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2550955", | |
"store_fax": null, | |
"store_building_type": "Special", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
} | |
], | |
"store_geocode": "174.7826630,-37.0047350,0" | |
}, | |
{ | |
"title": "LYNNMALL", | |
"nid": "1658", | |
"store_code": "9400043", | |
"store_address": "LYNNMALL CITY GREAT NORTH ROAD", | |
"store_suburb": "NEW LYNN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8275594", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.6833860,-36.9097940,0" | |
}, | |
{ | |
"title": "BELMONT", | |
"nid": "1659", | |
"store_code": "9400044", | |
"store_address": "CNR LAKE RD & BAYSWATER AVE (127 LAKE ROAD)", | |
"store_suburb": "BELMONT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4457569", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.790135,-36.808295,0" | |
}, | |
{ | |
"title": "LAMBTON QUAY", | |
"nid": "1660", | |
"store_code": "9400045", | |
"store_address": "1ST FLOOR, HALLENSTEIN HOUSE", | |
"store_suburb": "WELLINGTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-4721808", | |
"store_fax": null, | |
"store_building_type": "Instore", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2100" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.775458,-41.28367,0" | |
}, | |
{ | |
"title": "MANUREWA", | |
"nid": "1661", | |
"store_code": "9400046", | |
"store_address": "207 GREAT SOUTH ROAD", | |
"store_suburb": "MANUREWA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2693781", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.898467,-37.023255,0" | |
}, | |
{ | |
"title": "TE AWAMUTU", | |
"nid": "1662", | |
"store_code": "9400047", | |
"store_address": "35 SLOANE STREET", | |
"store_suburb": "TE AWAMUTU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-8702044", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 94/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.326504,-38.01206,0" | |
}, | |
{ | |
"title": "TAUPO", | |
"nid": "1663", | |
"store_code": "9400049", | |
"store_address": "CNR ROBERTS & RUAPEHU STREETS, 48 ROBERTS STREET", | |
"store_suburb": "TAUPO", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-3788679", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.07142,-38.689934,0" | |
}, | |
{ | |
"title": "PAPAKURA", | |
"nid": "1664", | |
"store_code": "9400050", | |
"store_address": "93-95 GREAT SOUTH ROAD", | |
"store_suburb": "PAPAKURA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2982600", | |
"store_fax": null, | |
"store_building_type": "Instore DT", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.9405820,-37.0603260,0" | |
}, | |
{ | |
"title": "PAKURANGA", | |
"nid": "1665", | |
"store_code": "9400051", | |
"store_address": "472 PAKURANGA ROAD", | |
"store_suburb": "PAKURANGA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-5720110", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 91/80", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.9005843,-36.8999986,0" | |
}, | |
{ | |
"title": "CHARTWELL SQUARE", | |
"nid": "1666", | |
"store_code": "9400052", | |
"store_address": "SHOP 221 WESTFIELD SHOPPING CENTRE, 183 HUKANUI ROAD", | |
"store_suburb": "HAMILTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8532648", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.279224,-37.750687,0" | |
}, | |
{ | |
"title": "THAMES", | |
"nid": "1667", | |
"store_code": "9400053", | |
"store_address": "GOLDFIELDS SHOPPING CENTRE", | |
"store_suburb": "THAMES", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 867 9043", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2100" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.540081,-37.138982,0" | |
}, | |
{ | |
"title": "INVERCARGILL", | |
"nid": "1668", | |
"store_code": "9400054", | |
"store_address": "200 DEE STREET", | |
"store_suburb": "INVERCARGILL", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-2143020", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "168.346219,-46.406174,0" | |
}, | |
{ | |
"title": "GLENFIELD", | |
"nid": "1669", | |
"store_code": "9400056", | |
"store_address": "CNR GLENFIELD & KAIPATIKI ROADS", | |
"store_suburb": "GLENFIELD", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "9999", | |
"store_phone": "09-4420195", | |
"store_fax": null, | |
"store_building_type": "Std Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.72086,-36.782015,0" | |
}, | |
{ | |
"title": "MASTERTON", | |
"nid": "1670", | |
"store_code": "9400058", | |
"store_address": "60 CHAPEL STREET", | |
"store_suburb": "MASTERTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-3703335", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 90/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.660829,-40.948432,0" | |
}, | |
{ | |
"title": "TIMARU", | |
"nid": "1671", | |
"store_code": "9400059", | |
"store_address": "93-97 EVANS ST, ASHBURY PARK", | |
"store_suburb": "TIMARU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-6846595", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 94/100", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "171.2384600,-44.3823150,0" | |
}, | |
{ | |
"title": "DOWNTOWN Foodcourt", | |
"nid": "1672", | |
"store_code": "9400060", | |
"store_address": "QEII SQUARE", | |
"store_suburb": "AUCKLAND", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 3095769", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.766027, -36.844021,0" | |
}, | |
{ | |
"title": "KAMO", | |
"nid": "1673", | |
"store_code": "9400061", | |
"store_address": "511 KAMO ROAD", | |
"store_suburb": "WHANGAREI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4354133", | |
"store_fax": null, | |
"store_building_type": "97/70 E", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.301514,-35.684886,0" | |
}, | |
{ | |
"title": "QUEENSTOWN FOOD COURT", | |
"nid": "1674", | |
"store_code": "9400063", | |
"store_address": "O'CONNELL'S SHOPPING CENTRE, 23 CAMP STREET", | |
"store_suburb": "QUEENSTOWN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-4429796", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2100" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
} | |
], | |
"store_geocode": "168.6615536,-45.0313617,0" | |
}, | |
{ | |
"title": "HUNTERS PLAZA", | |
"nid": "1675", | |
"store_code": "9400064", | |
"store_address": "217 GREAT SOUTH ROAD", | |
"store_suburb": "HUNTERS CORNER", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2776223", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0830", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.861695,-36.970838,0" | |
}, | |
{ | |
"title": "LEVIN", | |
"nid": "1676", | |
"store_code": "9400066", | |
"store_address": "CNR STANLEY & OXFORD STS", | |
"store_suburb": "LEVIN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-3678016", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 91/80", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.287474,-40.62026,0" | |
}, | |
{ | |
"title": "WAINUIOMATA", | |
"nid": "1677", | |
"store_code": "9400067", | |
"store_address": "WAINUIOMATA SHOPPING CENTRE, THE STRAND", | |
"store_suburb": "WAINUIOMATA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "5014", | |
"store_phone": "04-5643829", | |
"store_fax": null, | |
"store_building_type": "Mall", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.9508450,-41.2614230,0" | |
}, | |
{ | |
"title": "WHAKATANE", | |
"nid": "1678", | |
"store_code": "9400068", | |
"store_address": "CNR COMMERCE & DOMAIN RD, 3-5 DOMAIN RD", | |
"store_suburb": "WHAKATANE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-3089977", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 91/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.991853,-37.958946,0" | |
}, | |
{ | |
"title": "WAIRAU ROAD", | |
"nid": "1679", | |
"store_code": "9400069", | |
"store_address": "142 WAIRAU RD", | |
"store_suburb": "GLENFIELD", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 4447608", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 91/80", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.7388664,-36.7718046,0" | |
}, | |
{ | |
"title": "OREWA", | |
"nid": "1680", | |
"store_code": "9400071", | |
"store_address": "CNR MAIN ROAD & FLORENCE AVE (376 HIBISCUS COAST HIGHWAY)", | |
"store_suburb": "OREWA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4266000", | |
"store_fax": null, | |
"store_building_type": "Instore DT", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.695092,-36.585156,0" | |
}, | |
{ | |
"title": "MANUKAU MALL Foodcourt", | |
"nid": "1681", | |
"store_code": "9400073", | |
"store_address": "PALM GROVE FOODCOURT, WESTFIELD SHOPPING CENTRE", | |
"store_suburb": "MANUKAU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2610171", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.881844,-36.991194,0" | |
}, | |
{ | |
"title": "PUKEKOHE", | |
"nid": "1682", | |
"store_code": "9400075", | |
"store_address": "CNR HALL & LODGE STREETS", | |
"store_suburb": "\"PUKEKOHE, SOUTH AUCKLAND\"", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2371566", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.9039444,-37.1994060,0" | |
}, | |
{ | |
"title": "BAYFAIR", | |
"nid": "1683", | |
"store_code": "9400076", | |
"store_address": "SHOP 808 BAYFAIR SHOPPING CENTRE", | |
"store_suburb": "TAURANGA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-5750348", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0730", | |
"1815" | |
], | |
[ | |
"Monday", | |
"0730", | |
"1815" | |
], | |
[ | |
"Tuesday", | |
"0730", | |
"1815" | |
], | |
[ | |
"Wednesday", | |
"0730", | |
"1815" | |
], | |
[ | |
"Thursday", | |
"0730", | |
"2130" | |
], | |
[ | |
"Friday", | |
"0730", | |
"2130" | |
], | |
[ | |
"Saturday", | |
"0730", | |
"1815" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "176.222816,-37.675169,0" | |
}, | |
{ | |
"title": "BLENHEIM", | |
"nid": "1684", | |
"store_code": "9400078", | |
"store_address": "CNR FRESWICK & MAIN STS", | |
"store_suburb": "BLEHEIM", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-5778030", | |
"store_fax": null, | |
"store_building_type": "Std FS - 95/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "173.960884,-41.513962,0" | |
}, | |
{ | |
"title": "RANGITIKEI STREET PALMERSTON NORTH", | |
"nid": "1685", | |
"store_code": "9400079", | |
"store_address": "273 - 279 RANGITIKEI ST", | |
"store_suburb": "PALMERSTON NORTH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "4410", | |
"store_phone": "06-3553545", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 94/100", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.6060582,-40.3495258,0" | |
}, | |
{ | |
"title": "ASH STREET", | |
"nid": "1686", | |
"store_code": "9400080", | |
"store_address": "50 - 60 ASH STREET", | |
"store_suburb": "AVONDALE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 8204300", | |
"store_fax": null, | |
"store_building_type": "Oil Alliance", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
} | |
], | |
"store_geocode": "174.686683,-36.896252,0" | |
}, | |
{ | |
"title": "HAMILTON EAST", | |
"nid": "1687", | |
"store_code": "9400085", | |
"store_address": "315 GREY STREET", | |
"store_suburb": "HAMILTON EAST", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8570035", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.293226,-37.794889,0" | |
}, | |
{ | |
"title": "HORNBY", | |
"nid": "1688", | |
"store_code": "9400086", | |
"store_address": "420 MAIN SOUTH ROAD", | |
"store_suburb": "HORNBY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3492999", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 94/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.5223466,-43.5436994,0" | |
}, | |
{ | |
"title": "DUNEDIN NORTH", | |
"nid": "1689", | |
"store_code": "9400088", | |
"store_address": "711 GREAT KING STREET", | |
"store_suburb": "DUNEDIN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-4777774", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "170.5139200,-45.8596330,0" | |
}, | |
{ | |
"title": "RICCARTON Foodcourt", | |
"nid": "1690", | |
"store_code": "9400089", | |
"store_address": "No. 3 FOODCOURT, CNR TALBOT & CROUCHER STREET", | |
"store_suburb": "RICHMOND", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3431517", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Monday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0800", | |
"2000" | |
], | |
[ | |
"Friday", | |
"0800", | |
"2000" | |
], | |
[ | |
"Saturday", | |
"0800", | |
"2000" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "172.5974410,-43.5299800,0" | |
}, | |
{ | |
"title": "ASHBURTON", | |
"nid": "1691", | |
"store_code": "9400091", | |
"store_address": "CNR WEST & MOORE STREETS", | |
"store_suburb": "ASHBURTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3076183", | |
"store_fax": null, | |
"store_building_type": "98/70E", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "171.744795,-43.905082,0" | |
}, | |
{ | |
"title": "TE RAPA", | |
"nid": "1692", | |
"store_code": "9400093", | |
"store_address": "CNR TE RAPA & PUKETE RDS", | |
"store_suburb": "HAMILTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8499426", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.240015,-37.751682,0" | |
}, | |
{ | |
"title": "WESTGATE", | |
"nid": "1693", | |
"store_code": "9400094", | |
"store_address": "CNR SH16 & ASTI LANE, 4 ASTI LANE", | |
"store_suburb": "WESTGATE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8321600", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.609381,-36.821118,0" | |
}, | |
{ | |
"title": "WHANGAREI Foodcourt", | |
"nid": "1694", | |
"store_code": "9400096", | |
"store_address": "CNR CAMERON, BANK & VINE STREET", | |
"store_suburb": "WHANGAREI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4306539", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0800", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0800", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0800", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0800", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0800", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0800", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0800", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.319754,-35.725364,0" | |
}, | |
{ | |
"title": "OAMARU", | |
"nid": "1695", | |
"store_code": "9400102", | |
"store_address": "210-212 THAMES STREET", | |
"store_suburb": "OAMARU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-43331148", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "170.9725570,-45.0937930,0" | |
}, | |
{ | |
"title": "SOUTH CITY Foodcourt", | |
"nid": "1696", | |
"store_code": "9400103", | |
"store_address": "SOUTH CITY SHOPPING CENTRE", | |
"store_suburb": "CNR COLOMBO, BATH & DURHANM STREETS", | |
"store_state": "SYDENHAM", | |
"store_postcode": "NEW ZEALAND", | |
"store_phone": "03-3746780", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0730", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0730", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0730", | |
"1830" | |
], | |
[ | |
"Thursday", | |
"0730", | |
"1830" | |
], | |
[ | |
"Friday", | |
"0730", | |
"1830" | |
], | |
[ | |
"Saturday", | |
"0730", | |
"1800" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.637719,-43.538025,0" | |
}, | |
{ | |
"title": "NORTHLANDS", | |
"nid": "1697", | |
"store_code": "9400104", | |
"store_address": "SHOP 13 FOODCOURT NORTHLANDS SHOPPING CENTRE, 55 MAIN NORTH ROAD", | |
"store_suburb": "CHRISTCHURCH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3528720", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Monday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Tuesday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Wednesday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Thursday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Friday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Saturday", | |
"0830", | |
"1830" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.607833,-43.493326,0" | |
}, | |
{ | |
"title": "JOHNSONVILLE Foodcourt", | |
"nid": "1698", | |
"store_code": "9400105", | |
"store_address": "SHOPPING CENTRE, 34 JOHNSONVILLE RD", | |
"store_suburb": "JOHNSONVILLE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-4617135", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.8058230,-41.2223470,0" | |
}, | |
{ | |
"title": "SYDENHAM", | |
"nid": "1699", | |
"store_code": "9400109", | |
"store_address": "326 COLOMBO STREET", | |
"store_suburb": "SYDENHAM", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3379217", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.636858,-43.548257,0" | |
}, | |
{ | |
"title": "HUNTLY", | |
"nid": "1700", | |
"store_code": "9400117", | |
"store_address": "398 GREAT SOUTH ROAD", | |
"store_suburb": "HUNTLY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8288211", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 96/70E", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.158324,-37.567053,0" | |
}, | |
{ | |
"title": "ANDERSONS BAY", | |
"nid": "1701", | |
"store_code": "9400125", | |
"store_address": "391 ANDERSONS BAY RD", | |
"store_suburb": "DUNEDIN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-4555515", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/100", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "170.5044490,-45.8944660,0" | |
}, | |
{ | |
"title": "NEWMARKET 277", | |
"nid": "1702", | |
"store_code": "9400131", | |
"store_address": "277 BROADWAY", | |
"store_suburb": "NEWMARKET", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-5202929", | |
"store_fax": null, | |
"store_building_type": "Special", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1700" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2000" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2000" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2000" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2000" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2000" | |
], | |
[ | |
"Saturday", | |
"0800", | |
"1800" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.776948,-36.870597,0" | |
}, | |
{ | |
"title": "EASTGATE Express", | |
"nid": "1703", | |
"store_code": "9400132", | |
"store_address": "CNR LINWOOD AVE & BUCKLEYS ROAD ", | |
"store_suburb": "SYDENHAM", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3815405", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0830", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0830", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0830", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0830", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0830", | |
"1800" | |
], | |
[ | |
"Friday", | |
"0830", | |
"1800" | |
], | |
[ | |
"Saturday", | |
"0830", | |
"1800" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "172.674176,-43.533074,0" | |
}, | |
{ | |
"title": "NEW PLYMOUTH Foodcourt", | |
"nid": "1704", | |
"store_code": "9400133", | |
"store_address": "SHOP 61C, CENTRE CITY SHOPPING CENTRE, 11 GILL ST", | |
"store_suburb": "NEW PLYMOUTH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-7594284", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0930", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0830", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.0764330,-39.0580540,0" | |
}, | |
{ | |
"title": "WELLSFORD", | |
"nid": "1705", | |
"store_code": "9400139", | |
"store_address": "1 RODNEY STREET", | |
"store_suburb": "WELLSFORD", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4239408", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.5247720,-36.3021440,0" | |
}, | |
{ | |
"title": "HILLMORTON", | |
"nid": "1706", | |
"store_code": "9400145", | |
"store_address": "43 - 45 LINCOLN ROAD", | |
"store_suburb": "HILLMORTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3386360", | |
"store_fax": null, | |
"store_building_type": "97/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.598578,-43.550773,0" | |
}, | |
{ | |
"title": "GREY LYNN", | |
"nid": "1707", | |
"store_code": "9400146", | |
"store_address": "102-112 GREAT NORTH ROAD", | |
"store_suburb": "GREY LYNN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 3610020", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 95/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.750118,-36.861933,0" | |
}, | |
{ | |
"title": "TOKOROA", | |
"nid": "1708", | |
"store_code": "9400147", | |
"store_address": "1 SWANSTON STREET", | |
"store_suburb": "TOKOROA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-8866600", | |
"store_fax": null, | |
"store_building_type": "Std FS - 96/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.873446,-38.21889,0" | |
}, | |
{ | |
"title": "MANA", | |
"nid": "1709", | |
"store_code": "9400156", | |
"store_address": "STATE HIGHWAY 1", | |
"store_suburb": "MANA ESPLANADE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-2330909", | |
"store_fax": null, | |
"store_building_type": "Oil Alliance", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.868398,-41.091963,0" | |
}, | |
{ | |
"title": "FEILDING", | |
"nid": "1710", | |
"store_code": "9400157", | |
"store_address": "78 KIMBOLTON ROAD", | |
"store_suburb": "FEILDING", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-3233333", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 96/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.566381,-40.225148,0" | |
}, | |
{ | |
"title": "TARADALE", | |
"nid": "1711", | |
"store_code": "9400163", | |
"store_address": "330 Gloucester Street", | |
"store_suburb": "NAPIER", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06 845 9292", | |
"store_fax": null, | |
"store_building_type": "Spl Fs", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.8482370,-39.5374610,0" | |
}, | |
{ | |
"title": "KAIKOHE", | |
"nid": "1712", | |
"store_code": "9400166", | |
"store_address": "STATION ROAD", | |
"store_suburb": "KAIKOHE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4053240", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 96/70E", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.798704,-35.410764,0" | |
}, | |
{ | |
"title": "MERCER", | |
"nid": "1713", | |
"store_code": "9400167", | |
"store_address": "MERCER COUNTRY STOP STATE HIGHWAY 1", | |
"store_suburb": "MERCER", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "2474", | |
"store_phone": "09-2326760", | |
"store_fax": null, | |
"store_building_type": "Special", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2100" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.0483563,-37.2805961,0" | |
}, | |
{ | |
"title": "THE PALMS", | |
"nid": "1714", | |
"store_code": "9400168", | |
"store_address": "CNR MARSHLANDS & NEW BRIGHTON RD", | |
"store_suburb": "SHIRLEY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-3850383", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Monday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Tuesday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Wednesday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Thursday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Friday", | |
"0830", | |
"1830" | |
], | |
[ | |
"Saturday", | |
"0830", | |
"1830" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "172.663025,-43.507887,0" | |
}, | |
{ | |
"title": "KAITAIA", | |
"nid": "1715", | |
"store_code": "9400175", | |
"store_address": "9 MATTHEWS AVENUE", | |
"store_suburb": "KAITAIA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4086026", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 96/70E", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2400" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2400" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.267214,-35.116386,0" | |
}, | |
{ | |
"title": "KERIKERI", | |
"nid": "1716", | |
"store_code": "9400176", | |
"store_address": "87 KERIKERI ROAD", | |
"store_suburb": "KERIKERI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4073460", | |
"store_fax": null, | |
"store_building_type": "Std FS", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.950377,-35.226681,0" | |
}, | |
{ | |
"title": "TAHUNANUI", | |
"nid": "1717", | |
"store_code": "9400178", | |
"store_address": "32 TAHUNANUI DRIVE", | |
"store_suburb": "TAHUNANUI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "7010", | |
"store_phone": "03-5464740", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 96/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2100" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.2485180,-41.2829710,0" | |
}, | |
{ | |
"title": "SILVERSTREAM", | |
"nid": "1718", | |
"store_code": "9400180", | |
"store_address": "180 FERGUSSON DRIVE", | |
"store_suburb": "SILVERSTREAM", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-5284071", | |
"store_fax": null, | |
"store_building_type": "97/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.011606,-41.146938,0" | |
}, | |
{ | |
"title": "PETONE", | |
"nid": "1719", | |
"store_code": "9400181", | |
"store_address": "29 VICTORIA STREET", | |
"store_suburb": "PETONE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-5687797", | |
"store_fax": null, | |
"store_building_type": "Std Fs - 97/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.873102,-41.224346,0" | |
}, | |
{ | |
"title": "QUAY STREET", | |
"nid": "1720", | |
"store_code": "9400183", | |
"store_address": "12 QUAY STREET", | |
"store_suburb": "AUCKLAND", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "1010", | |
"store_phone": "09 377 9619", | |
"store_fax": null, | |
"store_building_type": "Special", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.7807378,-36.8473706,0" | |
}, | |
{ | |
"title": "AKORANGA DRIVE", | |
"nid": "1721", | |
"store_code": "9400185", | |
"store_address": "3 AKORANGA DRIVE", | |
"store_suburb": "MILFORD", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4807345", | |
"store_fax": null, | |
"store_building_type": "Std FS - 97/70", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.7486900,-36.7926660,0" | |
}, | |
{ | |
"title": "BULLS", | |
"nid": "1722", | |
"store_code": "9400188", | |
"store_address": "95 BRIDGE STREET", | |
"store_suburb": "BULLS", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-3220034", | |
"store_fax": null, | |
"store_building_type": "98/70E", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2100" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.38476,-40.176132,0" | |
}, | |
{ | |
"title": "MASSEY ROAD", | |
"nid": "1723", | |
"store_code": "9400192", | |
"store_address": "264 - 266 MASSEY ROAD", | |
"store_suburb": "MANGERE EAST", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2590231", | |
"store_fax": null, | |
"store_building_type": "Oil Alliance", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.831887,-36.960381,0" | |
}, | |
{ | |
"title": "TARANAKI STREET", | |
"nid": "1724", | |
"store_code": "9400194", | |
"store_address": "15-17 TARANAKI STREET", | |
"store_suburb": "WELLINGTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-3813940", | |
"store_fax": null, | |
"store_building_type": "Oil Alliance", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.779854,-41.291009,0" | |
}, | |
{ | |
"title": "AIRPORT Drive-Thru", | |
"nid": "1725", | |
"store_code": "9400196", | |
"store_address": "93 TOM PEARCE DRIVE", | |
"store_suburb": "AIRPORT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2550436", | |
"store_fax": null, | |
"store_building_type": "97/20", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.78818,-37.00083,0" | |
}, | |
{ | |
"title": "KELSTON", | |
"nid": "1726", | |
"store_code": "9400201", | |
"store_address": "CNR GREAT NORTH RD & WEST COAST RD", | |
"store_suburb": "KELSTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8131390", | |
"store_fax": null, | |
"store_building_type": "Spl Fs (ex GP)", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.663792,-36.909189,0" | |
}, | |
{ | |
"title": "GLEN INNES", | |
"nid": "1728", | |
"store_code": "9400203", | |
"store_address": "292 APIRANA AVENUE", | |
"store_suburb": "GLEN INNES", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 5780048", | |
"store_fax": null, | |
"store_building_type": "Spl Fs (ex GP)", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.855351,-36.880421,0" | |
}, | |
{ | |
"title": "BASIN RESERVE", | |
"nid": "1729", | |
"store_code": "9400204", | |
"store_address": "10-18 ADELAIDE ROAD", | |
"store_suburb": "NEWTOWN", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-3844492", | |
"store_fax": null, | |
"store_building_type": "Spl Fs (ex GP)", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.779562,-41.301659,0" | |
}, | |
{ | |
"title": "OTAHUHU", | |
"nid": "1730", | |
"store_code": "9400206", | |
"store_address": "121 ATKINSON AVENUE", | |
"store_suburb": "OTAHUHU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2590070", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.8436020,-36.9405620,0" | |
}, | |
{ | |
"title": "TAKANINI", | |
"nid": "1731", | |
"store_code": "9400207", | |
"store_address": "226 GREAT SOUTH ROAD", | |
"store_suburb": "TAKANINI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-2984666", | |
"store_fax": null, | |
"store_building_type": "Spl FS (ex GP)", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2130" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2130" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2130" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2130" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2130" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2130" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2130" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.92458,-37.047156,0" | |
}, | |
{ | |
"title": "BOMBAY", | |
"nid": "1732", | |
"store_code": "9400209", | |
"store_address": "BP SERVICE CENTRE, STATE HIGHWAY 1 ", | |
"store_suburb": "BOMBAY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "2675", | |
"store_phone": "09-2361040", | |
"store_fax": null, | |
"store_building_type": "Spl Fs (ex GP)", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.9820177,-37.1925139,0" | |
}, | |
{ | |
"title": "QUEENSGATE", | |
"nid": "1733", | |
"store_code": "9400218", | |
"store_address": "LEVEL 1 FOODCOURT, WESTFIELD QUEENSGATE, CNR QUEENS DRIVE & BUNNY STREET", | |
"store_suburb": "LOWER HUTT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-5699676", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"1800" | |
], | |
[ | |
"Monday", | |
"0630", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"1800" | |
], | |
[ | |
"Friday", | |
"0630", | |
"1800" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"1800" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.9045310,-41.2084290,0" | |
}, | |
{ | |
"title": "GREERTON", | |
"nid": "1734", | |
"store_code": "9400251", | |
"store_address": "1272-1286 CAMERON ROAD", | |
"store_suburb": "GREERTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07-5715510", | |
"store_fax": null, | |
"store_building_type": "Freestander 2000/30", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2200 " | |
], | |
[ | |
"Monday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.133901,-37.724775,0" | |
}, | |
{ | |
"title": "PT CHEVALIER", | |
"nid": "1735", | |
"store_code": "9400255", | |
"store_address": "1159-1161 GREAT NORTH ROAD", | |
"store_suburb": "PT CHEVALIER", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-8151250", | |
"store_fax": null, | |
"store_building_type": "Freestander", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
} | |
], | |
"store_geocode": "174.711922,-36.869702,0" | |
}, | |
{ | |
"title": "MATAMATA", | |
"nid": "1736", | |
"store_code": "9400259", | |
"store_address": "6 FIRTH STREET", | |
"store_suburb": "MATAMATA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8809367", | |
"store_fax": null, | |
"store_building_type": "Freestander", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.770275,-37.824887,0" | |
}, | |
{ | |
"title": "PENROSE ", | |
"nid": "1737", | |
"store_code": "9400267", | |
"store_address": "358 CHURCH STREET", | |
"store_suburb": "PENROSE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-5251199", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
} | |
], | |
"store_geocode": "174.8219426,-36.9192139,0" | |
}, | |
{ | |
"title": "OTARA 99/70 3 BOOTH DTHRU", | |
"nid": "1738", | |
"store_code": "9400270", | |
"store_address": "1 NEWBURY STREET", | |
"store_suburb": "OTARA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2720052", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.8718320,-36.9613420,0" | |
}, | |
{ | |
"title": "ONEHUNGA DRESSMART", | |
"nid": "1739", | |
"store_code": "9400271", | |
"store_address": "151 ARTHUR STREET, SHOP 416", | |
"store_suburb": "ONEHUNGA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-6340960", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Monday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Tuesday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Wednesday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Thursday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Friday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Saturday", | |
"1000", | |
"1700" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.7863180,-36.9207790,0" | |
}, | |
{ | |
"title": "GREYMOUTH", | |
"nid": "1740", | |
"store_code": "9400276", | |
"store_address": "CNR TAINUI & CHAPEL STS", | |
"store_suburb": "GREYMOUTH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-7680780", | |
"store_fax": null, | |
"store_building_type": "Freestander", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0700", | |
"v" | |
], | |
[ | |
"Tuesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0700", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0700", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "171.211449,-42.449919,0" | |
}, | |
{ | |
"title": "KAIAPOI", | |
"nid": "1741", | |
"store_code": "9400280", | |
"store_address": "CNR WILLIAMS AND HILTON STREET (152 WILLIAMS STREET)", | |
"store_suburb": "CHRISTCHURCH", | |
"store_state": "CHRISTCHURCH", | |
"store_postcode": "7630", | |
"store_phone": "03-3273969", | |
"store_fax": null, | |
"store_building_type": "Freestander 2000/75", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.6569578,-43.3830321,0" | |
}, | |
{ | |
"title": "5 CROSS ROADS", | |
"nid": "1742", | |
"store_code": "9400283", | |
"store_address": "231 PEACH GROVE ROAD", | |
"store_suburb": "HAMILTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 8549642", | |
"store_fax": null, | |
"store_building_type": "Freestander", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.29362,-37.773085,0" | |
}, | |
{ | |
"title": "GLENFIELD Foodcourt", | |
"nid": "1743", | |
"store_code": "9400285", | |
"store_address": "GLENFIELD MALL, SHOP 4, LEVEL 3 40-48 DOWNING ST", | |
"store_suburb": "GLENFIELD", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09-4422490", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1800" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.7223081,-36.7833112,0" | |
}, | |
{ | |
"title": "HAWERA", | |
"nid": "1744", | |
"store_code": "9400286", | |
"store_address": "197 SOUTH RD", | |
"store_suburb": "HAWERA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "4541", | |
"store_phone": "06 278 0017", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"06000", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.2542871,-39.5878550,0" | |
}, | |
{ | |
"title": "RICHMOND", | |
"nid": "1745", | |
"store_code": "9400287", | |
"store_address": "CNR TALBOT & CROUCHER STREET", | |
"store_suburb": "RICHMOND MALL", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03-5438230", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.187652,-41.339734,0" | |
}, | |
{ | |
"title": "COURTENAY CENTRAL", | |
"nid": "1746", | |
"store_code": "9400294", | |
"store_address": "FOODCOURT1, 200 COURTENAY PLACE", | |
"store_suburb": "WELLINGTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "6011", | |
"store_phone": "04-3858646", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0900", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0900", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.78012150754853, -41.29264590284023,0" | |
}, | |
{ | |
"title": "BOTANY TOWN CENTRE ", | |
"nid": "1747", | |
"store_code": "9400296", | |
"store_address": "25B TOWN CENTRE DRIVE", | |
"store_suburb": "BOTANY TOWN CENTRE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2713540", | |
"store_fax": null, | |
"store_building_type": "Foodcourt", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.912981,-36.931002,0" | |
}, | |
{ | |
"title": "DRURY MSA", | |
"nid": "1748", | |
"store_code": "9400297", | |
"store_address": "BP Motorway Service Centre, Southern Motorway", | |
"store_suburb": "BOMBAY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "2578", | |
"store_phone": "09-2966395", | |
"store_fax": null, | |
"store_building_type": "Oil Alliance", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.939581,-37.087585,0" | |
}, | |
{ | |
"title": "TI RAKAU", | |
"nid": "1749", | |
"store_code": "9400310", | |
"store_address": "500 TI RAKAU DRIVE", | |
"store_suburb": "AUCKLAND", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2715090", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.9141374,-36.9291178,0" | |
}, | |
{ | |
"title": "PORIRUA Plaza", | |
"nid": "1750", | |
"store_code": "9400319", | |
"store_address": "NORTH CITY SHOPPING CENTRE, TITAHI BAY RD", | |
"store_suburb": "PORIRUA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04-2374757", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0830", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0830", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.8412870,-41.1341760,0" | |
}, | |
{ | |
"title": "SYLVIA PARK FOODCOURT", | |
"nid": "1751", | |
"store_code": "9400320", | |
"store_address": "286 MT WELLINGTON HIGHWAY", | |
"store_suburb": "MT WELLINGTON", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 5798851", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1800" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.8387230,-36.9085220,0" | |
}, | |
{ | |
"title": "AIRPORT DOMESTIC", | |
"nid": "1752", | |
"store_code": "9400321", | |
"store_address": "400 George Bolt Memorial Drive", | |
"store_suburb": "Manukau City", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2570546", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0500", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0500", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0500", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0500", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0500", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0500", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0500", | |
"2200" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.7926080,-37.0008270,0" | |
}, | |
{ | |
"title": "CLENDON PARK", | |
"nid": "1753", | |
"store_code": "9400323", | |
"store_address": "443-459 ROSCOMMON ROAD", | |
"store_suburb": "CLENDON PARK, MANUKAU", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 2676320", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.8692420,-37.0326580,0" | |
}, | |
{ | |
"title": "ALBANY FC", | |
"nid": "1754", | |
"store_code": "9400324", | |
"store_address": "219 DON MCKINNON DRIVE", | |
"store_suburb": "ALBANY", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 440 9030", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1700" | |
], | |
[ | |
"Monday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0800", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0800", | |
"2100" | |
], | |
[ | |
"Saturday", | |
"0800", | |
"1800" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.6980320,-36.7270330,0" | |
}, | |
{ | |
"title": "PAPAMOA", | |
"nid": "1755", | |
"store_code": "9400325", | |
"store_address": "7 GRAVATT ROAD", | |
"store_suburb": "PAPAMOA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 5720294", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.2837790,-37.7005780,0" | |
}, | |
{ | |
"title": "MOTUEKA", | |
"nid": "1756", | |
"store_code": "9400330", | |
"store_address": "296 HIGH ST", | |
"store_suburb": "MOTUEKA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03 5482830", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"2200" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.0105990,-41.1153260,0" | |
}, | |
{ | |
"title": "ROTORUA FAIRY SPRINGS", | |
"nid": "1757", | |
"store_code": "9400331", | |
"store_address": "70 FAIRY SPRINGS RD", | |
"store_suburb": "ROTORUA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "07 3481500", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.2275030,-38.1185390,0" | |
}, | |
{ | |
"title": "PORIRUA", | |
"nid": "1758", | |
"store_code": "9400345", | |
"store_address": "1 KENEPURU DRIVE", | |
"store_suburb": "PORIRUA ", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "04 2374157", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.8415311,-41.1392405,0" | |
}, | |
{ | |
"title": "DANNEVIRKE", | |
"nid": "1759", | |
"store_code": "9400344", | |
"store_address": "202 HIGH STREET", | |
"store_suburb": "DANNEVIRKE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06 3744250", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.105815,-40.207195,0" | |
}, | |
{ | |
"title": "MOORHOUSE AVE", | |
"nid": "1760", | |
"store_code": "9400346", | |
"store_address": "14 WASHINGTON WAY", | |
"store_suburb": "SYDENHAM", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03 3655721", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.6431890,-43.5404240,0" | |
}, | |
{ | |
"title": "GORE", | |
"nid": "1761", | |
"store_code": "9400351", | |
"store_address": "140=142 MAIN STREET", | |
"store_suburb": "GORE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "9710", | |
"store_phone": "03 203 9120", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "168.9428660,-46.1025950,0" | |
}, | |
{ | |
"title": "TAIHAPE", | |
"nid": "1762", | |
"store_code": "9400358", | |
"store_address": "78 HAUTAPU STREET", | |
"store_suburb": "TAIHAPE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06-3882005", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.8002840,-39.6794230,0" | |
}, | |
{ | |
"title": "AIRPORT DEPARTURES", | |
"nid": "1763", | |
"store_code": "9400039", | |
"store_address": "FIRST FLOOR, INTERNATIONAL TERMINAL", | |
"store_suburb": "AUCKLAND AIRPORT", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "1", | |
"store_phone": "09 2550921", | |
"store_fax": null, | |
"store_building_type": "Special", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"2300" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "174.781671,-37.004436,0" | |
}, | |
{ | |
"title": "RANGIORA", | |
"nid": "1764", | |
"store_code": "9400347", | |
"store_address": "366 FLAXTON ROAD", | |
"store_suburb": "RANGIORA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "03 3106510", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0100" | |
], | |
[ | |
"Monday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.59935,-43.326708,0" | |
}, | |
{ | |
"title": "OTOROHANGA", | |
"nid": "1765", | |
"store_code": "9400338", | |
"store_address": "117 MANIAPOTO STREET", | |
"store_suburb": "OTOROHANGA", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "3900", | |
"store_phone": "07 8738525", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.2101600,-38.1892150,0" | |
}, | |
{ | |
"title": "PRINCESS STREET", | |
"nid": "1766", | |
"store_code": "9400327", | |
"store_address": "117 PRINCESS STREET", | |
"store_suburb": "PALMERSTON NORTH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06 357 9196", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.6179400,-40.3571200,0" | |
}, | |
{ | |
"title": "LIFFITON ST", | |
"nid": "1767", | |
"store_code": "9400357", | |
"store_address": "3 LIFFITON STREET", | |
"store_suburb": "WANGANUI", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "06 348 0571", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.0433734,-39.9416215,0" | |
}, | |
{ | |
"title": "", | |
"nid": "1768", | |
"store_code": null, | |
"store_address": null, | |
"store_suburb": null, | |
"store_state": null, | |
"store_postcode": null, | |
"store_phone": null, | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": null | |
}, | |
{ | |
"title": "PALMERSTON NORTH FOODCOURT", | |
"nid": "1769", | |
"store_code": "9400336", | |
"store_address": "THE SQUARE", | |
"store_suburb": "PALMERSTON NORTH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "4410", | |
"store_phone": "06 357 1150", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.6110413,-40.3561686,0" | |
}, | |
{ | |
"title": "RICHMOND FREESTANDER", | |
"nid": "1770", | |
"store_code": "9400348", | |
"store_address": "CNR GLADSTONE ROAD & 321 QUEEN STREET", | |
"store_suburb": "RICHMOND", | |
"store_state": "NELSON", | |
"store_postcode": "7020", | |
"store_phone": "03 543 7018", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "173.1747140,-41.3408240,0" | |
}, | |
{ | |
"title": "TE NGAE", | |
"nid": "1771", | |
"store_code": "9400359", | |
"store_address": "2 ROBINSON AVENUE", | |
"store_suburb": "TE NGAE", | |
"store_state": "ROTORUA", | |
"store_postcode": "3010", | |
"store_phone": "07 345 4267", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.3090487,-38.1237451,0" | |
}, | |
{ | |
"title": "MOUNT MAUNGANUI", | |
"nid": "1772", | |
"store_code": "9400361", | |
"store_address": "420 MAUNGANUI ROAD", | |
"store_suburb": "MOUNT MAUNGANUI", | |
"store_state": "MOUNT MAUNGANUI", | |
"store_postcode": null, | |
"store_phone": "07 575 2097", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.1847300,-37.6410950,0" | |
}, | |
{ | |
"title": "BUNNY ST", | |
"nid": "1773", | |
"store_code": "9400362", | |
"store_address": "9 Bunny St", | |
"store_suburb": "Pipitea", | |
"store_state": "Wellington", | |
"store_postcode": "6011", | |
"store_phone": "04 473 5490", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0600", | |
"0600" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"0600" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"0600" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"0600" | |
], | |
[ | |
"Friday", | |
"0600", | |
"0600" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"0600" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.7795213,-41.2798325,0" | |
}, | |
{ | |
"title": "WHANGAPARAOA", | |
"nid": "1774", | |
"store_code": "9400334", | |
"store_address": "695-699 Whangaparaoa Rd", | |
"store_suburb": "Whangaparaoa", | |
"store_state": "Auckland", | |
"store_postcode": "930", | |
"store_phone": "09 424 6015", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.7449951,-36.6353634,0" | |
}, | |
{ | |
"title": "QUEENSTOWN, FRANKTON", | |
"nid": "1775", | |
"store_code": "9400356", | |
"store_address": "1063 Frankton Road", | |
"store_suburb": "Frankton", | |
"store_state": "Queenstown", | |
"store_postcode": "9300", | |
"store_phone": "03 441 4257", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "168.7291727,-45.0161353,0" | |
}, | |
{ | |
"title": "TE PUKE", | |
"nid": "1776", | |
"store_code": "9400363", | |
"store_address": "193 Jellicoe St", | |
"store_suburb": "Te Puke ", | |
"store_state": "Tauranga", | |
"store_postcode": "3119", | |
"store_phone": "07 573 0228 ", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Monday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Tuesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Wednesday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Thursday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Friday", | |
"0630", | |
"2300" | |
], | |
[ | |
"Saturday", | |
"0630", | |
"2300" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "176.3189799,-37.7827296,0" | |
}, | |
{ | |
"title": "PAEROA", | |
"nid": "1777", | |
"store_code": "9400370", | |
"store_address": "145 Normanby Rd", | |
"store_suburb": "SH2", | |
"store_state": "Paeroa", | |
"store_postcode": "3600", | |
"store_phone": "07 862 8407", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.6731910,-37.3821501,0" | |
}, | |
{ | |
"title": "COASTLANDS RELOCATION", | |
"nid": "1778", | |
"store_code": "9400364", | |
"store_address": "UNIT 1, COASTLANDS SHOPPINGTOWN", | |
"store_suburb": "PARAPARAUMU", | |
"store_state": "WELLINGTON", | |
"store_postcode": null, | |
"store_phone": "04 297 2435", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1730" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1730" | |
] | |
], | |
"store_filter": [], | |
"store_geocode": "175.0083802,-40.9142336,0" | |
}, | |
{ | |
"title": "CONSTELLATION DRIVE", | |
"nid": "1779", | |
"store_code": "9400354", | |
"store_address": "14-16 CONSTELLATION DRIVE", | |
"store_suburb": "ROSEDALE", | |
"store_state": "NORTH SHORE CITY", | |
"store_postcode": "632", | |
"store_phone": "09 479 3201", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.7350108,-36.7466454,0" | |
}, | |
{ | |
"title": "TAUMARUNUI", | |
"nid": "1780", | |
"store_code": "9400366", | |
"store_address": "2 Hakiaha Street", | |
"store_suburb": "Taumarunui", | |
"store_state": "Manawatu-Wanganui", | |
"store_postcode": "3920", | |
"store_phone": "07 895 3520 ", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.2570665,-38.8831537,0" | |
}, | |
{ | |
"title": "HAMILTON CENTRE PLACE", | |
"nid": "1781", | |
"store_code": "9400378", | |
"store_address": "SHOP FC06, CENTRE PLACE, 501 VICTORIA STREET", | |
"store_suburb": "HAMILTON", | |
"store_state": "HAMILTON", | |
"store_postcode": "3204", | |
"store_phone": "07 839 6944", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"1000", | |
"1700" | |
], | |
[ | |
"Monday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0900", | |
"2100" | |
], | |
[ | |
"Friday", | |
"0900", | |
"1800" | |
], | |
[ | |
"Saturday", | |
"0900", | |
"1800" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "175.2802662,-37.7858260,0" | |
}, | |
{ | |
"title": "LUNN AVE", | |
"nid": "1782", | |
"store_code": "9400367", | |
"store_address": "77 Lunn Avenue", | |
"store_suburb": "Mt Wellington", | |
"store_state": "Auckland", | |
"store_postcode": null, | |
"store_phone": "09 570 4029 ", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0500", | |
"0200" | |
], | |
[ | |
"Tuesday", | |
"0500", | |
"0200" | |
], | |
[ | |
"Wednesday", | |
"0500", | |
"0200" | |
], | |
[ | |
"Thursday", | |
"0500", | |
"0200" | |
], | |
[ | |
"Friday", | |
"0500", | |
"0200" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
} | |
], | |
"store_geocode": "174.8335485,-36.8896170,0" | |
}, | |
{ | |
"title": "ALBANY", | |
"nid": "1783", | |
"store_code": "9400374", | |
"store_address": "5 COLISEUM DRIVE", | |
"store_suburb": "ALBANY", | |
"store_state": "AUCKLAND", | |
"store_postcode": "634", | |
"store_phone": "09 414 7400", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
} | |
], | |
"store_geocode": "174.7031358,-36.7297976,0" | |
}, | |
{ | |
"title": "BRITOMART", | |
"nid": "1784", | |
"store_code": "9400381", | |
"store_address": "CNR QUEEN AND GALWAY STREETS", | |
"store_suburb": "AUCKLAND CITY", | |
"store_state": "AUCKLAND", | |
"store_postcode": "1010", | |
"store_phone": "09 3774380", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
} | |
], | |
"store_geocode": "174.767059,-36.844351,0" | |
}, | |
{ | |
"title": "BALMORAL", | |
"nid": "1785", | |
"store_code": "9400329", | |
"store_address": "192 BALMORAL ROAD", | |
"store_suburb": "BALMORAL", | |
"store_state": "AUCKLAND", | |
"store_postcode": "1024", | |
"store_phone": "09 638 5610", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0600", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Tuesday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Wednesday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Thursday", | |
"0600", | |
"2200" | |
], | |
[ | |
"Friday", | |
"0000", | |
"2200" | |
], | |
[ | |
"Saturday", | |
"0600", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "26", | |
"name": "Create Your Taste" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
} | |
], | |
"store_geocode": "174.7469692,-36.8868296,0" | |
}, | |
{ | |
"title": "CHRISTCHURCH AIRPORT", | |
"nid": "1786", | |
"store_code": "377", | |
"store_address": "512 MEMORIAL AVENUE, CHRISTCHURCH AIRPORT", | |
"store_suburb": "CHRISTCHURCH", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "8053", | |
"store_phone": "03 358 3595", | |
"store_fax": null, | |
"store_building_type": "MOD", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.5485034,-43.4917461,0" | |
}, | |
{ | |
"title": "THE BASE SHOPPING CENTRE", | |
"nid": "1787", | |
"store_code": "368", | |
"store_address": "Maahanga Drive", | |
"store_suburb": "Te Rapa", | |
"store_state": "Hamilton", | |
"store_postcode": "3200", | |
"store_phone": "07 850 1471", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Monday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Tuesday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Wednesday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Thursday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Friday", | |
"0800", | |
"1800" | |
], | |
[ | |
"Saturday", | |
"0800", | |
"1800" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.2330692,-37.7490214,0" | |
}, | |
{ | |
"title": "Havelock North", | |
"nid": "1788", | |
"store_code": "355", | |
"store_address": "38-40 Havelock Road", | |
"store_suburb": "Havelock North", | |
"store_state": "New Zealand", | |
"store_postcode": "4130", | |
"store_phone": "06 877 0280", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
} | |
], | |
"store_geocode": "176.874754,-39.666334,0" | |
}, | |
{ | |
"title": "Stoddard Road", | |
"nid": "1789", | |
"store_code": "379", | |
"store_address": "22 Stoddard Road", | |
"store_suburb": "Mt Roskill", | |
"store_state": "Auckland", | |
"store_postcode": "1041", | |
"store_phone": "09 620 8930", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
} | |
], | |
"store_geocode": "174.7340610,-36.9074897,0" | |
}, | |
{ | |
"title": "Rolleston", | |
"nid": "1790", | |
"store_code": "372", | |
"store_address": "State Highway 1", | |
"store_suburb": "Rolleston", | |
"store_state": "Rolleston", | |
"store_postcode": "7678", | |
"store_phone": "03 3471620", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "172.4062566,-43.5826492,0" | |
}, | |
{ | |
"title": "GREENLANE", | |
"nid": "1823", | |
"store_code": "9400202", | |
"store_address": "320-356 GREAT SOUTH ROAD", | |
"store_suburb": "GREENLANE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": null, | |
"store_phone": "09 5242651", | |
"store_fax": null, | |
"store_building_type": "Spl Fs (ex GP)", | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"", | |
"" | |
], | |
[ | |
"Monday", | |
"", | |
"" | |
], | |
[ | |
"Tuesday", | |
"", | |
"" | |
], | |
[ | |
"Wednesday", | |
"", | |
"" | |
], | |
[ | |
"Thursday", | |
"", | |
"" | |
], | |
[ | |
"Friday", | |
"", | |
"" | |
], | |
[ | |
"Saturday", | |
"", | |
"" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "14", | |
"name": "Birthday Parties" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "174.794143,-36.888848,0" | |
}, | |
{ | |
"title": "ST JAMES", | |
"nid": "1830", | |
"store_code": "9400339", | |
"store_address": "123 Thomas Road ", | |
"store_suburb": "Rototuna", | |
"store_state": "Hamilton", | |
"store_postcode": "3210", | |
"store_phone": "07 855 4194 ", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"", | |
"" | |
], | |
[ | |
"Monday", | |
"", | |
"" | |
], | |
[ | |
"Tuesday", | |
"", | |
"" | |
], | |
[ | |
"Wednesday", | |
"", | |
"" | |
], | |
[ | |
"Thursday", | |
"", | |
"" | |
], | |
[ | |
"Friday", | |
"", | |
"" | |
], | |
[ | |
"Saturday", | |
"", | |
"" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.27653420000001, -37.7307899" | |
}, | |
{ | |
"title": "CAMBRIDGE", | |
"nid": "1863", | |
"store_code": "9400384", | |
"store_address": "98 Queen Street", | |
"store_suburb": "CAMBRIDGE", | |
"store_state": "NEW ZEALAND", | |
"store_postcode": "3434", | |
"store_phone": "07 823 7942", | |
"store_fax": null, | |
"store_building_type": null, | |
"store_party_room_seat": null, | |
"store_trading_hour": [ | |
[ | |
"Day", | |
"Open", | |
"Close" | |
], | |
[ | |
"Sunday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Monday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Tuesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Wednesday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Thursday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Friday", | |
"0000", | |
"0000" | |
], | |
[ | |
"Saturday", | |
"0000", | |
"0000" | |
] | |
], | |
"store_filter": [ | |
{ | |
"tid": "12", | |
"name": "24 Hours" | |
}, | |
{ | |
"tid": "15", | |
"name": "Drive Thru" | |
}, | |
{ | |
"tid": "23", | |
"name": "Georgie Pie" | |
}, | |
{ | |
"tid": "11", | |
"name": "McCafé" | |
}, | |
{ | |
"tid": "13", | |
"name": "Playland" | |
}, | |
{ | |
"tid": "16", | |
"name": "WiFi" | |
} | |
], | |
"store_geocode": "175.47086779999995, -37.891238,0" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Even easier would be using the geojson module itself. Something like (untested):
Life's too short to roll your own GeoJSON! (And this has paid off for me when I've gone to extend something after I've written it).