[資料分析&機器學習] :如何獲取資料? Google Map API

[資料分析&機器學習] :如何獲取資料? Google Map API

News from: YJ.

由於近期Google map api更新的關係,導致”[資料分析&機器學習] : 如何獲取資料? Google Map API “ 的內容跟程式有些微變化。 原本google提供的places_radar api被移除了改為places_nearby,而places_nearby一次只會回傳20間店家資料,必須用裡面的next_page_token再去拿下一間的20間店家資料,但總共最多只能拿到60間的資料,相較於原本places_radar api一次能回傳200筆資料少了許多。
參考資料: Google Map Place Api : https://developers.google.com/places/web-service/search

上一講介紹了如何用Sklearn拿取內建的資料集,但如果你想要拿取自己想要的資料怎麼辦呢?有兩種方法,API或爬蟲。第一種先去Google看看有沒有公開的API,像是許多知名的軟體公司他們都會把服務以API的形式公開出來,像是Google, Facebook, Github…,並且還會提供開發者說明手冊給一般人來使用。只要搜尋你想要的服務後面加上Api就可以了,例如想要找有關地圖的服務,一開始會先想到google map,接著搜尋google map api就可以發現如何使用了。 



如果某些公司沒有公開出來, 你也可以用一些比較Hack的方式去,像是用網頁開發工具去看這個頁面的資料是否是背後透過某些API服務得到的,如果有就可以用依樣畫葫蘆的方式去猜,像是Hahow就可以以這樣的方式去獲取課程資料。
除了知名軟體公司之外,許多的政府單位現在也開始配合政府的Open data政策,把許多的資料透過API的方式開放給大眾使用。舉例來說,假設我想要抓台北市立動物園所有動物的資料,就可以透過政府開放平台所提供的API來下載。
如果都沒有提供API的話可能就要自行撰寫爬蟲,關於Python爬蟲的撰寫可參考:Python爬蟲新手筆記 或是 Python 網頁爬蟲入門實戰
接著為大家示範怎麼使用Google Map API來爬全台寵物店家的資訊,首先先到搜尋“google map api python”,選取Google 地圖Web 服務的用戶端程式庫,進入之後會看到API的說明以及取得金鑰的畫面,金鑰可以想成是代表你的帳號身份,通常只可以存取某種特定服務(google 各種服務gmail, map, drive…的金鑰也都不一樣),權限比帳號密碼小,而且如果直接輸入帳號密碼也會容易被盜用。
依照說明取得金鑰
依照說明安裝Python Client for Google Maps Services,只要在CMD輸入pip install -U googlemaps 即可
一開始先import 必要的library進來,以及放入你的金鑰
接著創造一個 list 放入全台各縣市資料
首先先創立一個名為ids 的list,撰寫一個迴圈利用gmaps.geocode函式去獲得每一個縣市GPS位址,並搜尋該縣市位址中心半徑25000公尺符合寵物的店家id,並將這些id append到我們先前創立好的ids變數中,這樣的方式可能會取到一些重複的店家,之後我們在去除重複即可
其中gmaps.geocode回傳的格式
接著利用list, set方式去除重複的店家資訊,並利用gmaps.place函式取得店家資訊
轉成Pandas格式
其中經緯度在geometry 欄位裡,如果要萃取出來,可以參考下方用map function,其他想從欄位萃取出來的資訊可以使用一樣的方式
程式碼
{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "import googlemaps\n",
    "import pandas as pd\n",
    "import time\n",
    "gmaps = googlemaps.Client(key='你的金鑰')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "cities= [\"臺北市\",\"新北市\",\"桃園市\",\"臺中市\",\"臺南市\",\"高雄市\",\"基隆市\",\"新竹市\",\"嘉義市\",\"新竹縣\",\n",
    "        \"苗栗縣\",\"彰化縣\",\"南投縣\",\"雲林縣\",\"嘉義縣\",\"屏東縣\",\"宜蘭縣\",\"花蓮縣\",\"臺東縣\",\"澎湖縣\"]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[{'address_components': [{'long_name': 'Taipei',\n",
       "    'short_name': 'Taipei',\n",
       "    'types': ['colloquial_area', 'locality', 'political']},\n",
       "   {'long_name': 'Taiwan',\n",
       "    'short_name': 'TW',\n",
       "    'types': ['country', 'political']}],\n",
       "  'formatted_address': 'Taipei, Taiwan',\n",
       "  'geometry': {'bounds': {'northeast': {'lat': 25.2443731, 'lng': 121.7300824},\n",
       "    'southwest': {'lat': 24.7900797, 'lng': 121.2826735}},\n",
       "   'location': {'lat': 25.0329694, 'lng': 121.5654177},\n",
       "   'location_type': 'APPROXIMATE',\n",
       "   'viewport': {'northeast': {'lat': 25.2443731, 'lng': 121.7300824},\n",
       "    'southwest': {'lat': 24.7900797, 'lng': 121.2826735}}},\n",
       "  'place_id': 'ChIJmQrivHKsQjQR4MIK3c41aj8',\n",
       "  'types': ['colloquial_area', 'locality', 'political']}]"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "geocode_result = gmaps.geocode(\"臺北市\")\n",
    "geocode_result"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "找到以臺北市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以新北市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以桃園市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以臺中市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以臺南市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以高雄市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以基隆市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以新竹市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以嘉義市為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以新竹縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以苗栗縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 19\n",
      "找到以彰化縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以南投縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 31\n",
      "找到以雲林縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 32\n",
      "找到以嘉義縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 13\n",
      "找到以屏東縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 32\n",
      "找到以宜蘭縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以花蓮縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以臺東縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 60\n",
      "找到以澎湖縣為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): 37\n"
     ]
    }
   ],
   "source": [
    "ids = []\n",
    "for city in cities:\n",
    "    results = []\n",
    "    # Geocoding an address\n",
    "    geocode_result = gmaps.geocode(city)\n",
    "    loc = geocode_result[0]['geometry']['location']\n",
    "    query_result = gmaps.places_nearby(keyword=\"寵物\",location=loc, radius=10000)\n",
    "    results.extend(query_result['results'])\n",
    "    while query_result.get('next_page_token'):\n",
    "        time.sleep(2)\n",
    "        query_result = gmaps.places_nearby(page_token=query_result['next_page_token'])\n",
    "        results.extend(query_result['results'])    \n",
    "    print(\"找到以\"+city+\"為中心半徑10000公尺的寵物店家數量(google mapi api上限提供60間): \"+str(len(results)))\n",
    "    for place in results:\n",
    "        ids.append(place['place_id'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "stores_info = []\n",
    "# 去除重複id\n",
    "ids = list(set(ids)) \n",
    "for id in ids:\n",
    "    stores_info.append(gmaps.place(place_id=id, language='zh-TW')['result'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "output = pd.DataFrame.from_dict(stores_info)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style>\n",
       "    .dataframe thead tr:only-child th {\n",
       "        text-align: right;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: left;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>address_components</th>\n",
       "      <th>adr_address</th>\n",
       "      <th>formatted_address</th>\n",
       "      <th>formatted_phone_number</th>\n",
       "      <th>geometry</th>\n",
       "      <th>icon</th>\n",
       "      <th>id</th>\n",
       "      <th>international_phone_number</th>\n",
       "      <th>name</th>\n",
       "      <th>opening_hours</th>\n",
       "      <th>...</th>\n",
       "      <th>plus_code</th>\n",
       "      <th>rating</th>\n",
       "      <th>reference</th>\n",
       "      <th>reviews</th>\n",
       "      <th>scope</th>\n",
       "      <th>types</th>\n",
       "      <th>url</th>\n",
       "      <th>utc_offset</th>\n",
       "      <th>vicinity</th>\n",
       "      <th>website</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>[{'long_name': '36之2號', 'short_name': '36之2號',...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;238&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>238台灣新北市樹林區樹新路34巷36之2號</td>\n",
       "      <td>02 2682 9988</td>\n",
       "      <td>{'location': {'lat': 24.9946492, 'lng': 121.42...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>617fff9fd05c2bd93f7bfa78cc81c8f9f1f489e5</td>\n",
       "      <td>+886 2 2682 9988</td>\n",
       "      <td>有狗好寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'XCVH+V2 台灣台北', 'global_code...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRSAAAAfpjr28Nh3tIRtKH3i6HY0mQBZ-YkW6t5SqDILE...</td>\n",
       "      <td>[{'author_name': '廖泥', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=17083992417925975005</td>\n",
       "      <td>480</td>\n",
       "      <td>樹林區樹新路34巷36之2號</td>\n",
       "      <td>https://www.facebook.com/goodog9988/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>[{'long_name': '132', 'short_name': '132', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;220&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>220台灣新北市板橋區中正路132號</td>\n",
       "      <td>02 2965 6585</td>\n",
       "      <td>{'location': {'lat': 25.015889, 'lng': 121.456...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e0893ebb22aa73017290829b82ed30de7e803dd4</td>\n",
       "      <td>+886 2 2965 6585</td>\n",
       "      <td>馬吉家族寵物館_ 馬吉貓砂</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '2F84+9P 台灣台北', 'global_code...</td>\n",
       "      <td>4.4</td>\n",
       "      <td>CmRRAAAADUAeIIEa1EL09KbvkYzzd04QS7RZmKzX5rTIpE...</td>\n",
       "      <td>[{'author_name': 'ruru l', 'author_url': 'http...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=512782104412930707</td>\n",
       "      <td>480</td>\n",
       "      <td>板橋區中正路132號</td>\n",
       "      <td>http://www.machi-family.com/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>[{'long_name': '2', 'short_name': '2', 'types'...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;545&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>545台灣南投縣埔里鎮南興街2號之 19 號</td>\n",
       "      <td>0978 719 515</td>\n",
       "      <td>{'location': {'lat': 23.9656185, 'lng': 120.96...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e7f8b2c14dddf2bb96954dad9fcc49db69938955</td>\n",
       "      <td>+886 978 719 515</td>\n",
       "      <td>寵愛衣二衫</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'XX86+6V 台灣南投縣埔里鎮埔里', 'globa...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRRAAAAev5UNl6Pnq2g8RfxmqmpakbonaGWGz9py9o30U...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=469808712778974747</td>\n",
       "      <td>480</td>\n",
       "      <td>埔里鎮南興街2號之 19 號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>[{'long_name': '89', 'short_name': '89', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;260&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>260台灣宜蘭縣宜蘭市中山路二段89號</td>\n",
       "      <td>03 935 7600</td>\n",
       "      <td>{'location': {'lat': 24.7458867, 'lng': 121.75...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>67aa9b4af0d6fc649816db843be56bd9aa5fb03f</td>\n",
       "      <td>+886 3 935 7600</td>\n",
       "      <td>麻吉寵物生活館宜蘭店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'PQW4+94 台灣宜蘭縣宜蘭市宜蘭', 'globa...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRSAAAAVxBAfgYikeGJDZk29knd_rAScRhPJvr6djFNHi...</td>\n",
       "      <td>[{'author_name': '林岑軒', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=10620142918041966745</td>\n",
       "      <td>480</td>\n",
       "      <td>宜蘭市中山路二段89號</td>\n",
       "      <td>http://picbear.com/place/372543606136920</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>[{'long_name': '353', 'short_name': '353', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖縣馬公市中華路353號</td>\n",
       "      <td>06 926 5590</td>\n",
       "      <td>{'location': {'lat': 23.5719086, 'lng': 119.57...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>9cebffdc8e6fb33936915b229ea9a58739519284</td>\n",
       "      <td>+886 6 926 5590</td>\n",
       "      <td>魚樂教父水族寵物館</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'HHCH+Q7 台灣澎湖縣馬公市馬公', 'globa...</td>\n",
       "      <td>4.5</td>\n",
       "      <td>CmRRAAAAQ3v1sg4QJW4ocuLt1fBITE8ybY2cLfoiA9aMxT...</td>\n",
       "      <td>[{'author_name': '鄧鄧世昌', 'author_url': 'https:...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=5311675580329079185</td>\n",
       "      <td>480</td>\n",
       "      <td>馬公市中華路353號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>[{'long_name': '竹北市', 'short_name': '竹北市', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹縣竹北市中華路226號</td>\n",
       "      <td>03 656 6633</td>\n",
       "      <td>{'location': {'lat': 24.8311868, 'lng': 121.00...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>8d47a37886a39efcf0fe977dcb6d315875b7da6e</td>\n",
       "      <td>+886 3 656 6633</td>\n",
       "      <td>動物王國寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'R2J3+F2 台灣新竹縣竹北市竹北', 'globa...</td>\n",
       "      <td>3.8</td>\n",
       "      <td>CmRSAAAANMpc3QsqECaqN1xSTfBKLB-5W4A6VS9t6567Mg...</td>\n",
       "      <td>[{'author_name': 's S', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=12195892991935783651</td>\n",
       "      <td>480</td>\n",
       "      <td>竹北市中華路226號</td>\n",
       "      <td>http://www.17ipet.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>[{'long_name': '178', 'short_name': '178', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;712&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>712台灣台南市新化區忠孝路178號號</td>\n",
       "      <td>06 598 7079</td>\n",
       "      <td>{'location': {'lat': 23.0374024, 'lng': 120.30...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>c2d1790b27512165aef0c6941ae5aa5bb36302aa</td>\n",
       "      <td>+886 6 598 7079</td>\n",
       "      <td>儷奇寵物生活館 新化館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '28P2+XQ 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.5</td>\n",
       "      <td>CmRRAAAAHzA1zroSh8wWDcaRs-6u5tbsj7jUGi9Sz5hPAl...</td>\n",
       "      <td>[{'author_name': '洪唯修', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=233836542788744870</td>\n",
       "      <td>480</td>\n",
       "      <td>新化區忠孝路178號號</td>\n",
       "      <td>https://www.facebook.com/abubu.pet</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>[{'long_name': '台東縣', 'short_name': '台東縣', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市台東市中興路三段280號</td>\n",
       "      <td>08 922 0526</td>\n",
       "      <td>{'location': {'lat': 22.7706254, 'lng': 121.11...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>1cf6851363b25f7683b8483a89c1c4f76a24ae99</td>\n",
       "      <td>+886 8 922 0526</td>\n",
       "      <td>來來寵物工作室</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'Q4C7+76 台灣台東縣台東市臺東', 'globa...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRSAAAAZvn8E-Rs2KbpbN3JOdiVrtF6s6XShknxQ-OyGH...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=17066602014284458090</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市中興路三段280號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>[{'long_name': '269', 'short_name': '269', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市新生路269號</td>\n",
       "      <td>08 933 0306</td>\n",
       "      <td>{'location': {'lat': 22.7570513, 'lng': 121.14...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>a242f827e865ce91adcbd7ccb594954824d16aaf</td>\n",
       "      <td>+886 8 933 0306</td>\n",
       "      <td>范氏愛犬屋(范氏犬貓用品總匯)</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'Q44V+R6 台灣台東縣台東市臺東', 'globa...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRRAAAA5D8grztbPxvmSwT27ntSOIuF034YhUQMxAQQOr...</td>\n",
       "      <td>[{'author_name': '劉木雄', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=4709644583852088623</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市新生路269號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>[{'long_name': '144', 'short_name': '144', 'ty...</td>\n",
       "      <td>號, &lt;span class=\"street-address\"&gt;No. 144中山路三段&lt;/...</td>\n",
       "      <td>號, No. 144中山路三段彰化市彰化縣台灣 500</td>\n",
       "      <td>04 729 6085</td>\n",
       "      <td>{'location': {'lat': 24.0853662, 'lng': 120.55...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e792a191dc429a7cbd006e00f21f053e8238b520</td>\n",
       "      <td>+886 4 729 6085</td>\n",
       "      <td>晏聖寵物百貨量販店</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '3HP4+4P 台灣彰化縣溪湖鎮彰化', 'globa...</td>\n",
       "      <td>2.5</td>\n",
       "      <td>CmRSAAAATAabkudkHPSkiTsLV_kikIo2TXGqT0uiqWqMEa...</td>\n",
       "      <td>[{'author_name': 'jenyaw Lay', 'author_url': '...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=16434882717336812037</td>\n",
       "      <td>480</td>\n",
       "      <td>號, No. 144, 中山路三段, 彰化市</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>10</th>\n",
       "      <td>[{'long_name': '北埔村', 'short_name': '北埔村', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;971&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>971台灣花蓮縣新城鄉北埔村</td>\n",
       "      <td>NaN</td>\n",
       "      <td>{'location': {'lat': 24.0277836, 'lng': 121.60...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f14d64330038d965fbe9b038cee3c09afbf54c5f</td>\n",
       "      <td>NaN</td>\n",
       "      <td>嘎比烏姆寵物親善公園</td>\n",
       "      <td>{'open_now': True, 'periods': [{'open': {'day'...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '2JH3+42 Hualein County Metr...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRRAAAAGNOFJdIADdU8NN74a9rlfYm-pS6i8IDzd-18bF...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[park, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=601436564154030897</td>\n",
       "      <td>480</td>\n",
       "      <td>新城鄉北埔村</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>11</th>\n",
       "      <td>[{'long_name': '台灣', 'short_name': 'TW', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;970&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>970台灣花蓮縣花蓮市花蓮縣花蓮市中華路351號</td>\n",
       "      <td>03 836 1616</td>\n",
       "      <td>{'location': {'lat': 23.974661, 'lng': 121.596...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>45287761de7deb71fbdcd34ac356e5f5afb5d519</td>\n",
       "      <td>+886 3 836 1616</td>\n",
       "      <td>翠鳴寵物軒</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'XHFW+VC Hualein County Metr...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRRAAAAuIgnfMSsOcNWQE4ocEGvNrx8frEDwnzXQMc-P1...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=308745779026355819</td>\n",
       "      <td>480</td>\n",
       "      <td>花蓮縣花蓮市中華路351號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>12</th>\n",
       "      <td>[{'long_name': '217', 'short_name': '217', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市鐵花路217號</td>\n",
       "      <td>08 933 5008</td>\n",
       "      <td>{'location': {'lat': 22.7499621, 'lng': 121.14...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>4962f0c3d99ce1b09decddab9b96e96fa3104747</td>\n",
       "      <td>+886 8 933 5008</td>\n",
       "      <td>狗仔店寵物美容用品館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'P4XX+XW 台灣台東縣台東市臺東', 'globa...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRSAAAADOpJFZjptvRdZnX7WqT4o5dAngxKQ2yCiZPCr2...</td>\n",
       "      <td>[{'author_name': '林果', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=15674708651462881970</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市鐵花路217號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>13</th>\n",
       "      <td>[{'long_name': '503號', 'short_name': '503號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;260&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>260台灣宜蘭縣宜蘭市泰山路503號</td>\n",
       "      <td>0905 787 902</td>\n",
       "      <td>{'location': {'lat': 24.7488359, 'lng': 121.73...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>1cf2d3b40fd0bb81a455325d09d7e8d3ef15e7a4</td>\n",
       "      <td>+886 905 787 902</td>\n",
       "      <td>小狗當家寵物沙龍</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'PPXM+GG 台灣宜蘭縣宜蘭市宜蘭', 'globa...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRRAAAA86DFkn6q2ChDR3fqZlIVf9agQCCIB5xn8dv7m2...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=1770771663689486582</td>\n",
       "      <td>480</td>\n",
       "      <td>宜蘭市泰山路503號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>14</th>\n",
       "      <td>[{'long_name': '224-226', 'short_name': '224-2...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;103&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>103台灣台北市大同區民族西路224-226號</td>\n",
       "      <td>02 2585 8887</td>\n",
       "      <td>{'location': {'lat': 25.068505, 'lng': 121.512...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>7afb58b8f10da0244c4457ea69c34af44ce7ed05</td>\n",
       "      <td>+886 2 2585 8887</td>\n",
       "      <td>奧斯卡寵物連鎖量販</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '3G97+C5 台灣台北', 'global_code...</td>\n",
       "      <td>3.9</td>\n",
       "      <td>CmRRAAAAMoIS1KiGonEP89gDxLLHLj3a-dyC8NgkOUrFLb...</td>\n",
       "      <td>[{'author_name': '彌彌陳', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=1159619883477333737</td>\n",
       "      <td>480</td>\n",
       "      <td>大同區民族西路224-226號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>15</th>\n",
       "      <td>[{'long_name': '491', 'short_name': '491', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;71742&lt;/span&gt;&lt;span cl...</td>\n",
       "      <td>71742台灣台南市仁德區中山路491號</td>\n",
       "      <td>06 270 8339</td>\n",
       "      <td>{'location': {'lat': 22.9710771, 'lng': 120.25...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>371fe86417bdc4d4e629d5a351dd70f278381c53</td>\n",
       "      <td>+886 6 270 8339</td>\n",
       "      <td>奧斯卡寵物台南仁德店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'X7C3+CX 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.2</td>\n",
       "      <td>CmRSAAAAA5muf9bX6sy1P134x63BZobatGzW5U5Id1u4-o...</td>\n",
       "      <td>[{'author_name': '琴妹', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9547440387483416321</td>\n",
       "      <td>480</td>\n",
       "      <td>仁德區中山路491號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>16</th>\n",
       "      <td>[{'long_name': '786', 'short_name': '786', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市東區經國路一段786號號</td>\n",
       "      <td>03 532 2888</td>\n",
       "      <td>{'location': {'lat': 24.8142141, 'lng': 120.97...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>3ceb418f079cd06806404f9c7c5f8a244cb58fbc</td>\n",
       "      <td>+886 3 532 2888</td>\n",
       "      <td>魚中魚民權店</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'RX7C+M8 台灣新竹市東區新竹', 'global...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRRAAAAuXUoTCsSrgVxlilX1pkVS1ZIRdDOsyujXTvXD3...</td>\n",
       "      <td>[{'author_name': '許信偉', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=6339962840738951166</td>\n",
       "      <td>480</td>\n",
       "      <td>東區經國路一段786號號</td>\n",
       "      <td>https://www.facebook.com/pm.shop025/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>17</th>\n",
       "      <td>[{'long_name': '177號', 'short_name': '177號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市東區東光路177號</td>\n",
       "      <td>03 561 7899</td>\n",
       "      <td>{'location': {'lat': 24.8056797, 'lng': 120.98...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>624a2ba5bb0978130b381acd92954605f672c7c4</td>\n",
       "      <td>+886 3 561 7899</td>\n",
       "      <td>魚中魚貓狗水族大賣場新竹忠孝店</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'RX4P+7H 台灣新竹市東區新竹', 'global...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRSAAAAGyd2WpmAPD7qcL8qn5gzu9DTrSdfwfWBWrOrVY...</td>\n",
       "      <td>[{'author_name': '王麗新', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[aquarium, store, point_of_interest, establish...</td>\n",
       "      <td>https://maps.google.com/?cid=16815707981374793932</td>\n",
       "      <td>480</td>\n",
       "      <td>東區東光路177號</td>\n",
       "      <td>http://www.petsmall.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>18</th>\n",
       "      <td>[{'long_name': '193', 'short_name': '193', 'ty...</td>\n",
       "      <td>號, &lt;span class=\"street-address\"&gt;No. 193垂楊路&lt;/sp...</td>\n",
       "      <td>號, No. 193垂楊路東區嘉義市台灣 600</td>\n",
       "      <td>05 216 3535</td>\n",
       "      <td>{'location': {'lat': 23.4743278, 'lng': 120.45...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>2b34971b49d411536d489bce4077d16a5b463d1f</td>\n",
       "      <td>+886 5 216 3535</td>\n",
       "      <td>貓狗大棧垂楊店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'FFF4+PF 台灣嘉義市西區嘉義', 'global...</td>\n",
       "      <td>4.3</td>\n",
       "      <td>CmRSAAAAjZyapOGv9em0WVcj6-dtxY1R0DnOdYAj00Z0KI...</td>\n",
       "      <td>[{'author_name': '溫瀅雅', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=17342055396130400675</td>\n",
       "      <td>480</td>\n",
       "      <td>號, No. 193, 垂楊路, 東區</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>19</th>\n",
       "      <td>[{'long_name': '25', 'short_name': '25', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;200&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>200台灣基隆市仁愛區忠二路25號</td>\n",
       "      <td>02 2425 3747</td>\n",
       "      <td>{'location': {'lat': 25.13014579999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>2d9daca523286eba75aa812ff5a5f83c8c616e5a</td>\n",
       "      <td>+886 2 2425 3747</td>\n",
       "      <td>小犬寵物</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '4PJQ+3W 台灣基隆市仁愛區基隆', 'globa...</td>\n",
       "      <td>4.8</td>\n",
       "      <td>CmRSAAAA7IX6TW5h7MOeQWsy3vyRbsq2QYTHXS-e0xWT0Q...</td>\n",
       "      <td>[{'author_name': 'Misa Yeh', 'author_url': 'ht...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=9845513125318587110</td>\n",
       "      <td>480</td>\n",
       "      <td>仁愛區忠二路25號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>20</th>\n",
       "      <td>[{'long_name': '211', 'short_name': '211', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;920&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>920台灣屏東縣潮州鎮延平路211號</td>\n",
       "      <td>08 788 6000</td>\n",
       "      <td>{'location': {'lat': 22.5567203, 'lng': 120.54...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>a53a5ebcd5d9d4a33d8f98bbc75ab3967257dee5</td>\n",
       "      <td>+886 8 788 6000</td>\n",
       "      <td>奧斯卡寵物連鎖量販【潮州】</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'HG4R+M3 台灣屏東縣潮州鎮潮州', 'globa...</td>\n",
       "      <td>3.9</td>\n",
       "      <td>CmRRAAAAydi17P9qzTmPp_-0Ehtlp9xNw4ufznK7TJX0aN...</td>\n",
       "      <td>[{'author_name': 'Jefe Yu', 'author_url': 'htt...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=5918987336470017151</td>\n",
       "      <td>480</td>\n",
       "      <td>潮州鎮延平路211號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>21</th>\n",
       "      <td>[{'long_name': '62', 'short_name': '62', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;700&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>700台灣台南市中西區大同路一段62號</td>\n",
       "      <td>0983 613 997</td>\n",
       "      <td>{'location': {'lat': 22.9871892, 'lng': 120.21...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>3087d1e07f47807a81c135926da65b4cf8dc5be5</td>\n",
       "      <td>+886 983 613 997</td>\n",
       "      <td>美力生寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'X6P6+VF 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRSAAAAeDy1ei5GPBJobDlY8iCRA-WkXkcKm03KCUQVUL...</td>\n",
       "      <td>[{'author_name': 'Vera Lee', 'author_url': 'ht...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9857523961350992552</td>\n",
       "      <td>480</td>\n",
       "      <td>中西區大同路一段62號</td>\n",
       "      <td>https://www.facebook.com/dog1209/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>22</th>\n",
       "      <td>[{'long_name': '8-10號', 'short_name': '8-10號',...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;200&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>200台灣基隆市仁愛區愛四路8-10號</td>\n",
       "      <td>02 2427 6055</td>\n",
       "      <td>{'location': {'lat': 25.1276419, 'lng': 121.74...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f93f7541a1fe29a06c3a4d6010627bc9658b211a</td>\n",
       "      <td>+886 2 2427 6055</td>\n",
       "      <td>小寶貝寵物精品</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '4PHV+35 台灣基隆市仁愛區基隆', 'globa...</td>\n",
       "      <td>3.5</td>\n",
       "      <td>CmRSAAAAaA3XTzgtt5xvpVYfZq-iS4Nwmax1GW4Ov0Xz_0...</td>\n",
       "      <td>[{'author_name': '葉傑', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=12520110923217800508</td>\n",
       "      <td>480</td>\n",
       "      <td>仁愛區愛四路8-10號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>23</th>\n",
       "      <td>[{'long_name': '嘉寶里', 'short_name': '嘉寶里', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;508&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>508台灣彰化縣和美鎮嘉寶里</td>\n",
       "      <td>NaN</td>\n",
       "      <td>{'location': {'lat': 24.1281804, 'lng': 120.52...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>8c8d7a90016df1a946ea22a17384c22199b7e18a</td>\n",
       "      <td>NaN</td>\n",
       "      <td>鼎盛寵物用品有限公司</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '4GHC+7F Taichung City Metro...</td>\n",
       "      <td>3.0</td>\n",
       "      <td>CmRSAAAAFu8tDRtUeMzYiHVZ6r9muD5sm6kpz52pVbfzL7...</td>\n",
       "      <td>[{'author_name': '林允國', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=10523699125940615350</td>\n",
       "      <td>480</td>\n",
       "      <td>和美鎮嘉寶里</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>24</th>\n",
       "      <td>[{'long_name': '21', 'short_name': '21', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;700&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>700台灣台南市中西區湖美一街26巷21號</td>\n",
       "      <td>06 250 1816</td>\n",
       "      <td>{'location': {'lat': 23.000302, 'lng': 120.181...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>928e772b3ed6d42b0c80a5afebc95770be0b7980</td>\n",
       "      <td>+886 6 250 1816</td>\n",
       "      <td>狗狗之家-寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '252J+4Q 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>3.5</td>\n",
       "      <td>CmRRAAAAbhV8ni5WJxWBxd7IAJmMP9BavpcbX5JyeeFnBd...</td>\n",
       "      <td>[{'author_name': '韋樺盧', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3532661590925106519</td>\n",
       "      <td>480</td>\n",
       "      <td>中西區湖美一街26巷21號</td>\n",
       "      <td>http://tw.user.bid.yahoo.com/tw/booth/gogohous...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>25</th>\n",
       "      <td>[{'long_name': '730', 'short_name': '730', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;408&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>408台灣台中市南屯區向心南路730號</td>\n",
       "      <td>04 2475 1087</td>\n",
       "      <td>{'location': {'lat': 24.13176899999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e69cf445e3a279237ddb246d4e1f39a8cd1b69ff</td>\n",
       "      <td>+886 4 2475 1087</td>\n",
       "      <td>愛樂寵物天地</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '4JJV+PJ 台灣台中市北區臺中', 'global...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRRAAAAhd-KyIMJgmxeqT2HMrWnME86wKJVssf34staJY...</td>\n",
       "      <td>[{'author_name': 'Andy Chen', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=315662633790840874</td>\n",
       "      <td>480</td>\n",
       "      <td>南屯區向心南路730號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>26</th>\n",
       "      <td>[{'long_name': '16-3', 'short_name': '16-3', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;709&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>709台灣台南市安南區安中路一段130巷16-3號</td>\n",
       "      <td>0912 010 135</td>\n",
       "      <td>{'location': {'lat': 23.036168, 'lng': 120.208...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e9b330c162f04d7b2015261885eefb68d9d0682e</td>\n",
       "      <td>+886 912 010 135</td>\n",
       "      <td>貓咪船長寵物旅館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '26P5+FH 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.3</td>\n",
       "      <td>CmRRAAAAQnjQBAYlcJjh7sLJch4o9ypzx8e5P-tJfVn79s...</td>\n",
       "      <td>[{'author_name': 'wu jh', 'author_url': 'https...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=1728135886817834917</td>\n",
       "      <td>480</td>\n",
       "      <td>安南區安中路一段130巷16-3號</td>\n",
       "      <td>https://www.facebook.com/cathome0912010135/tim...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>27</th>\n",
       "      <td>[{'long_name': '8', 'short_name': '8', 'types'...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市香山區經國路三段8號</td>\n",
       "      <td>03 539 8666</td>\n",
       "      <td>{'location': {'lat': 24.8002503, 'lng': 120.95...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>ca57020a9b5d8ec92b4922e805ababad7864257f</td>\n",
       "      <td>+886 3 539 8666</td>\n",
       "      <td>魚中魚</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'RX23+4F 台灣新竹市東區新竹', 'global...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRRAAAAWhT1yaO-zzUPbmW1UfKgPWTyaSNvJ74mt3os2Q...</td>\n",
       "      <td>[{'author_name': 'Peter Huang', 'author_url': ...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=2116242952969502225</td>\n",
       "      <td>480</td>\n",
       "      <td>香山區經國路三段8號</td>\n",
       "      <td>http://www.petsmall.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>28</th>\n",
       "      <td>[{'long_name': '65', 'short_name': '65', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;260&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>260台灣宜蘭縣宜蘭市和睦路65號</td>\n",
       "      <td>03 932 1795</td>\n",
       "      <td>{'location': {'lat': 24.75658469999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>beadda82fb5d80e0031589e0ec5a591a5a4117f4</td>\n",
       "      <td>+886 3 932 1795</td>\n",
       "      <td>東門寵物生活館052</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'QQ44+JW 台灣宜蘭縣宜蘭市宜蘭', 'globa...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRSAAAAmIgUBA9d8V0fJy3Au5vSTPhH-RRwoJI72WU6On...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=11476705576202181724</td>\n",
       "      <td>480</td>\n",
       "      <td>宜蘭市和睦路65號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29</th>\n",
       "      <td>[{'long_name': '165', 'short_name': '165', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;238&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>238台灣新北市樹林區大安路165號</td>\n",
       "      <td>02 2685 2123</td>\n",
       "      <td>{'location': {'lat': 24.9965019, 'lng': 121.42...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>60ec73140b382364c3a5345205091c00ce6efa6d</td>\n",
       "      <td>+886 2 2685 2123</td>\n",
       "      <td>樹林123寵物超市</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'XCWC+JH 台灣台北', 'global_code...</td>\n",
       "      <td>4.5</td>\n",
       "      <td>CmRRAAAAhTqeWWeb_1AKu7ll9hivyFq3rb_mdaej_x8N3g...</td>\n",
       "      <td>[{'author_name': 'Jason Rd.', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[supermarket, grocery_or_supermarket, pet_stor...</td>\n",
       "      <td>https://maps.google.com/?cid=3455755476502695035</td>\n",
       "      <td>480</td>\n",
       "      <td>樹林區大安路165號</td>\n",
       "      <td>https://m.facebook.com/123Pets/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>...</th>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>876</th>\n",
       "      <td>[{'long_name': '新豐鄉', 'short_name': '新豐鄉', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;304&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>304台灣新竹縣新豐鄉新興路767巷31號</td>\n",
       "      <td>0982 161 323</td>\n",
       "      <td>{'location': {'lat': 24.883475, 'lng': 121.010...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>b7bb2e1e79f17d65d2f38abdfeefa9884166cce7</td>\n",
       "      <td>+886 982 161 323</td>\n",
       "      <td>Fun Life飛萊寵物旅館&amp;寵物教育訓練</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'V2M6+92 Hsinchu City Metrop...</td>\n",
       "      <td>4.8</td>\n",
       "      <td>CmRSAAAASNCNJe2gYmInWxxT_frLHlU5N6kx1OyUH118Im...</td>\n",
       "      <td>[{'author_name': 'Florina macmay', 'author_url...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=14738889575176944089</td>\n",
       "      <td>480</td>\n",
       "      <td>新豐鄉新興路767巷31號</td>\n",
       "      <td>http://fayechen.wix.com/funlife</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>877</th>\n",
       "      <td>[{'long_name': '三峽區', 'short_name': '三峽區', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;237&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>237台灣新北市三峽區大勇路18-2號</td>\n",
       "      <td>02 2673 5677</td>\n",
       "      <td>{'location': {'lat': 24.93795, 'lng': 121.3669...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>14632470ba578813817ff462b35d92fc3b15e6bd</td>\n",
       "      <td>+886 2 2673 5677</td>\n",
       "      <td>艾寶寵物美容館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'W9Q8+5Q 台灣台北', 'global_code...</td>\n",
       "      <td>3.7</td>\n",
       "      <td>CmRRAAAA6hNkmzf2RQ6CWD-Z8r1frz6wdhP2asyGX9ulnb...</td>\n",
       "      <td>[{'author_name': 'Enny Chen', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=4641181757489819191</td>\n",
       "      <td>480</td>\n",
       "      <td>三峽區大勇路18-2號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>878</th>\n",
       "      <td>[{'long_name': '马公市', 'short_name': '马公市', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖县马公市澎湖縣馬公市西文里92-1號</td>\n",
       "      <td>06 921 8908</td>\n",
       "      <td>{'location': {'lat': 23.5666267, 'lng': 119.58...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>858ef8ec111403c1315bc91dadbc8cdfebc945ed</td>\n",
       "      <td>+886 6 921 8908</td>\n",
       "      <td>極深水族館-創始店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'HH8P+M5 台灣澎湖縣馬公市馬公', 'globa...</td>\n",
       "      <td>4.6</td>\n",
       "      <td>CmRSAAAAAqrjI6ZodluMgDyqft-XH7X0xTFt150Ap7QPld...</td>\n",
       "      <td>[{'author_name': '陳詩潔', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9416242555800848939</td>\n",
       "      <td>480</td>\n",
       "      <td>澎湖縣馬公市西文里92-1號, 馬公市</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>879</th>\n",
       "      <td>[{'long_name': '344號', 'short_name': '344號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;700&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>700台灣台南市中西區西門路二段344號</td>\n",
       "      <td>06 221 5067</td>\n",
       "      <td>{'location': {'lat': 22.997943, 'lng': 120.200...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>29f05d0507489cc3de944a82fa2f4b1ad14bd1f2</td>\n",
       "      <td>+886 6 221 5067</td>\n",
       "      <td>貓科動物寵物店</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'X6X2+56 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRRAAAAioY_Vqo3-Tw_H1_9yubZXtlgRYr5Gp09G7JgRD...</td>\n",
       "      <td>[{'author_name': 'Wei Lin', 'author_url': 'htt...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=942224157809692400</td>\n",
       "      <td>480</td>\n",
       "      <td>中西區西門路二段344號</td>\n",
       "      <td>https://www.facebook.com/catsfamily1997/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>880</th>\n",
       "      <td>[{'long_name': '西區', 'short_name': '西區', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;600&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>600台灣嘉義市西區仁愛路168之2號</td>\n",
       "      <td>05 236 1286</td>\n",
       "      <td>{'location': {'lat': 23.467814, 'lng': 120.443...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>654703e9f38b246d55699153cf7fda31e9d6de3f</td>\n",
       "      <td>+886 5 236 1286</td>\n",
       "      <td>汪旺來寵物生活館-嘉義仁愛店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'FC9V+46 台灣嘉義市西區嘉義', 'global...</td>\n",
       "      <td>4.6</td>\n",
       "      <td>CmRRAAAA_LVhyBfJ9TfoLwJolGpHaLvOIPsjWpRcpwkGcK...</td>\n",
       "      <td>[{'author_name': '古偲瑀', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3504680624357325725</td>\n",
       "      <td>480</td>\n",
       "      <td>西區仁愛路168之2號</td>\n",
       "      <td>https://www.facebook.com/wanwanlaichiayi/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>881</th>\n",
       "      <td>[{'long_name': '澎湖縣', 'short_name': '澎湖縣', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖縣馬公市馬公 市東 衛 里 19 鄰 5 之 5 號</td>\n",
       "      <td>06 921 0210</td>\n",
       "      <td>{'location': {'lat': 23.57031719999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f9a087148dc2c26f4e98bb38011b0f1a3f8d8fac</td>\n",
       "      <td>+886 6 921 0210</td>\n",
       "      <td>月牙灣寵物民宿 yue ya wan Homestay(原魯道夫)</td>\n",
       "      <td>{'open_now': True, 'periods': [{'open': {'day'...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'HHCX+4G 台灣澎湖縣馬公市馬公', 'globa...</td>\n",
       "      <td>3.8</td>\n",
       "      <td>CmRRAAAAiPoyUMKALIUYF1TD41VCi6CG-lerg4QvOf-j8N...</td>\n",
       "      <td>[{'author_name': 'Rogel', 'author_url': 'https...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[lodging, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=4225604857922096844</td>\n",
       "      <td>480</td>\n",
       "      <td>馬公 市東 衛 里 19 鄰 5 之 5 號</td>\n",
       "      <td>https://zh-tw.facebook.com/%E6%BE%8E%E6%B9%96%...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>882</th>\n",
       "      <td>[{'long_name': '東區', 'short_name': '東區', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市東區博愛街45號</td>\n",
       "      <td>03 571 7571</td>\n",
       "      <td>{'location': {'lat': 24.797515, 'lng': 120.985...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>bc8d4e0604ac217da6b3499cf37dde38ac8778f8</td>\n",
       "      <td>+886 3 571 7571</td>\n",
       "      <td>灰熊麻吉寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'QXXP+22 台灣新竹市東區新竹', 'global...</td>\n",
       "      <td>4.4</td>\n",
       "      <td>CmRRAAAAD8DNsv6TULTYh7obWdR6r9AgqFnN3_EQu7gtcN...</td>\n",
       "      <td>[{'author_name': 'Errol Manuel', 'author_url':...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=254761946176084393</td>\n",
       "      <td>480</td>\n",
       "      <td>東區博愛街45號</td>\n",
       "      <td>https://www.facebook.com/MaJi.5717571</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>883</th>\n",
       "      <td>[{'long_name': '90', 'short_name': '90', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市中興路二段90號</td>\n",
       "      <td>0963 232 023</td>\n",
       "      <td>{'location': {'lat': 22.7668593, 'lng': 121.13...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>8c6a61b2122e0570615a9db6ca5c88969c583899</td>\n",
       "      <td>+886 963 232 023</td>\n",
       "      <td>台東民宿-小貓兩三隻 (寵物友善民宿)</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'Q48J+P7 台灣台東縣台東市臺東', 'globa...</td>\n",
       "      <td>4.6</td>\n",
       "      <td>CmRRAAAAkHdESQb3xDq12w_wJelaB-bVAyT86js5vViatF...</td>\n",
       "      <td>[{'author_name': 'Bambi Huang', 'author_url': ...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[lodging, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=6884899848854975407</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市中興路二段90號</td>\n",
       "      <td>http://www.kittensbnb.com/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>884</th>\n",
       "      <td>[{'long_name': '190號', 'short_name': '190號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;704&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>704台灣台南市北區育成路190號</td>\n",
       "      <td>06 252 5416</td>\n",
       "      <td>{'location': {'lat': 23.0182951, 'lng': 120.20...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>cbcdc10e80d07f98748919a43cb9376721d61e65</td>\n",
       "      <td>+886 6 252 5416</td>\n",
       "      <td>花草寵物生活坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '2694+8Q 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.5</td>\n",
       "      <td>CmRSAAAAKDg716k0b94qcwHX1lY4au6FTc3mvSKXrQ0SXg...</td>\n",
       "      <td>[{'author_name': 'Lin Stony', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=13014010643447880337</td>\n",
       "      <td>480</td>\n",
       "      <td>北區育成路190號</td>\n",
       "      <td>https://www.facebook.com/fgpets</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>885</th>\n",
       "      <td>[{'long_name': '13號', 'short_name': '13號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;320&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>320台灣桃園市中壢區青埔七街13號</td>\n",
       "      <td>0955 635 726</td>\n",
       "      <td>{'location': {'lat': 25.004315, 'lng': 121.222...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f8fec2c38467d9f12a9729444a9ce3441f331497</td>\n",
       "      <td>+886 955 635 726</td>\n",
       "      <td>非寵不可寵物美容工作室</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '263F+P4 台灣桃園市桃園區桃園', 'globa...</td>\n",
       "      <td>3.7</td>\n",
       "      <td>CmRSAAAA6farRcYM90Fh72TQuvk23OAVgvPekKej_owjnp...</td>\n",
       "      <td>[{'author_name': 'polo wang', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=16837967860213342219</td>\n",
       "      <td>480</td>\n",
       "      <td>中壢區青埔七街13號</td>\n",
       "      <td>http://spice0519.pixnet.net/blog</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>886</th>\n",
       "      <td>[{'long_name': '499', 'short_name': '499', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;708&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>708台灣台南市安平區慶平路499號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>{'location': {'lat': 22.9970289, 'lng': 120.17...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>82c4a453ec08dadd7047ffe3bd724beb6704b7d3</td>\n",
       "      <td>NaN</td>\n",
       "      <td>Pet's Whisper 寵物私語</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'X5WF+R4 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRSAAAASB6Olmbf2pe6bBjYehaegFxK0tY0HU8-caNXHo...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9228201052167496809</td>\n",
       "      <td>480</td>\n",
       "      <td>安平區慶平路499號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>887</th>\n",
       "      <td>[{'long_name': '安南區', 'short_name': '安南區', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;709&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>709台灣台南市安南區海環街16號</td>\n",
       "      <td>06 247 2503</td>\n",
       "      <td>{'location': {'lat': 23.039425, 'lng': 120.187...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>14f0a59f1cf42a310e27991933ef3d248abcbd38</td>\n",
       "      <td>+886 6 247 2503</td>\n",
       "      <td>酷豆格寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '25QP+QV 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRSAAAAzax2yT3Sz3qAY1XJV8alay5FDc2TaeJXfiHE_P...</td>\n",
       "      <td>[{'author_name': '陳姿蓉', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=15128870524158334372</td>\n",
       "      <td>480</td>\n",
       "      <td>安南區海環街16號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>888</th>\n",
       "      <td>[{'long_name': '222號', 'short_name': '222號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;26541&lt;/span&gt;&lt;span cl...</td>\n",
       "      <td>26541台灣宜蘭縣羅東鎮興東路222號</td>\n",
       "      <td>03 957 2996</td>\n",
       "      <td>{'location': {'lat': 24.6823389, 'lng': 121.76...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>a7ca9719398da45ba0825632e192304b94216f52</td>\n",
       "      <td>+886 3 957 2996</td>\n",
       "      <td>寵愛寵物美容生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'MQJ9+WX 台灣宜蘭縣羅東鎮羅東', 'globa...</td>\n",
       "      <td>4.0</td>\n",
       "      <td>CmRRAAAAD1jMtR1am1ymBCi3DdMP0wawieMz1DBv0GysdP...</td>\n",
       "      <td>[{'author_name': 'Shyuan', 'author_url': 'http...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=5277966298459981110</td>\n",
       "      <td>480</td>\n",
       "      <td>羅東鎮興東路222號</td>\n",
       "      <td>https://www.facebook.com/petlove265?ref=hl</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>889</th>\n",
       "      <td>[{'long_name': '362', 'short_name': '362', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;428&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>428台灣台中市大雅區民生路一段362號</td>\n",
       "      <td>04 2567 4228</td>\n",
       "      <td>{'location': {'lat': 24.2290866, 'lng': 120.65...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>fd749f7807e998ea02cc68ad49629adbc5a29d9c</td>\n",
       "      <td>+886 4 2567 4228</td>\n",
       "      <td>蘋果寵物美容坊</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '6MH3+JH 台灣台中市北區臺中', 'global...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRRAAAAOixoxnmJsmRwKigi04-LnfO2CKYNMpdDmSNMgp...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3871598579868214094</td>\n",
       "      <td>480</td>\n",
       "      <td>大雅區民生路一段362號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>890</th>\n",
       "      <td>[{'long_name': '69', 'short_name': '69', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;500&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>500台灣彰化縣彰化市三民路69號</td>\n",
       "      <td>04 725 2222</td>\n",
       "      <td>{'location': {'lat': 24.083688, 'lng': 120.540...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>b04f2e46ef5c0bb30835ffcbb08b6c77c32e2998</td>\n",
       "      <td>+886 4 725 2222</td>\n",
       "      <td>狗仔隊寵物用品有限公司三民分公司</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '3GMR+F4 台灣彰化縣溪湖鎮彰化', 'globa...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>CmRRAAAAAkWTCbGfUXw3BwK_XtHjdMn0wMlO9WWp424ayi...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=2410805487551538334</td>\n",
       "      <td>480</td>\n",
       "      <td>彰化市三民路69號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>891</th>\n",
       "      <td>[{'long_name': '24', 'short_name': '24', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;802&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>802台灣高雄市苓雅區三多三路24號</td>\n",
       "      <td>07 333 7165</td>\n",
       "      <td>{'location': {'lat': 22.617082, 'lng': 120.313...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>72e90652617ae11af2409db0d760fc8fcb70b15d</td>\n",
       "      <td>+886 7 333 7165</td>\n",
       "      <td>Yoyo Dream Pet SPA 有夢想寵物坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'J887+R8 台灣高雄市鼓山區高雄', 'globa...</td>\n",
       "      <td>4.8</td>\n",
       "      <td>CmRRAAAA-f0OZ0XWOFiXcOC_zq_2xMBkLxIhElJguXsIO5...</td>\n",
       "      <td>[{'author_name': '陳朱朱', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, spa, store, point_of_interest, est...</td>\n",
       "      <td>https://maps.google.com/?cid=1587446600781086158</td>\n",
       "      <td>480</td>\n",
       "      <td>苓雅區三多三路24號</td>\n",
       "      <td>http://www.facebook.com/GogoYoyoDream</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>892</th>\n",
       "      <td>[{'long_name': '93號', 'short_name': '93號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;807&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>807台灣高雄市三民區自立一路93號</td>\n",
       "      <td>07 286 2445</td>\n",
       "      <td>{'location': {'lat': 22.6368711, 'lng': 120.29...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>861359c330ae8bd6537ead18e6d373fcb8a992c3</td>\n",
       "      <td>+886 7 286 2445</td>\n",
       "      <td>淘氣族寵物美容</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'J7PW+PM 台灣高雄市鼓山區高雄', 'globa...</td>\n",
       "      <td>4.7</td>\n",
       "      <td>CmRRAAAAq5cqnUGwdtFd3Yo19sZKBxLCi8BJxx3UkUg0tS...</td>\n",
       "      <td>[{'author_name': '陳峻青', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=8811156178929768453</td>\n",
       "      <td>480</td>\n",
       "      <td>三民區自立一路93號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>893</th>\n",
       "      <td>[{'long_name': '308', 'short_name': '308', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;600&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>600台灣嘉義市西區長榮街308號</td>\n",
       "      <td>05 223 1160</td>\n",
       "      <td>{'location': {'lat': 23.4826903, 'lng': 120.44...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>c179a697532d69407df443f80f11e93f29bd67f5</td>\n",
       "      <td>+886 5 223 1160</td>\n",
       "      <td>狗殿寵物餐廳</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'FCMW+3G 台灣嘉義市西區嘉義', 'global...</td>\n",
       "      <td>4.3</td>\n",
       "      <td>CmRRAAAADB9VWNJd68AOAmBBs-M6xQ9JrCKVzIx-thfZ4c...</td>\n",
       "      <td>[{'author_name': 'walker alan', 'author_url': ...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[restaurant, food, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3012751480408182719</td>\n",
       "      <td>480</td>\n",
       "      <td>西區長榮街308號</td>\n",
       "      <td>https://www.facebook.com/dogs.palace.Chiayi/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>894</th>\n",
       "      <td>[{'long_name': '97號', 'short_name': '97號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;648&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>648台灣雲林縣西螺鎮中山路97號</td>\n",
       "      <td>05 586 4776</td>\n",
       "      <td>{'location': {'lat': 23.79992, 'lng': 120.4621...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>9b20e40605ad5a5e37e467b469370d9165f648f0</td>\n",
       "      <td>+886 5 586 4776</td>\n",
       "      <td>潮流水族館</td>\n",
       "      <td>{'open_now': True, 'periods': [{'open': {'day'...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'QFX6+XR 台灣雲林縣西螺鎮西螺', 'globa...</td>\n",
       "      <td>3.7</td>\n",
       "      <td>CmRRAAAAjxKrvh_aECBVc-VU7bb8lea2zJr_B7IjINKAug...</td>\n",
       "      <td>[{'author_name': '廖芬郁', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=7124156328865654886</td>\n",
       "      <td>480</td>\n",
       "      <td>西螺鎮中山路97號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>895</th>\n",
       "      <td>[{'long_name': '6-6', 'short_name': '6-6', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;971&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>971台灣花蓮縣新城鄉佳林村佳林6-6號</td>\n",
       "      <td>0905 631 152</td>\n",
       "      <td>{'location': {'lat': 24.0147788, 'lng': 121.60...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f9e842c03b20c92f4ff2843bd75a0c6cb7a18143</td>\n",
       "      <td>+886 905 631 152</td>\n",
       "      <td>采雲間寵物</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '2J73+W2 Hualein County Metr...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRRAAAAMgO2iHKSRXKA5QbCeBkiXr4JdxgZH0TGN0Bwwt...</td>\n",
       "      <td>[{'author_name': '張豆花', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=832846633411226941</td>\n",
       "      <td>480</td>\n",
       "      <td>新城鄉佳林村佳林6-6號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>896</th>\n",
       "      <td>[{'long_name': '29', 'short_name': '29', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;203&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>203台灣基隆市中山區成功二路29號</td>\n",
       "      <td>02 2428 2838</td>\n",
       "      <td>{'location': {'lat': 25.129394, 'lng': 121.736...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>fe793c69bd3073f2acc16481b0f94bf51199be40</td>\n",
       "      <td>+886 2 2428 2838</td>\n",
       "      <td>喬森寵物美容坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '4PHP+QM 台灣基隆市仁愛區基隆', 'globa...</td>\n",
       "      <td>3.5</td>\n",
       "      <td>CmRRAAAA9YVltkgv0XChUoB26h73rDYcAlfado8naU371-...</td>\n",
       "      <td>[{'author_name': 'Jer-Luen H', 'author_url': '...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=137676516015644987</td>\n",
       "      <td>480</td>\n",
       "      <td>中山區成功二路29號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>897</th>\n",
       "      <td>[{'long_name': '73', 'short_name': '73', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖縣馬公市中興路73號</td>\n",
       "      <td>06 926 2270</td>\n",
       "      <td>{'location': {'lat': 23.56711989999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e5b16afe6f8d3ab39249f76865858489d8c247e8</td>\n",
       "      <td>+886 6 926 2270</td>\n",
       "      <td>福牡蠣屋</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'HH87+RR 台灣澎湖縣馬公市馬公', 'globa...</td>\n",
       "      <td>3.9</td>\n",
       "      <td>CmRRAAAAkkQvTiT_bUpjxM-TXLhI3-nADUm62045Aj3KCZ...</td>\n",
       "      <td>[{'author_name': 'Cherry Wei', 'author_url': '...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[restaurant, food, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=4642647903956936219</td>\n",
       "      <td>480</td>\n",
       "      <td>馬公市中興路73號</td>\n",
       "      <td>http://www.blessedoyster.com.tw/restaurant/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>898</th>\n",
       "      <td>[{'long_name': '472', 'short_name': '472', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;10491&lt;/span&gt;&lt;span cl...</td>\n",
       "      <td>10491台灣中山區北安路472號</td>\n",
       "      <td>02 2533 0209</td>\n",
       "      <td>{'location': {'lat': 25.079596, 'lng': 121.544...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>deaa5500b2a783f5ff1b5b6b3ea558c09a86b3af</td>\n",
       "      <td>+886 2 2533 0209</td>\n",
       "      <td>啵美寵物生活館大直店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '3GHV+RX 台灣台北', 'global_code...</td>\n",
       "      <td>4.6</td>\n",
       "      <td>CmRRAAAAZHZ78Iwbxd0CC_bm1U-M-GQxGrLCHJpBhrIpL5...</td>\n",
       "      <td>[{'author_name': '美奈', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=2742845385870630781</td>\n",
       "      <td>480</td>\n",
       "      <td>中山區北安路472號</td>\n",
       "      <td>https://www.facebook.com/pomaipets/info/?tab=o...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>899</th>\n",
       "      <td>[{'long_name': '325', 'short_name': '325', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市中華路二段325號</td>\n",
       "      <td>08 934 6366</td>\n",
       "      <td>{'location': {'lat': 22.7431363, 'lng': 121.13...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>5ebf98e114976305d6bf2a23505e1e5cbb0a4e38</td>\n",
       "      <td>+886 8 934 6366</td>\n",
       "      <td>愛犬獸醫院</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'P4VP+79 台灣台東縣台東市臺東', 'globa...</td>\n",
       "      <td>3.7</td>\n",
       "      <td>CmRSAAAAWLuGmFNucQXYgfqQ4F3UtUSfYyG84_lGpONml4...</td>\n",
       "      <td>[{'author_name': '標泰鴻', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[veterinary_care, point_of_interest, establish...</td>\n",
       "      <td>https://maps.google.com/?cid=17026747788241207451</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市中華路二段325號</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>900</th>\n",
       "      <td>[{'long_name': '39', 'short_name': '39', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;920&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>920台灣屏東縣潮州鎮玉春街39號台灣 號</td>\n",
       "      <td>08 780 2882</td>\n",
       "      <td>{'location': {'lat': 22.5530743, 'lng': 120.54...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>74ed8046e0f6d268e94b0592c5268a394854dd0f</td>\n",
       "      <td>+886 8 780 2882</td>\n",
       "      <td>可愛的熊寵物美容</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'HG3W+6W 台灣屏東縣潮州鎮潮州', 'globa...</td>\n",
       "      <td>5.0</td>\n",
       "      <td>CmRSAAAAdub2GIv2hA4v_ripGAX3q_aUCpL79sOeIymcw8...</td>\n",
       "      <td>[{'author_name': '李阿貴', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=12645890109023332610</td>\n",
       "      <td>480</td>\n",
       "      <td>台灣 號, No. 39, 玉春街, 潮州鎮</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>901</th>\n",
       "      <td>[{'long_name': '23號', 'short_name': '23號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;701&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>701台灣台南市東區衛國街114巷23號</td>\n",
       "      <td>06 236 8318</td>\n",
       "      <td>{'location': {'lat': 22.9877875, 'lng': 120.22...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>34a489c71200890a40b4013023f800ff3cfe5134</td>\n",
       "      <td>+886 6 236 8318</td>\n",
       "      <td>小可愛寵物坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'X6QG+42 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.8</td>\n",
       "      <td>CmRRAAAApBeirMtyvFBXroLNF5isy-fD-SUaJyKFBgrsCx...</td>\n",
       "      <td>[{'author_name': '千千', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=2067941117032913993</td>\n",
       "      <td>480</td>\n",
       "      <td>東區衛國街114巷23號</td>\n",
       "      <td>http://xiaokeai.looker.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>902</th>\n",
       "      <td>[{'long_name': '430', 'short_name': '430', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;710&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>710台灣台南市永康區中華路430號</td>\n",
       "      <td>06 302 3005</td>\n",
       "      <td>{'location': {'lat': 23.010452, 'lng': 120.232...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>55282f12623cdd496b3cb2fa58a155958d38deed</td>\n",
       "      <td>+886 6 302 3005</td>\n",
       "      <td>寵物公園(永康店)</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '266M+55 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>4.3</td>\n",
       "      <td>CmRSAAAA-9E6cMDVCxg_n4dW03zlRe0JrGy6Ne8mfLbkkW...</td>\n",
       "      <td>[{'author_name': '林傢伙', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=16352373236115726763</td>\n",
       "      <td>480</td>\n",
       "      <td>永康區中華路430號</td>\n",
       "      <td>http://www.wonderpet.asia/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>903</th>\n",
       "      <td>[{'long_name': '58', 'short_name': '58', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;709&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>709台灣台南市安南區海佃路二段58號</td>\n",
       "      <td>06 245 5666</td>\n",
       "      <td>{'location': {'lat': 23.0309244, 'lng': 120.19...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e2b16f5444eeb63f686268dacb90641ee7911c88</td>\n",
       "      <td>+886 6 245 5666</td>\n",
       "      <td>奧斯卡寵物連鎖量販</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': '25JR+95 台灣台南市東區臺南', 'global...</td>\n",
       "      <td>3.9</td>\n",
       "      <td>CmRSAAAAMe4hJrqlmu1qDbiN01CEX5bQe9CnZMq3Pb-kz-...</td>\n",
       "      <td>[{'author_name': '張宜媚', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=18078702121754777018</td>\n",
       "      <td>480</td>\n",
       "      <td>安南區海佃路二段58號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>904</th>\n",
       "      <td>[{'long_name': '156號', 'short_name': '156號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;302&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>302台灣新竹縣竹北市自強北路156號</td>\n",
       "      <td>03 658 5520</td>\n",
       "      <td>{'location': {'lat': 24.8082453, 'lng': 121.02...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>5e9f96ce4c47db1ffc0e5bfc7527be815a7acb53</td>\n",
       "      <td>+886 3 658 5520</td>\n",
       "      <td>躲貓貓寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'R25G+72 台灣新竹縣竹北市竹北', 'globa...</td>\n",
       "      <td>4.8</td>\n",
       "      <td>CmRRAAAAhyiqIMeBtt7ZQXYx6S3zC9xdOxeqrTmrAER2XK...</td>\n",
       "      <td>[{'author_name': '蔡斯云', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=6306978859124310260</td>\n",
       "      <td>480</td>\n",
       "      <td>竹北市自強北路156號</td>\n",
       "      <td>https://www.facebook.com/duomaomao520/?fref=ts</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>905</th>\n",
       "      <td>[{'long_name': '四維路一段583巷', 'short_name': '四維路...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;614&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>614台灣嘉義縣朴子市四維路一段583巷</td>\n",
       "      <td>05 370 8149</td>\n",
       "      <td>{'location': {'lat': 23.4631768, 'lng': 120.22...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>6a4d0d897ae0aa7c90f7e55c277008915e90dc22</td>\n",
       "      <td>+886 5 370 8149</td>\n",
       "      <td>仁愛動物醫院</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>{'compound_code': 'F67C+7C 台灣嘉義縣東石鄉東石', 'globa...</td>\n",
       "      <td>3.7</td>\n",
       "      <td>CmRSAAAAVPgwNnerbwPPpVr6ObU28HoIF9niqzK00uQ73G...</td>\n",
       "      <td>[{'author_name': '台中昌平', 'author_url': 'https:...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[veterinary_care, point_of_interest, establish...</td>\n",
       "      <td>https://maps.google.com/?cid=9440194852522683626</td>\n",
       "      <td>480</td>\n",
       "      <td>朴子市四維路一段583巷</td>\n",
       "      <td>NaN</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "<p>906 rows × 22 columns</p>\n",
       "</div>"
      ],
      "text/plain": [
       "                                    address_components  \\\n",
       "0    [{'long_name': '36之2號', 'short_name': '36之2號',...   \n",
       "1    [{'long_name': '132', 'short_name': '132', 'ty...   \n",
       "2    [{'long_name': '2', 'short_name': '2', 'types'...   \n",
       "3    [{'long_name': '89', 'short_name': '89', 'type...   \n",
       "4    [{'long_name': '353', 'short_name': '353', 'ty...   \n",
       "5    [{'long_name': '竹北市', 'short_name': '竹北市', 'ty...   \n",
       "6    [{'long_name': '178', 'short_name': '178', 'ty...   \n",
       "7    [{'long_name': '台東縣', 'short_name': '台東縣', 'ty...   \n",
       "8    [{'long_name': '269', 'short_name': '269', 'ty...   \n",
       "9    [{'long_name': '144', 'short_name': '144', 'ty...   \n",
       "10   [{'long_name': '北埔村', 'short_name': '北埔村', 'ty...   \n",
       "11   [{'long_name': '台灣', 'short_name': 'TW', 'type...   \n",
       "12   [{'long_name': '217', 'short_name': '217', 'ty...   \n",
       "13   [{'long_name': '503號', 'short_name': '503號', '...   \n",
       "14   [{'long_name': '224-226', 'short_name': '224-2...   \n",
       "15   [{'long_name': '491', 'short_name': '491', 'ty...   \n",
       "16   [{'long_name': '786', 'short_name': '786', 'ty...   \n",
       "17   [{'long_name': '177號', 'short_name': '177號', '...   \n",
       "18   [{'long_name': '193', 'short_name': '193', 'ty...   \n",
       "19   [{'long_name': '25', 'short_name': '25', 'type...   \n",
       "20   [{'long_name': '211', 'short_name': '211', 'ty...   \n",
       "21   [{'long_name': '62', 'short_name': '62', 'type...   \n",
       "22   [{'long_name': '8-10號', 'short_name': '8-10號',...   \n",
       "23   [{'long_name': '嘉寶里', 'short_name': '嘉寶里', 'ty...   \n",
       "24   [{'long_name': '21', 'short_name': '21', 'type...   \n",
       "25   [{'long_name': '730', 'short_name': '730', 'ty...   \n",
       "26   [{'long_name': '16-3', 'short_name': '16-3', '...   \n",
       "27   [{'long_name': '8', 'short_name': '8', 'types'...   \n",
       "28   [{'long_name': '65', 'short_name': '65', 'type...   \n",
       "29   [{'long_name': '165', 'short_name': '165', 'ty...   \n",
       "..                                                 ...   \n",
       "876  [{'long_name': '新豐鄉', 'short_name': '新豐鄉', 'ty...   \n",
       "877  [{'long_name': '三峽區', 'short_name': '三峽區', 'ty...   \n",
       "878  [{'long_name': '马公市', 'short_name': '马公市', 'ty...   \n",
       "879  [{'long_name': '344號', 'short_name': '344號', '...   \n",
       "880  [{'long_name': '西區', 'short_name': '西區', 'type...   \n",
       "881  [{'long_name': '澎湖縣', 'short_name': '澎湖縣', 'ty...   \n",
       "882  [{'long_name': '東區', 'short_name': '東區', 'type...   \n",
       "883  [{'long_name': '90', 'short_name': '90', 'type...   \n",
       "884  [{'long_name': '190號', 'short_name': '190號', '...   \n",
       "885  [{'long_name': '13號', 'short_name': '13號', 'ty...   \n",
       "886  [{'long_name': '499', 'short_name': '499', 'ty...   \n",
       "887  [{'long_name': '安南區', 'short_name': '安南區', 'ty...   \n",
       "888  [{'long_name': '222號', 'short_name': '222號', '...   \n",
       "889  [{'long_name': '362', 'short_name': '362', 'ty...   \n",
       "890  [{'long_name': '69', 'short_name': '69', 'type...   \n",
       "891  [{'long_name': '24', 'short_name': '24', 'type...   \n",
       "892  [{'long_name': '93號', 'short_name': '93號', 'ty...   \n",
       "893  [{'long_name': '308', 'short_name': '308', 'ty...   \n",
       "894  [{'long_name': '97號', 'short_name': '97號', 'ty...   \n",
       "895  [{'long_name': '6-6', 'short_name': '6-6', 'ty...   \n",
       "896  [{'long_name': '29', 'short_name': '29', 'type...   \n",
       "897  [{'long_name': '73', 'short_name': '73', 'type...   \n",
       "898  [{'long_name': '472', 'short_name': '472', 'ty...   \n",
       "899  [{'long_name': '325', 'short_name': '325', 'ty...   \n",
       "900  [{'long_name': '39', 'short_name': '39', 'type...   \n",
       "901  [{'long_name': '23號', 'short_name': '23號', 'ty...   \n",
       "902  [{'long_name': '430', 'short_name': '430', 'ty...   \n",
       "903  [{'long_name': '58', 'short_name': '58', 'type...   \n",
       "904  [{'long_name': '156號', 'short_name': '156號', '...   \n",
       "905  [{'long_name': '四維路一段583巷', 'short_name': '四維路...   \n",
       "\n",
       "                                           adr_address  \\\n",
       "0    <span class=\"postal-code\">238</span><span clas...   \n",
       "1    <span class=\"postal-code\">220</span><span clas...   \n",
       "2    <span class=\"postal-code\">545</span><span clas...   \n",
       "3    <span class=\"postal-code\">260</span><span clas...   \n",
       "4    <span class=\"postal-code\">880</span><span clas...   \n",
       "5    <span class=\"postal-code\">300</span><span clas...   \n",
       "6    <span class=\"postal-code\">712</span><span clas...   \n",
       "7    <span class=\"postal-code\">950</span><span clas...   \n",
       "8    <span class=\"postal-code\">950</span><span clas...   \n",
       "9    號, <span class=\"street-address\">No. 144中山路三段</...   \n",
       "10   <span class=\"postal-code\">971</span><span clas...   \n",
       "11   <span class=\"postal-code\">970</span><span clas...   \n",
       "12   <span class=\"postal-code\">950</span><span clas...   \n",
       "13   <span class=\"postal-code\">260</span><span clas...   \n",
       "14   <span class=\"postal-code\">103</span><span clas...   \n",
       "15   <span class=\"postal-code\">71742</span><span cl...   \n",
       "16   <span class=\"postal-code\">300</span><span clas...   \n",
       "17   <span class=\"postal-code\">300</span><span clas...   \n",
       "18   號, <span class=\"street-address\">No. 193垂楊路</sp...   \n",
       "19   <span class=\"postal-code\">200</span><span clas...   \n",
       "20   <span class=\"postal-code\">920</span><span clas...   \n",
       "21   <span class=\"postal-code\">700</span><span clas...   \n",
       "22   <span class=\"postal-code\">200</span><span clas...   \n",
       "23   <span class=\"postal-code\">508</span><span clas...   \n",
       "24   <span class=\"postal-code\">700</span><span clas...   \n",
       "25   <span class=\"postal-code\">408</span><span clas...   \n",
       "26   <span class=\"postal-code\">709</span><span clas...   \n",
       "27   <span class=\"postal-code\">300</span><span clas...   \n",
       "28   <span class=\"postal-code\">260</span><span clas...   \n",
       "29   <span class=\"postal-code\">238</span><span clas...   \n",
       "..                                                 ...   \n",
       "876  <span class=\"postal-code\">304</span><span clas...   \n",
       "877  <span class=\"postal-code\">237</span><span clas...   \n",
       "878  <span class=\"postal-code\">880</span><span clas...   \n",
       "879  <span class=\"postal-code\">700</span><span clas...   \n",
       "880  <span class=\"postal-code\">600</span><span clas...   \n",
       "881  <span class=\"postal-code\">880</span><span clas...   \n",
       "882  <span class=\"postal-code\">300</span><span clas...   \n",
       "883  <span class=\"postal-code\">950</span><span clas...   \n",
       "884  <span class=\"postal-code\">704</span><span clas...   \n",
       "885  <span class=\"postal-code\">320</span><span clas...   \n",
       "886  <span class=\"postal-code\">708</span><span clas...   \n",
       "887  <span class=\"postal-code\">709</span><span clas...   \n",
       "888  <span class=\"postal-code\">26541</span><span cl...   \n",
       "889  <span class=\"postal-code\">428</span><span clas...   \n",
       "890  <span class=\"postal-code\">500</span><span clas...   \n",
       "891  <span class=\"postal-code\">802</span><span clas...   \n",
       "892  <span class=\"postal-code\">807</span><span clas...   \n",
       "893  <span class=\"postal-code\">600</span><span clas...   \n",
       "894  <span class=\"postal-code\">648</span><span clas...   \n",
       "895  <span class=\"postal-code\">971</span><span clas...   \n",
       "896  <span class=\"postal-code\">203</span><span clas...   \n",
       "897  <span class=\"postal-code\">880</span><span clas...   \n",
       "898  <span class=\"postal-code\">10491</span><span cl...   \n",
       "899  <span class=\"postal-code\">950</span><span clas...   \n",
       "900  <span class=\"postal-code\">920</span><span clas...   \n",
       "901  <span class=\"postal-code\">701</span><span clas...   \n",
       "902  <span class=\"postal-code\">710</span><span clas...   \n",
       "903  <span class=\"postal-code\">709</span><span clas...   \n",
       "904  <span class=\"postal-code\">302</span><span clas...   \n",
       "905  <span class=\"postal-code\">614</span><span clas...   \n",
       "\n",
       "                     formatted_address formatted_phone_number  \\\n",
       "0               238台灣新北市樹林區樹新路34巷36之2號           02 2682 9988   \n",
       "1                   220台灣新北市板橋區中正路132號           02 2965 6585   \n",
       "2               545台灣南投縣埔里鎮南興街2號之 19 號           0978 719 515   \n",
       "3                  260台灣宜蘭縣宜蘭市中山路二段89號            03 935 7600   \n",
       "4                   880台灣澎湖縣馬公市中華路353號            06 926 5590   \n",
       "5                   300台灣新竹縣竹北市中華路226號            03 656 6633   \n",
       "6                  712台灣台南市新化區忠孝路178號號            06 598 7079   \n",
       "7              950台灣台東縣台東市台東市中興路三段280號            08 922 0526   \n",
       "8                   950台灣台東縣台東市新生路269號            08 933 0306   \n",
       "9          號, No. 144中山路三段彰化市彰化縣台灣 500            04 729 6085   \n",
       "10                      971台灣花蓮縣新城鄉北埔村                    NaN   \n",
       "11            970台灣花蓮縣花蓮市花蓮縣花蓮市中華路351號            03 836 1616   \n",
       "12                  950台灣台東縣台東市鐵花路217號            08 933 5008   \n",
       "13                  260台灣宜蘭縣宜蘭市泰山路503號           0905 787 902   \n",
       "14             103台灣台北市大同區民族西路224-226號           02 2585 8887   \n",
       "15                71742台灣台南市仁德區中山路491號            06 270 8339   \n",
       "16                300台灣新竹市東區經國路一段786號號            03 532 2888   \n",
       "17                   300台灣新竹市東區東光路177號            03 561 7899   \n",
       "18            號, No. 193垂楊路東區嘉義市台灣 600            05 216 3535   \n",
       "19                   200台灣基隆市仁愛區忠二路25號           02 2425 3747   \n",
       "20                  920台灣屏東縣潮州鎮延平路211號            08 788 6000   \n",
       "21                 700台灣台南市中西區大同路一段62號           0983 613 997   \n",
       "22                 200台灣基隆市仁愛區愛四路8-10號           02 2427 6055   \n",
       "23                      508台灣彰化縣和美鎮嘉寶里                    NaN   \n",
       "24               700台灣台南市中西區湖美一街26巷21號            06 250 1816   \n",
       "25                 408台灣台中市南屯區向心南路730號           04 2475 1087   \n",
       "26           709台灣台南市安南區安中路一段130巷16-3號           0912 010 135   \n",
       "27                  300台灣新竹市香山區經國路三段8號            03 539 8666   \n",
       "28                   260台灣宜蘭縣宜蘭市和睦路65號            03 932 1795   \n",
       "29                  238台灣新北市樹林區大安路165號           02 2685 2123   \n",
       "..                                 ...                    ...   \n",
       "876              304台灣新竹縣新豐鄉新興路767巷31號           0982 161 323   \n",
       "877                237台灣新北市三峽區大勇路18-2號           02 2673 5677   \n",
       "878          880台灣澎湖县马公市澎湖縣馬公市西文里92-1號            06 921 8908   \n",
       "879               700台灣台南市中西區西門路二段344號            06 221 5067   \n",
       "880                600台灣嘉義市西區仁愛路168之2號            05 236 1286   \n",
       "881  880台灣澎湖縣馬公市馬公 市東 衛 里 19 鄰 5 之 5 號            06 921 0210   \n",
       "882                   300台灣新竹市東區博愛街45號            03 571 7571   \n",
       "883                950台灣台東縣台東市中興路二段90號           0963 232 023   \n",
       "884                  704台灣台南市北區育成路190號            06 252 5416   \n",
       "885                 320台灣桃園市中壢區青埔七街13號           0955 635 726   \n",
       "886                 708台灣台南市安平區慶平路499號                    NaN   \n",
       "887                  709台灣台南市安南區海環街16號            06 247 2503   \n",
       "888               26541台灣宜蘭縣羅東鎮興東路222號            03 957 2996   \n",
       "889               428台灣台中市大雅區民生路一段362號           04 2567 4228   \n",
       "890                  500台灣彰化縣彰化市三民路69號            04 725 2222   \n",
       "891                 802台灣高雄市苓雅區三多三路24號            07 333 7165   \n",
       "892                 807台灣高雄市三民區自立一路93號            07 286 2445   \n",
       "893                  600台灣嘉義市西區長榮街308號            05 223 1160   \n",
       "894                  648台灣雲林縣西螺鎮中山路97號            05 586 4776   \n",
       "895               971台灣花蓮縣新城鄉佳林村佳林6-6號           0905 631 152   \n",
       "896                 203台灣基隆市中山區成功二路29號           02 2428 2838   \n",
       "897                  880台灣澎湖縣馬公市中興路73號            06 926 2270   \n",
       "898                  10491台灣中山區北安路472號           02 2533 0209   \n",
       "899               950台灣台東縣台東市中華路二段325號            08 934 6366   \n",
       "900              920台灣屏東縣潮州鎮玉春街39號台灣 號            08 780 2882   \n",
       "901               701台灣台南市東區衛國街114巷23號            06 236 8318   \n",
       "902                 710台灣台南市永康區中華路430號            06 302 3005   \n",
       "903                709台灣台南市安南區海佃路二段58號            06 245 5666   \n",
       "904                302台灣新竹縣竹北市自強北路156號            03 658 5520   \n",
       "905               614台灣嘉義縣朴子市四維路一段583巷            05 370 8149   \n",
       "\n",
       "                                              geometry  \\\n",
       "0    {'location': {'lat': 24.9946492, 'lng': 121.42...   \n",
       "1    {'location': {'lat': 25.015889, 'lng': 121.456...   \n",
       "2    {'location': {'lat': 23.9656185, 'lng': 120.96...   \n",
       "3    {'location': {'lat': 24.7458867, 'lng': 121.75...   \n",
       "4    {'location': {'lat': 23.5719086, 'lng': 119.57...   \n",
       "5    {'location': {'lat': 24.8311868, 'lng': 121.00...   \n",
       "6    {'location': {'lat': 23.0374024, 'lng': 120.30...   \n",
       "7    {'location': {'lat': 22.7706254, 'lng': 121.11...   \n",
       "8    {'location': {'lat': 22.7570513, 'lng': 121.14...   \n",
       "9    {'location': {'lat': 24.0853662, 'lng': 120.55...   \n",
       "10   {'location': {'lat': 24.0277836, 'lng': 121.60...   \n",
       "11   {'location': {'lat': 23.974661, 'lng': 121.596...   \n",
       "12   {'location': {'lat': 22.7499621, 'lng': 121.14...   \n",
       "13   {'location': {'lat': 24.7488359, 'lng': 121.73...   \n",
       "14   {'location': {'lat': 25.068505, 'lng': 121.512...   \n",
       "15   {'location': {'lat': 22.9710771, 'lng': 120.25...   \n",
       "16   {'location': {'lat': 24.8142141, 'lng': 120.97...   \n",
       "17   {'location': {'lat': 24.8056797, 'lng': 120.98...   \n",
       "18   {'location': {'lat': 23.4743278, 'lng': 120.45...   \n",
       "19   {'location': {'lat': 25.13014579999999, 'lng':...   \n",
       "20   {'location': {'lat': 22.5567203, 'lng': 120.54...   \n",
       "21   {'location': {'lat': 22.9871892, 'lng': 120.21...   \n",
       "22   {'location': {'lat': 25.1276419, 'lng': 121.74...   \n",
       "23   {'location': {'lat': 24.1281804, 'lng': 120.52...   \n",
       "24   {'location': {'lat': 23.000302, 'lng': 120.181...   \n",
       "25   {'location': {'lat': 24.13176899999999, 'lng':...   \n",
       "26   {'location': {'lat': 23.036168, 'lng': 120.208...   \n",
       "27   {'location': {'lat': 24.8002503, 'lng': 120.95...   \n",
       "28   {'location': {'lat': 24.75658469999999, 'lng':...   \n",
       "29   {'location': {'lat': 24.9965019, 'lng': 121.42...   \n",
       "..                                                 ...   \n",
       "876  {'location': {'lat': 24.883475, 'lng': 121.010...   \n",
       "877  {'location': {'lat': 24.93795, 'lng': 121.3669...   \n",
       "878  {'location': {'lat': 23.5666267, 'lng': 119.58...   \n",
       "879  {'location': {'lat': 22.997943, 'lng': 120.200...   \n",
       "880  {'location': {'lat': 23.467814, 'lng': 120.443...   \n",
       "881  {'location': {'lat': 23.57031719999999, 'lng':...   \n",
       "882  {'location': {'lat': 24.797515, 'lng': 120.985...   \n",
       "883  {'location': {'lat': 22.7668593, 'lng': 121.13...   \n",
       "884  {'location': {'lat': 23.0182951, 'lng': 120.20...   \n",
       "885  {'location': {'lat': 25.004315, 'lng': 121.222...   \n",
       "886  {'location': {'lat': 22.9970289, 'lng': 120.17...   \n",
       "887  {'location': {'lat': 23.039425, 'lng': 120.187...   \n",
       "888  {'location': {'lat': 24.6823389, 'lng': 121.76...   \n",
       "889  {'location': {'lat': 24.2290866, 'lng': 120.65...   \n",
       "890  {'location': {'lat': 24.083688, 'lng': 120.540...   \n",
       "891  {'location': {'lat': 22.617082, 'lng': 120.313...   \n",
       "892  {'location': {'lat': 22.6368711, 'lng': 120.29...   \n",
       "893  {'location': {'lat': 23.4826903, 'lng': 120.44...   \n",
       "894  {'location': {'lat': 23.79992, 'lng': 120.4621...   \n",
       "895  {'location': {'lat': 24.0147788, 'lng': 121.60...   \n",
       "896  {'location': {'lat': 25.129394, 'lng': 121.736...   \n",
       "897  {'location': {'lat': 23.56711989999999, 'lng':...   \n",
       "898  {'location': {'lat': 25.079596, 'lng': 121.544...   \n",
       "899  {'location': {'lat': 22.7431363, 'lng': 121.13...   \n",
       "900  {'location': {'lat': 22.5530743, 'lng': 120.54...   \n",
       "901  {'location': {'lat': 22.9877875, 'lng': 120.22...   \n",
       "902  {'location': {'lat': 23.010452, 'lng': 120.232...   \n",
       "903  {'location': {'lat': 23.0309244, 'lng': 120.19...   \n",
       "904  {'location': {'lat': 24.8082453, 'lng': 121.02...   \n",
       "905  {'location': {'lat': 23.4631768, 'lng': 120.22...   \n",
       "\n",
       "                                                  icon  \\\n",
       "0    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "1    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "2    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "3    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "4    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "5    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "6    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "7    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "8    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "9    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "10   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "11   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "12   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "13   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "14   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "15   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "16   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "17   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "18   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "19   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "20   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "21   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "22   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "23   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "24   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "25   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "26   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "27   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "28   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "29   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "..                                                 ...   \n",
       "876  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "877  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "878  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "879  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "880  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "881  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "882  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "883  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "884  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "885  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "886  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "887  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "888  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "889  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "890  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "891  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "892  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "893  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "894  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "895  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "896  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "897  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "898  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "899  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "900  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "901  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "902  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "903  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "904  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "905  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "\n",
       "                                           id international_phone_number  \\\n",
       "0    617fff9fd05c2bd93f7bfa78cc81c8f9f1f489e5           +886 2 2682 9988   \n",
       "1    e0893ebb22aa73017290829b82ed30de7e803dd4           +886 2 2965 6585   \n",
       "2    e7f8b2c14dddf2bb96954dad9fcc49db69938955           +886 978 719 515   \n",
       "3    67aa9b4af0d6fc649816db843be56bd9aa5fb03f            +886 3 935 7600   \n",
       "4    9cebffdc8e6fb33936915b229ea9a58739519284            +886 6 926 5590   \n",
       "5    8d47a37886a39efcf0fe977dcb6d315875b7da6e            +886 3 656 6633   \n",
       "6    c2d1790b27512165aef0c6941ae5aa5bb36302aa            +886 6 598 7079   \n",
       "7    1cf6851363b25f7683b8483a89c1c4f76a24ae99            +886 8 922 0526   \n",
       "8    a242f827e865ce91adcbd7ccb594954824d16aaf            +886 8 933 0306   \n",
       "9    e792a191dc429a7cbd006e00f21f053e8238b520            +886 4 729 6085   \n",
       "10   f14d64330038d965fbe9b038cee3c09afbf54c5f                        NaN   \n",
       "11   45287761de7deb71fbdcd34ac356e5f5afb5d519            +886 3 836 1616   \n",
       "12   4962f0c3d99ce1b09decddab9b96e96fa3104747            +886 8 933 5008   \n",
       "13   1cf2d3b40fd0bb81a455325d09d7e8d3ef15e7a4           +886 905 787 902   \n",
       "14   7afb58b8f10da0244c4457ea69c34af44ce7ed05           +886 2 2585 8887   \n",
       "15   371fe86417bdc4d4e629d5a351dd70f278381c53            +886 6 270 8339   \n",
       "16   3ceb418f079cd06806404f9c7c5f8a244cb58fbc            +886 3 532 2888   \n",
       "17   624a2ba5bb0978130b381acd92954605f672c7c4            +886 3 561 7899   \n",
       "18   2b34971b49d411536d489bce4077d16a5b463d1f            +886 5 216 3535   \n",
       "19   2d9daca523286eba75aa812ff5a5f83c8c616e5a           +886 2 2425 3747   \n",
       "20   a53a5ebcd5d9d4a33d8f98bbc75ab3967257dee5            +886 8 788 6000   \n",
       "21   3087d1e07f47807a81c135926da65b4cf8dc5be5           +886 983 613 997   \n",
       "22   f93f7541a1fe29a06c3a4d6010627bc9658b211a           +886 2 2427 6055   \n",
       "23   8c8d7a90016df1a946ea22a17384c22199b7e18a                        NaN   \n",
       "24   928e772b3ed6d42b0c80a5afebc95770be0b7980            +886 6 250 1816   \n",
       "25   e69cf445e3a279237ddb246d4e1f39a8cd1b69ff           +886 4 2475 1087   \n",
       "26   e9b330c162f04d7b2015261885eefb68d9d0682e           +886 912 010 135   \n",
       "27   ca57020a9b5d8ec92b4922e805ababad7864257f            +886 3 539 8666   \n",
       "28   beadda82fb5d80e0031589e0ec5a591a5a4117f4            +886 3 932 1795   \n",
       "29   60ec73140b382364c3a5345205091c00ce6efa6d           +886 2 2685 2123   \n",
       "..                                        ...                        ...   \n",
       "876  b7bb2e1e79f17d65d2f38abdfeefa9884166cce7           +886 982 161 323   \n",
       "877  14632470ba578813817ff462b35d92fc3b15e6bd           +886 2 2673 5677   \n",
       "878  858ef8ec111403c1315bc91dadbc8cdfebc945ed            +886 6 921 8908   \n",
       "879  29f05d0507489cc3de944a82fa2f4b1ad14bd1f2            +886 6 221 5067   \n",
       "880  654703e9f38b246d55699153cf7fda31e9d6de3f            +886 5 236 1286   \n",
       "881  f9a087148dc2c26f4e98bb38011b0f1a3f8d8fac            +886 6 921 0210   \n",
       "882  bc8d4e0604ac217da6b3499cf37dde38ac8778f8            +886 3 571 7571   \n",
       "883  8c6a61b2122e0570615a9db6ca5c88969c583899           +886 963 232 023   \n",
       "884  cbcdc10e80d07f98748919a43cb9376721d61e65            +886 6 252 5416   \n",
       "885  f8fec2c38467d9f12a9729444a9ce3441f331497           +886 955 635 726   \n",
       "886  82c4a453ec08dadd7047ffe3bd724beb6704b7d3                        NaN   \n",
       "887  14f0a59f1cf42a310e27991933ef3d248abcbd38            +886 6 247 2503   \n",
       "888  a7ca9719398da45ba0825632e192304b94216f52            +886 3 957 2996   \n",
       "889  fd749f7807e998ea02cc68ad49629adbc5a29d9c           +886 4 2567 4228   \n",
       "890  b04f2e46ef5c0bb30835ffcbb08b6c77c32e2998            +886 4 725 2222   \n",
       "891  72e90652617ae11af2409db0d760fc8fcb70b15d            +886 7 333 7165   \n",
       "892  861359c330ae8bd6537ead18e6d373fcb8a992c3            +886 7 286 2445   \n",
       "893  c179a697532d69407df443f80f11e93f29bd67f5            +886 5 223 1160   \n",
       "894  9b20e40605ad5a5e37e467b469370d9165f648f0            +886 5 586 4776   \n",
       "895  f9e842c03b20c92f4ff2843bd75a0c6cb7a18143           +886 905 631 152   \n",
       "896  fe793c69bd3073f2acc16481b0f94bf51199be40           +886 2 2428 2838   \n",
       "897  e5b16afe6f8d3ab39249f76865858489d8c247e8            +886 6 926 2270   \n",
       "898  deaa5500b2a783f5ff1b5b6b3ea558c09a86b3af           +886 2 2533 0209   \n",
       "899  5ebf98e114976305d6bf2a23505e1e5cbb0a4e38            +886 8 934 6366   \n",
       "900  74ed8046e0f6d268e94b0592c5268a394854dd0f            +886 8 780 2882   \n",
       "901  34a489c71200890a40b4013023f800ff3cfe5134            +886 6 236 8318   \n",
       "902  55282f12623cdd496b3cb2fa58a155958d38deed            +886 6 302 3005   \n",
       "903  e2b16f5444eeb63f686268dacb90641ee7911c88            +886 6 245 5666   \n",
       "904  5e9f96ce4c47db1ffc0e5bfc7527be815a7acb53            +886 3 658 5520   \n",
       "905  6a4d0d897ae0aa7c90f7e55c277008915e90dc22            +886 5 370 8149   \n",
       "\n",
       "                                  name  \\\n",
       "0                             有狗好寵物生活館   \n",
       "1                        馬吉家族寵物館_ 馬吉貓砂   \n",
       "2                                寵愛衣二衫   \n",
       "3                           麻吉寵物生活館宜蘭店   \n",
       "4                            魚樂教父水族寵物館   \n",
       "5                            動物王國寵物生活館   \n",
       "6                          儷奇寵物生活館 新化館   \n",
       "7                              來來寵物工作室   \n",
       "8                      范氏愛犬屋(范氏犬貓用品總匯)   \n",
       "9                            晏聖寵物百貨量販店   \n",
       "10                          嘎比烏姆寵物親善公園   \n",
       "11                               翠鳴寵物軒   \n",
       "12                          狗仔店寵物美容用品館   \n",
       "13                            小狗當家寵物沙龍   \n",
       "14                           奧斯卡寵物連鎖量販   \n",
       "15                          奧斯卡寵物台南仁德店   \n",
       "16                              魚中魚民權店   \n",
       "17                     魚中魚貓狗水族大賣場新竹忠孝店   \n",
       "18                             貓狗大棧垂楊店   \n",
       "19                                小犬寵物   \n",
       "20                       奧斯卡寵物連鎖量販【潮州】   \n",
       "21                            美力生寵物生活館   \n",
       "22                             小寶貝寵物精品   \n",
       "23                          鼎盛寵物用品有限公司   \n",
       "24                          狗狗之家-寵物生活館   \n",
       "25                              愛樂寵物天地   \n",
       "26                            貓咪船長寵物旅館   \n",
       "27                                 魚中魚   \n",
       "28                          東門寵物生活館052   \n",
       "29                           樹林123寵物超市   \n",
       "..                                 ...   \n",
       "876              Fun Life飛萊寵物旅館&寵物教育訓練   \n",
       "877                            艾寶寵物美容館   \n",
       "878                          極深水族館-創始店   \n",
       "879                            貓科動物寵物店   \n",
       "880                     汪旺來寵物生活館-嘉義仁愛店   \n",
       "881  月牙灣寵物民宿 yue ya wan Homestay(原魯道夫)   \n",
       "882                          灰熊麻吉寵物生活館   \n",
       "883                台東民宿-小貓兩三隻 (寵物友善民宿)   \n",
       "884                            花草寵物生活坊   \n",
       "885                        非寵不可寵物美容工作室   \n",
       "886                 Pet's Whisper 寵物私語   \n",
       "887                           酷豆格寵物生活館   \n",
       "888                          寵愛寵物美容生活館   \n",
       "889                            蘋果寵物美容坊   \n",
       "890                   狗仔隊寵物用品有限公司三民分公司   \n",
       "891          Yoyo Dream Pet SPA 有夢想寵物坊   \n",
       "892                            淘氣族寵物美容   \n",
       "893                             狗殿寵物餐廳   \n",
       "894                              潮流水族館   \n",
       "895                              采雲間寵物   \n",
       "896                            喬森寵物美容坊   \n",
       "897                               福牡蠣屋   \n",
       "898                         啵美寵物生活館大直店   \n",
       "899                              愛犬獸醫院   \n",
       "900                           可愛的熊寵物美容   \n",
       "901                             小可愛寵物坊   \n",
       "902                          寵物公園(永康店)   \n",
       "903                          奧斯卡寵物連鎖量販   \n",
       "904                           躲貓貓寵物生活館   \n",
       "905                             仁愛動物醫院   \n",
       "\n",
       "                                         opening_hours  \\\n",
       "0    {'open_now': False, 'periods': [{'close': {'da...   \n",
       "1    {'open_now': False, 'periods': [{'close': {'da...   \n",
       "2    {'open_now': False, 'periods': [{'close': {'da...   \n",
       "3    {'open_now': False, 'periods': [{'close': {'da...   \n",
       "4                                                  NaN   \n",
       "5    {'open_now': False, 'periods': [{'close': {'da...   \n",
       "6    {'open_now': False, 'periods': [{'close': {'da...   \n",
       "7                                                  NaN   \n",
       "8                                                  NaN   \n",
       "9                                                  NaN   \n",
       "10   {'open_now': True, 'periods': [{'open': {'day'...   \n",
       "11   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "12   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "13   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "14   {'open_now': True, 'periods': [{'close': {'day...   \n",
       "15   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "16                                                 NaN   \n",
       "17   {'open_now': True, 'periods': [{'close': {'day...   \n",
       "18   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "19   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "20                                                 NaN   \n",
       "21   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "22                                                 NaN   \n",
       "23                                                 NaN   \n",
       "24   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "25                                                 NaN   \n",
       "26   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "27   {'open_now': True, 'periods': [{'close': {'day...   \n",
       "28                                                 NaN   \n",
       "29   {'open_now': False, 'periods': [{'close': {'da...   \n",
       "..                                                 ...   \n",
       "876  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "877  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "878  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "879  {'open_now': True, 'periods': [{'close': {'day...   \n",
       "880  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "881  {'open_now': True, 'periods': [{'open': {'day'...   \n",
       "882  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "883                                                NaN   \n",
       "884  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "885  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "886                                                NaN   \n",
       "887  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "888  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "889                                                NaN   \n",
       "890                                                NaN   \n",
       "891  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "892  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "893  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "894  {'open_now': True, 'periods': [{'open': {'day'...   \n",
       "895  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "896  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "897  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "898  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "899  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "900                                                NaN   \n",
       "901  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "902  {'open_now': True, 'periods': [{'close': {'day...   \n",
       "903  {'open_now': True, 'periods': [{'close': {'day...   \n",
       "904  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "905  {'open_now': False, 'periods': [{'close': {'da...   \n",
       "\n",
       "                           ...                          \\\n",
       "0                          ...                           \n",
       "1                          ...                           \n",
       "2                          ...                           \n",
       "3                          ...                           \n",
       "4                          ...                           \n",
       "5                          ...                           \n",
       "6                          ...                           \n",
       "7                          ...                           \n",
       "8                          ...                           \n",
       "9                          ...                           \n",
       "10                         ...                           \n",
       "11                         ...                           \n",
       "12                         ...                           \n",
       "13                         ...                           \n",
       "14                         ...                           \n",
       "15                         ...                           \n",
       "16                         ...                           \n",
       "17                         ...                           \n",
       "18                         ...                           \n",
       "19                         ...                           \n",
       "20                         ...                           \n",
       "21                         ...                           \n",
       "22                         ...                           \n",
       "23                         ...                           \n",
       "24                         ...                           \n",
       "25                         ...                           \n",
       "26                         ...                           \n",
       "27                         ...                           \n",
       "28                         ...                           \n",
       "29                         ...                           \n",
       "..                         ...                           \n",
       "876                        ...                           \n",
       "877                        ...                           \n",
       "878                        ...                           \n",
       "879                        ...                           \n",
       "880                        ...                           \n",
       "881                        ...                           \n",
       "882                        ...                           \n",
       "883                        ...                           \n",
       "884                        ...                           \n",
       "885                        ...                           \n",
       "886                        ...                           \n",
       "887                        ...                           \n",
       "888                        ...                           \n",
       "889                        ...                           \n",
       "890                        ...                           \n",
       "891                        ...                           \n",
       "892                        ...                           \n",
       "893                        ...                           \n",
       "894                        ...                           \n",
       "895                        ...                           \n",
       "896                        ...                           \n",
       "897                        ...                           \n",
       "898                        ...                           \n",
       "899                        ...                           \n",
       "900                        ...                           \n",
       "901                        ...                           \n",
       "902                        ...                           \n",
       "903                        ...                           \n",
       "904                        ...                           \n",
       "905                        ...                           \n",
       "\n",
       "                                             plus_code rating  \\\n",
       "0    {'compound_code': 'XCVH+V2 台灣台北', 'global_code...    5.0   \n",
       "1    {'compound_code': '2F84+9P 台灣台北', 'global_code...    4.4   \n",
       "2    {'compound_code': 'XX86+6V 台灣南投縣埔里鎮埔里', 'globa...    NaN   \n",
       "3    {'compound_code': 'PQW4+94 台灣宜蘭縣宜蘭市宜蘭', 'globa...    5.0   \n",
       "4    {'compound_code': 'HHCH+Q7 台灣澎湖縣馬公市馬公', 'globa...    4.5   \n",
       "5    {'compound_code': 'R2J3+F2 台灣新竹縣竹北市竹北', 'globa...    3.8   \n",
       "6    {'compound_code': '28P2+XQ 台灣台南市東區臺南', 'global...    4.5   \n",
       "7    {'compound_code': 'Q4C7+76 台灣台東縣台東市臺東', 'globa...    NaN   \n",
       "8    {'compound_code': 'Q44V+R6 台灣台東縣台東市臺東', 'globa...    4.0   \n",
       "9    {'compound_code': '3HP4+4P 台灣彰化縣溪湖鎮彰化', 'globa...    2.5   \n",
       "10   {'compound_code': '2JH3+42 Hualein County Metr...    NaN   \n",
       "11   {'compound_code': 'XHFW+VC Hualein County Metr...    NaN   \n",
       "12   {'compound_code': 'P4XX+XW 台灣台東縣台東市臺東', 'globa...    4.0   \n",
       "13   {'compound_code': 'PPXM+GG 台灣宜蘭縣宜蘭市宜蘭', 'globa...    NaN   \n",
       "14   {'compound_code': '3G97+C5 台灣台北', 'global_code...    3.9   \n",
       "15   {'compound_code': 'X7C3+CX 台灣台南市東區臺南', 'global...    4.2   \n",
       "16   {'compound_code': 'RX7C+M8 台灣新竹市東區新竹', 'global...    4.0   \n",
       "17   {'compound_code': 'RX4P+7H 台灣新竹市東區新竹', 'global...    4.0   \n",
       "18   {'compound_code': 'FFF4+PF 台灣嘉義市西區嘉義', 'global...    4.3   \n",
       "19   {'compound_code': '4PJQ+3W 台灣基隆市仁愛區基隆', 'globa...    4.8   \n",
       "20   {'compound_code': 'HG4R+M3 台灣屏東縣潮州鎮潮州', 'globa...    3.9   \n",
       "21   {'compound_code': 'X6P6+VF 台灣台南市東區臺南', 'global...    5.0   \n",
       "22   {'compound_code': '4PHV+35 台灣基隆市仁愛區基隆', 'globa...    3.5   \n",
       "23   {'compound_code': '4GHC+7F Taichung City Metro...    3.0   \n",
       "24   {'compound_code': '252J+4Q 台灣台南市東區臺南', 'global...    3.5   \n",
       "25   {'compound_code': '4JJV+PJ 台灣台中市北區臺中', 'global...    5.0   \n",
       "26   {'compound_code': '26P5+FH 台灣台南市東區臺南', 'global...    4.3   \n",
       "27   {'compound_code': 'RX23+4F 台灣新竹市東區新竹', 'global...    4.0   \n",
       "28   {'compound_code': 'QQ44+JW 台灣宜蘭縣宜蘭市宜蘭', 'globa...    NaN   \n",
       "29   {'compound_code': 'XCWC+JH 台灣台北', 'global_code...    4.5   \n",
       "..                                                 ...    ...   \n",
       "876  {'compound_code': 'V2M6+92 Hsinchu City Metrop...    4.8   \n",
       "877  {'compound_code': 'W9Q8+5Q 台灣台北', 'global_code...    3.7   \n",
       "878  {'compound_code': 'HH8P+M5 台灣澎湖縣馬公市馬公', 'globa...    4.6   \n",
       "879  {'compound_code': 'X6X2+56 台灣台南市東區臺南', 'global...    4.0   \n",
       "880  {'compound_code': 'FC9V+46 台灣嘉義市西區嘉義', 'global...    4.6   \n",
       "881  {'compound_code': 'HHCX+4G 台灣澎湖縣馬公市馬公', 'globa...    3.8   \n",
       "882  {'compound_code': 'QXXP+22 台灣新竹市東區新竹', 'global...    4.4   \n",
       "883  {'compound_code': 'Q48J+P7 台灣台東縣台東市臺東', 'globa...    4.6   \n",
       "884  {'compound_code': '2694+8Q 台灣台南市東區臺南', 'global...    4.5   \n",
       "885  {'compound_code': '263F+P4 台灣桃園市桃園區桃園', 'globa...    3.7   \n",
       "886  {'compound_code': 'X5WF+R4 台灣台南市東區臺南', 'global...    NaN   \n",
       "887  {'compound_code': '25QP+QV 台灣台南市東區臺南', 'global...    5.0   \n",
       "888  {'compound_code': 'MQJ9+WX 台灣宜蘭縣羅東鎮羅東', 'globa...    4.0   \n",
       "889  {'compound_code': '6MH3+JH 台灣台中市北區臺中', 'global...    NaN   \n",
       "890  {'compound_code': '3GMR+F4 台灣彰化縣溪湖鎮彰化', 'globa...    NaN   \n",
       "891  {'compound_code': 'J887+R8 台灣高雄市鼓山區高雄', 'globa...    4.8   \n",
       "892  {'compound_code': 'J7PW+PM 台灣高雄市鼓山區高雄', 'globa...    4.7   \n",
       "893  {'compound_code': 'FCMW+3G 台灣嘉義市西區嘉義', 'global...    4.3   \n",
       "894  {'compound_code': 'QFX6+XR 台灣雲林縣西螺鎮西螺', 'globa...    3.7   \n",
       "895  {'compound_code': '2J73+W2 Hualein County Metr...    5.0   \n",
       "896  {'compound_code': '4PHP+QM 台灣基隆市仁愛區基隆', 'globa...    3.5   \n",
       "897  {'compound_code': 'HH87+RR 台灣澎湖縣馬公市馬公', 'globa...    3.9   \n",
       "898  {'compound_code': '3GHV+RX 台灣台北', 'global_code...    4.6   \n",
       "899  {'compound_code': 'P4VP+79 台灣台東縣台東市臺東', 'globa...    3.7   \n",
       "900  {'compound_code': 'HG3W+6W 台灣屏東縣潮州鎮潮州', 'globa...    5.0   \n",
       "901  {'compound_code': 'X6QG+42 台灣台南市東區臺南', 'global...    4.8   \n",
       "902  {'compound_code': '266M+55 台灣台南市東區臺南', 'global...    4.3   \n",
       "903  {'compound_code': '25JR+95 台灣台南市東區臺南', 'global...    3.9   \n",
       "904  {'compound_code': 'R25G+72 台灣新竹縣竹北市竹北', 'globa...    4.8   \n",
       "905  {'compound_code': 'F67C+7C 台灣嘉義縣東石鄉東石', 'globa...    3.7   \n",
       "\n",
       "                                             reference  \\\n",
       "0    CmRSAAAAfpjr28Nh3tIRtKH3i6HY0mQBZ-YkW6t5SqDILE...   \n",
       "1    CmRRAAAADUAeIIEa1EL09KbvkYzzd04QS7RZmKzX5rTIpE...   \n",
       "2    CmRRAAAAev5UNl6Pnq2g8RfxmqmpakbonaGWGz9py9o30U...   \n",
       "3    CmRSAAAAVxBAfgYikeGJDZk29knd_rAScRhPJvr6djFNHi...   \n",
       "4    CmRRAAAAQ3v1sg4QJW4ocuLt1fBITE8ybY2cLfoiA9aMxT...   \n",
       "5    CmRSAAAANMpc3QsqECaqN1xSTfBKLB-5W4A6VS9t6567Mg...   \n",
       "6    CmRRAAAAHzA1zroSh8wWDcaRs-6u5tbsj7jUGi9Sz5hPAl...   \n",
       "7    CmRSAAAAZvn8E-Rs2KbpbN3JOdiVrtF6s6XShknxQ-OyGH...   \n",
       "8    CmRRAAAA5D8grztbPxvmSwT27ntSOIuF034YhUQMxAQQOr...   \n",
       "9    CmRSAAAATAabkudkHPSkiTsLV_kikIo2TXGqT0uiqWqMEa...   \n",
       "10   CmRRAAAAGNOFJdIADdU8NN74a9rlfYm-pS6i8IDzd-18bF...   \n",
       "11   CmRRAAAAuIgnfMSsOcNWQE4ocEGvNrx8frEDwnzXQMc-P1...   \n",
       "12   CmRSAAAADOpJFZjptvRdZnX7WqT4o5dAngxKQ2yCiZPCr2...   \n",
       "13   CmRRAAAA86DFkn6q2ChDR3fqZlIVf9agQCCIB5xn8dv7m2...   \n",
       "14   CmRRAAAAMoIS1KiGonEP89gDxLLHLj3a-dyC8NgkOUrFLb...   \n",
       "15   CmRSAAAAA5muf9bX6sy1P134x63BZobatGzW5U5Id1u4-o...   \n",
       "16   CmRRAAAAuXUoTCsSrgVxlilX1pkVS1ZIRdDOsyujXTvXD3...   \n",
       "17   CmRSAAAAGyd2WpmAPD7qcL8qn5gzu9DTrSdfwfWBWrOrVY...   \n",
       "18   CmRSAAAAjZyapOGv9em0WVcj6-dtxY1R0DnOdYAj00Z0KI...   \n",
       "19   CmRSAAAA7IX6TW5h7MOeQWsy3vyRbsq2QYTHXS-e0xWT0Q...   \n",
       "20   CmRRAAAAydi17P9qzTmPp_-0Ehtlp9xNw4ufznK7TJX0aN...   \n",
       "21   CmRSAAAAeDy1ei5GPBJobDlY8iCRA-WkXkcKm03KCUQVUL...   \n",
       "22   CmRSAAAAaA3XTzgtt5xvpVYfZq-iS4Nwmax1GW4Ov0Xz_0...   \n",
       "23   CmRSAAAAFu8tDRtUeMzYiHVZ6r9muD5sm6kpz52pVbfzL7...   \n",
       "24   CmRRAAAAbhV8ni5WJxWBxd7IAJmMP9BavpcbX5JyeeFnBd...   \n",
       "25   CmRRAAAAhd-KyIMJgmxeqT2HMrWnME86wKJVssf34staJY...   \n",
       "26   CmRRAAAAQnjQBAYlcJjh7sLJch4o9ypzx8e5P-tJfVn79s...   \n",
       "27   CmRRAAAAWhT1yaO-zzUPbmW1UfKgPWTyaSNvJ74mt3os2Q...   \n",
       "28   CmRSAAAAmIgUBA9d8V0fJy3Au5vSTPhH-RRwoJI72WU6On...   \n",
       "29   CmRRAAAAhTqeWWeb_1AKu7ll9hivyFq3rb_mdaej_x8N3g...   \n",
       "..                                                 ...   \n",
       "876  CmRSAAAASNCNJe2gYmInWxxT_frLHlU5N6kx1OyUH118Im...   \n",
       "877  CmRRAAAA6hNkmzf2RQ6CWD-Z8r1frz6wdhP2asyGX9ulnb...   \n",
       "878  CmRSAAAAAqrjI6ZodluMgDyqft-XH7X0xTFt150Ap7QPld...   \n",
       "879  CmRRAAAAioY_Vqo3-Tw_H1_9yubZXtlgRYr5Gp09G7JgRD...   \n",
       "880  CmRRAAAA_LVhyBfJ9TfoLwJolGpHaLvOIPsjWpRcpwkGcK...   \n",
       "881  CmRRAAAAiPoyUMKALIUYF1TD41VCi6CG-lerg4QvOf-j8N...   \n",
       "882  CmRRAAAAD8DNsv6TULTYh7obWdR6r9AgqFnN3_EQu7gtcN...   \n",
       "883  CmRRAAAAkHdESQb3xDq12w_wJelaB-bVAyT86js5vViatF...   \n",
       "884  CmRSAAAAKDg716k0b94qcwHX1lY4au6FTc3mvSKXrQ0SXg...   \n",
       "885  CmRSAAAA6farRcYM90Fh72TQuvk23OAVgvPekKej_owjnp...   \n",
       "886  CmRSAAAASB6Olmbf2pe6bBjYehaegFxK0tY0HU8-caNXHo...   \n",
       "887  CmRSAAAAzax2yT3Sz3qAY1XJV8alay5FDc2TaeJXfiHE_P...   \n",
       "888  CmRRAAAAD1jMtR1am1ymBCi3DdMP0wawieMz1DBv0GysdP...   \n",
       "889  CmRRAAAAOixoxnmJsmRwKigi04-LnfO2CKYNMpdDmSNMgp...   \n",
       "890  CmRRAAAAAkWTCbGfUXw3BwK_XtHjdMn0wMlO9WWp424ayi...   \n",
       "891  CmRRAAAA-f0OZ0XWOFiXcOC_zq_2xMBkLxIhElJguXsIO5...   \n",
       "892  CmRRAAAAq5cqnUGwdtFd3Yo19sZKBxLCi8BJxx3UkUg0tS...   \n",
       "893  CmRRAAAADB9VWNJd68AOAmBBs-M6xQ9JrCKVzIx-thfZ4c...   \n",
       "894  CmRRAAAAjxKrvh_aECBVc-VU7bb8lea2zJr_B7IjINKAug...   \n",
       "895  CmRRAAAAMgO2iHKSRXKA5QbCeBkiXr4JdxgZH0TGN0Bwwt...   \n",
       "896  CmRRAAAA9YVltkgv0XChUoB26h73rDYcAlfado8naU371-...   \n",
       "897  CmRRAAAAkkQvTiT_bUpjxM-TXLhI3-nADUm62045Aj3KCZ...   \n",
       "898  CmRRAAAAZHZ78Iwbxd0CC_bm1U-M-GQxGrLCHJpBhrIpL5...   \n",
       "899  CmRSAAAAWLuGmFNucQXYgfqQ4F3UtUSfYyG84_lGpONml4...   \n",
       "900  CmRSAAAAdub2GIv2hA4v_ripGAX3q_aUCpL79sOeIymcw8...   \n",
       "901  CmRRAAAApBeirMtyvFBXroLNF5isy-fD-SUaJyKFBgrsCx...   \n",
       "902  CmRSAAAA-9E6cMDVCxg_n4dW03zlRe0JrGy6Ne8mfLbkkW...   \n",
       "903  CmRSAAAAMe4hJrqlmu1qDbiN01CEX5bQe9CnZMq3Pb-kz-...   \n",
       "904  CmRRAAAAhyiqIMeBtt7ZQXYx6S3zC9xdOxeqrTmrAER2XK...   \n",
       "905  CmRSAAAAVPgwNnerbwPPpVr6ObU28HoIF9niqzK00uQ73G...   \n",
       "\n",
       "                                               reviews   scope  \\\n",
       "0    [{'author_name': '廖泥', 'author_url': 'https://...  GOOGLE   \n",
       "1    [{'author_name': 'ruru l', 'author_url': 'http...  GOOGLE   \n",
       "2                                                  NaN  GOOGLE   \n",
       "3    [{'author_name': '林岑軒', 'author_url': 'https:/...  GOOGLE   \n",
       "4    [{'author_name': '鄧鄧世昌', 'author_url': 'https:...  GOOGLE   \n",
       "5    [{'author_name': 's S', 'author_url': 'https:/...  GOOGLE   \n",
       "6    [{'author_name': '洪唯修', 'author_url': 'https:/...  GOOGLE   \n",
       "7                                                  NaN  GOOGLE   \n",
       "8    [{'author_name': '劉木雄', 'author_url': 'https:/...  GOOGLE   \n",
       "9    [{'author_name': 'jenyaw Lay', 'author_url': '...  GOOGLE   \n",
       "10                                                 NaN  GOOGLE   \n",
       "11                                                 NaN  GOOGLE   \n",
       "12   [{'author_name': '林果', 'author_url': 'https://...  GOOGLE   \n",
       "13                                                 NaN  GOOGLE   \n",
       "14   [{'author_name': '彌彌陳', 'author_url': 'https:/...  GOOGLE   \n",
       "15   [{'author_name': '琴妹', 'author_url': 'https://...  GOOGLE   \n",
       "16   [{'author_name': '許信偉', 'author_url': 'https:/...  GOOGLE   \n",
       "17   [{'author_name': '王麗新', 'author_url': 'https:/...  GOOGLE   \n",
       "18   [{'author_name': '溫瀅雅', 'author_url': 'https:/...  GOOGLE   \n",
       "19   [{'author_name': 'Misa Yeh', 'author_url': 'ht...  GOOGLE   \n",
       "20   [{'author_name': 'Jefe Yu', 'author_url': 'htt...  GOOGLE   \n",
       "21   [{'author_name': 'Vera Lee', 'author_url': 'ht...  GOOGLE   \n",
       "22   [{'author_name': '葉傑', 'author_url': 'https://...  GOOGLE   \n",
       "23   [{'author_name': '林允國', 'author_url': 'https:/...  GOOGLE   \n",
       "24   [{'author_name': '韋樺盧', 'author_url': 'https:/...  GOOGLE   \n",
       "25   [{'author_name': 'Andy Chen', 'author_url': 'h...  GOOGLE   \n",
       "26   [{'author_name': 'wu jh', 'author_url': 'https...  GOOGLE   \n",
       "27   [{'author_name': 'Peter Huang', 'author_url': ...  GOOGLE   \n",
       "28                                                 NaN  GOOGLE   \n",
       "29   [{'author_name': 'Jason Rd.', 'author_url': 'h...  GOOGLE   \n",
       "..                                                 ...     ...   \n",
       "876  [{'author_name': 'Florina macmay', 'author_url...  GOOGLE   \n",
       "877  [{'author_name': 'Enny Chen', 'author_url': 'h...  GOOGLE   \n",
       "878  [{'author_name': '陳詩潔', 'author_url': 'https:/...  GOOGLE   \n",
       "879  [{'author_name': 'Wei Lin', 'author_url': 'htt...  GOOGLE   \n",
       "880  [{'author_name': '古偲瑀', 'author_url': 'https:/...  GOOGLE   \n",
       "881  [{'author_name': 'Rogel', 'author_url': 'https...  GOOGLE   \n",
       "882  [{'author_name': 'Errol Manuel', 'author_url':...  GOOGLE   \n",
       "883  [{'author_name': 'Bambi Huang', 'author_url': ...  GOOGLE   \n",
       "884  [{'author_name': 'Lin Stony', 'author_url': 'h...  GOOGLE   \n",
       "885  [{'author_name': 'polo wang', 'author_url': 'h...  GOOGLE   \n",
       "886                                                NaN  GOOGLE   \n",
       "887  [{'author_name': '陳姿蓉', 'author_url': 'https:/...  GOOGLE   \n",
       "888  [{'author_name': 'Shyuan', 'author_url': 'http...  GOOGLE   \n",
       "889                                                NaN  GOOGLE   \n",
       "890                                                NaN  GOOGLE   \n",
       "891  [{'author_name': '陳朱朱', 'author_url': 'https:/...  GOOGLE   \n",
       "892  [{'author_name': '陳峻青', 'author_url': 'https:/...  GOOGLE   \n",
       "893  [{'author_name': 'walker alan', 'author_url': ...  GOOGLE   \n",
       "894  [{'author_name': '廖芬郁', 'author_url': 'https:/...  GOOGLE   \n",
       "895  [{'author_name': '張豆花', 'author_url': 'https:/...  GOOGLE   \n",
       "896  [{'author_name': 'Jer-Luen H', 'author_url': '...  GOOGLE   \n",
       "897  [{'author_name': 'Cherry Wei', 'author_url': '...  GOOGLE   \n",
       "898  [{'author_name': '美奈', 'author_url': 'https://...  GOOGLE   \n",
       "899  [{'author_name': '標泰鴻', 'author_url': 'https:/...  GOOGLE   \n",
       "900  [{'author_name': '李阿貴', 'author_url': 'https:/...  GOOGLE   \n",
       "901  [{'author_name': '千千', 'author_url': 'https://...  GOOGLE   \n",
       "902  [{'author_name': '林傢伙', 'author_url': 'https:/...  GOOGLE   \n",
       "903  [{'author_name': '張宜媚', 'author_url': 'https:/...  GOOGLE   \n",
       "904  [{'author_name': '蔡斯云', 'author_url': 'https:/...  GOOGLE   \n",
       "905  [{'author_name': '台中昌平', 'author_url': 'https:...  GOOGLE   \n",
       "\n",
       "                                                 types  \\\n",
       "0    [pet_store, store, point_of_interest, establis...   \n",
       "1    [pet_store, store, point_of_interest, establis...   \n",
       "2            [store, point_of_interest, establishment]   \n",
       "3            [store, point_of_interest, establishment]   \n",
       "4                   [point_of_interest, establishment]   \n",
       "5            [store, point_of_interest, establishment]   \n",
       "6    [pet_store, store, point_of_interest, establis...   \n",
       "7                   [point_of_interest, establishment]   \n",
       "8                   [point_of_interest, establishment]   \n",
       "9            [store, point_of_interest, establishment]   \n",
       "10            [park, point_of_interest, establishment]   \n",
       "11                  [point_of_interest, establishment]   \n",
       "12           [store, point_of_interest, establishment]   \n",
       "13   [pet_store, store, point_of_interest, establis...   \n",
       "14   [pet_store, store, point_of_interest, establis...   \n",
       "15   [pet_store, store, point_of_interest, establis...   \n",
       "16   [pet_store, store, point_of_interest, establis...   \n",
       "17   [aquarium, store, point_of_interest, establish...   \n",
       "18           [store, point_of_interest, establishment]   \n",
       "19           [store, point_of_interest, establishment]   \n",
       "20   [pet_store, store, point_of_interest, establis...   \n",
       "21   [pet_store, store, point_of_interest, establis...   \n",
       "22   [pet_store, store, point_of_interest, establis...   \n",
       "23           [store, point_of_interest, establishment]   \n",
       "24   [pet_store, store, point_of_interest, establis...   \n",
       "25           [store, point_of_interest, establishment]   \n",
       "26   [pet_store, store, point_of_interest, establis...   \n",
       "27           [store, point_of_interest, establishment]   \n",
       "28                  [point_of_interest, establishment]   \n",
       "29   [supermarket, grocery_or_supermarket, pet_stor...   \n",
       "..                                                 ...   \n",
       "876                 [point_of_interest, establishment]   \n",
       "877  [pet_store, store, point_of_interest, establis...   \n",
       "878  [pet_store, store, point_of_interest, establis...   \n",
       "879  [pet_store, store, point_of_interest, establis...   \n",
       "880  [pet_store, store, point_of_interest, establis...   \n",
       "881        [lodging, point_of_interest, establishment]   \n",
       "882          [store, point_of_interest, establishment]   \n",
       "883        [lodging, point_of_interest, establishment]   \n",
       "884  [pet_store, store, point_of_interest, establis...   \n",
       "885  [pet_store, store, point_of_interest, establis...   \n",
       "886  [pet_store, store, point_of_interest, establis...   \n",
       "887  [pet_store, store, point_of_interest, establis...   \n",
       "888  [pet_store, store, point_of_interest, establis...   \n",
       "889  [pet_store, store, point_of_interest, establis...   \n",
       "890                 [point_of_interest, establishment]   \n",
       "891  [pet_store, spa, store, point_of_interest, est...   \n",
       "892  [pet_store, store, point_of_interest, establis...   \n",
       "893  [restaurant, food, point_of_interest, establis...   \n",
       "894  [pet_store, store, point_of_interest, establis...   \n",
       "895                 [point_of_interest, establishment]   \n",
       "896  [pet_store, store, point_of_interest, establis...   \n",
       "897  [restaurant, food, point_of_interest, establis...   \n",
       "898  [pet_store, store, point_of_interest, establis...   \n",
       "899  [veterinary_care, point_of_interest, establish...   \n",
       "900                 [point_of_interest, establishment]   \n",
       "901  [pet_store, store, point_of_interest, establis...   \n",
       "902          [store, point_of_interest, establishment]   \n",
       "903          [store, point_of_interest, establishment]   \n",
       "904                 [point_of_interest, establishment]   \n",
       "905  [veterinary_care, point_of_interest, establish...   \n",
       "\n",
       "                                                   url utc_offset  \\\n",
       "0    https://maps.google.com/?cid=17083992417925975005        480   \n",
       "1      https://maps.google.com/?cid=512782104412930707        480   \n",
       "2      https://maps.google.com/?cid=469808712778974747        480   \n",
       "3    https://maps.google.com/?cid=10620142918041966745        480   \n",
       "4     https://maps.google.com/?cid=5311675580329079185        480   \n",
       "5    https://maps.google.com/?cid=12195892991935783651        480   \n",
       "6      https://maps.google.com/?cid=233836542788744870        480   \n",
       "7    https://maps.google.com/?cid=17066602014284458090        480   \n",
       "8     https://maps.google.com/?cid=4709644583852088623        480   \n",
       "9    https://maps.google.com/?cid=16434882717336812037        480   \n",
       "10     https://maps.google.com/?cid=601436564154030897        480   \n",
       "11     https://maps.google.com/?cid=308745779026355819        480   \n",
       "12   https://maps.google.com/?cid=15674708651462881970        480   \n",
       "13    https://maps.google.com/?cid=1770771663689486582        480   \n",
       "14    https://maps.google.com/?cid=1159619883477333737        480   \n",
       "15    https://maps.google.com/?cid=9547440387483416321        480   \n",
       "16    https://maps.google.com/?cid=6339962840738951166        480   \n",
       "17   https://maps.google.com/?cid=16815707981374793932        480   \n",
       "18   https://maps.google.com/?cid=17342055396130400675        480   \n",
       "19    https://maps.google.com/?cid=9845513125318587110        480   \n",
       "20    https://maps.google.com/?cid=5918987336470017151        480   \n",
       "21    https://maps.google.com/?cid=9857523961350992552        480   \n",
       "22   https://maps.google.com/?cid=12520110923217800508        480   \n",
       "23   https://maps.google.com/?cid=10523699125940615350        480   \n",
       "24    https://maps.google.com/?cid=3532661590925106519        480   \n",
       "25     https://maps.google.com/?cid=315662633790840874        480   \n",
       "26    https://maps.google.com/?cid=1728135886817834917        480   \n",
       "27    https://maps.google.com/?cid=2116242952969502225        480   \n",
       "28   https://maps.google.com/?cid=11476705576202181724        480   \n",
       "29    https://maps.google.com/?cid=3455755476502695035        480   \n",
       "..                                                 ...        ...   \n",
       "876  https://maps.google.com/?cid=14738889575176944089        480   \n",
       "877   https://maps.google.com/?cid=4641181757489819191        480   \n",
       "878   https://maps.google.com/?cid=9416242555800848939        480   \n",
       "879    https://maps.google.com/?cid=942224157809692400        480   \n",
       "880   https://maps.google.com/?cid=3504680624357325725        480   \n",
       "881   https://maps.google.com/?cid=4225604857922096844        480   \n",
       "882    https://maps.google.com/?cid=254761946176084393        480   \n",
       "883   https://maps.google.com/?cid=6884899848854975407        480   \n",
       "884  https://maps.google.com/?cid=13014010643447880337        480   \n",
       "885  https://maps.google.com/?cid=16837967860213342219        480   \n",
       "886   https://maps.google.com/?cid=9228201052167496809        480   \n",
       "887  https://maps.google.com/?cid=15128870524158334372        480   \n",
       "888   https://maps.google.com/?cid=5277966298459981110        480   \n",
       "889   https://maps.google.com/?cid=3871598579868214094        480   \n",
       "890   https://maps.google.com/?cid=2410805487551538334        480   \n",
       "891   https://maps.google.com/?cid=1587446600781086158        480   \n",
       "892   https://maps.google.com/?cid=8811156178929768453        480   \n",
       "893   https://maps.google.com/?cid=3012751480408182719        480   \n",
       "894   https://maps.google.com/?cid=7124156328865654886        480   \n",
       "895    https://maps.google.com/?cid=832846633411226941        480   \n",
       "896    https://maps.google.com/?cid=137676516015644987        480   \n",
       "897   https://maps.google.com/?cid=4642647903956936219        480   \n",
       "898   https://maps.google.com/?cid=2742845385870630781        480   \n",
       "899  https://maps.google.com/?cid=17026747788241207451        480   \n",
       "900  https://maps.google.com/?cid=12645890109023332610        480   \n",
       "901   https://maps.google.com/?cid=2067941117032913993        480   \n",
       "902  https://maps.google.com/?cid=16352373236115726763        480   \n",
       "903  https://maps.google.com/?cid=18078702121754777018        480   \n",
       "904   https://maps.google.com/?cid=6306978859124310260        480   \n",
       "905   https://maps.google.com/?cid=9440194852522683626        480   \n",
       "\n",
       "                   vicinity                                            website  \n",
       "0            樹林區樹新路34巷36之2號               https://www.facebook.com/goodog9988/  \n",
       "1                板橋區中正路132號                       http://www.machi-family.com/  \n",
       "2            埔里鎮南興街2號之 19 號                                                NaN  \n",
       "3               宜蘭市中山路二段89號           http://picbear.com/place/372543606136920  \n",
       "4                馬公市中華路353號                                                NaN  \n",
       "5                竹北市中華路226號                          http://www.17ipet.com.tw/  \n",
       "6               新化區忠孝路178號號                 https://www.facebook.com/abubu.pet  \n",
       "7              台東市中興路三段280號                                                NaN  \n",
       "8                台東市新生路269號                                                NaN  \n",
       "9    號, No. 144, 中山路三段, 彰化市                                                NaN  \n",
       "10                   新城鄉北埔村                                                NaN  \n",
       "11            花蓮縣花蓮市中華路351號                                                NaN  \n",
       "12               台東市鐵花路217號                                                NaN  \n",
       "13               宜蘭市泰山路503號                                                NaN  \n",
       "14          大同區民族西路224-226號                       http://www.oscar-pet.com.tw/  \n",
       "15               仁德區中山路491號                       http://www.oscar-pet.com.tw/  \n",
       "16             東區經國路一段786號號               https://www.facebook.com/pm.shop025/  \n",
       "17                東區東光路177號                        http://www.petsmall.com.tw/  \n",
       "18      號, No. 193, 垂楊路, 東區                                                NaN  \n",
       "19                仁愛區忠二路25號                                                NaN  \n",
       "20               潮州鎮延平路211號                       http://www.oscar-pet.com.tw/  \n",
       "21              中西區大同路一段62號                  https://www.facebook.com/dog1209/  \n",
       "22              仁愛區愛四路8-10號                                                NaN  \n",
       "23                   和美鎮嘉寶里                                                NaN  \n",
       "24            中西區湖美一街26巷21號  http://tw.user.bid.yahoo.com/tw/booth/gogohous...  \n",
       "25              南屯區向心南路730號                                                NaN  \n",
       "26        安南區安中路一段130巷16-3號  https://www.facebook.com/cathome0912010135/tim...  \n",
       "27               香山區經國路三段8號                        http://www.petsmall.com.tw/  \n",
       "28                宜蘭市和睦路65號                                                NaN  \n",
       "29               樹林區大安路165號                    https://m.facebook.com/123Pets/  \n",
       "..                      ...                                                ...  \n",
       "876           新豐鄉新興路767巷31號                    http://fayechen.wix.com/funlife  \n",
       "877             三峽區大勇路18-2號                                                NaN  \n",
       "878     澎湖縣馬公市西文里92-1號, 馬公市                                                NaN  \n",
       "879            中西區西門路二段344號           https://www.facebook.com/catsfamily1997/  \n",
       "880             西區仁愛路168之2號          https://www.facebook.com/wanwanlaichiayi/  \n",
       "881  馬公 市東 衛 里 19 鄰 5 之 5 號  https://zh-tw.facebook.com/%E6%BE%8E%E6%B9%96%...  \n",
       "882                東區博愛街45號              https://www.facebook.com/MaJi.5717571  \n",
       "883             台東市中興路二段90號                         http://www.kittensbnb.com/  \n",
       "884               北區育成路190號                    https://www.facebook.com/fgpets  \n",
       "885              中壢區青埔七街13號                   http://spice0519.pixnet.net/blog  \n",
       "886              安平區慶平路499號                                                NaN  \n",
       "887               安南區海環街16號                                                NaN  \n",
       "888              羅東鎮興東路222號         https://www.facebook.com/petlove265?ref=hl  \n",
       "889            大雅區民生路一段362號                                                NaN  \n",
       "890               彰化市三民路69號                                                NaN  \n",
       "891              苓雅區三多三路24號              http://www.facebook.com/GogoYoyoDream  \n",
       "892              三民區自立一路93號                                                NaN  \n",
       "893               西區長榮街308號       https://www.facebook.com/dogs.palace.Chiayi/  \n",
       "894               西螺鎮中山路97號                                                NaN  \n",
       "895            新城鄉佳林村佳林6-6號                                                NaN  \n",
       "896              中山區成功二路29號                                                NaN  \n",
       "897               馬公市中興路73號        http://www.blessedoyster.com.tw/restaurant/  \n",
       "898              中山區北安路472號  https://www.facebook.com/pomaipets/info/?tab=o...  \n",
       "899            台東市中華路二段325號                                                NaN  \n",
       "900  台灣 號, No. 39, 玉春街, 潮州鎮                                                NaN  \n",
       "901            東區衛國街114巷23號                         http://xiaokeai.looker.tw/  \n",
       "902              永康區中華路430號                         http://www.wonderpet.asia/  \n",
       "903             安南區海佃路二段58號                       http://www.oscar-pet.com.tw/  \n",
       "904             竹北市自強北路156號     https://www.facebook.com/duomaomao520/?fref=ts  \n",
       "905            朴子市四維路一段583巷                                                NaN  \n",
       "\n",
       "[906 rows x 22 columns]"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "output"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "output['lat'] = output['geometry'].map(lambda x: x['location']['lat'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": [
    "output['lng'] = output['geometry'].map(lambda x: x['location']['lng'])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style>\n",
       "    .dataframe thead tr:only-child th {\n",
       "        text-align: right;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: left;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>address_components</th>\n",
       "      <th>adr_address</th>\n",
       "      <th>formatted_address</th>\n",
       "      <th>formatted_phone_number</th>\n",
       "      <th>geometry</th>\n",
       "      <th>icon</th>\n",
       "      <th>id</th>\n",
       "      <th>international_phone_number</th>\n",
       "      <th>name</th>\n",
       "      <th>opening_hours</th>\n",
       "      <th>...</th>\n",
       "      <th>reference</th>\n",
       "      <th>reviews</th>\n",
       "      <th>scope</th>\n",
       "      <th>types</th>\n",
       "      <th>url</th>\n",
       "      <th>utc_offset</th>\n",
       "      <th>vicinity</th>\n",
       "      <th>website</th>\n",
       "      <th>lat</th>\n",
       "      <th>lng</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>[{'long_name': '36之2號', 'short_name': '36之2號',...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;238&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>238台灣新北市樹林區樹新路34巷36之2號</td>\n",
       "      <td>02 2682 9988</td>\n",
       "      <td>{'location': {'lat': 24.9946492, 'lng': 121.42...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>617fff9fd05c2bd93f7bfa78cc81c8f9f1f489e5</td>\n",
       "      <td>+886 2 2682 9988</td>\n",
       "      <td>有狗好寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAfpjr28Nh3tIRtKH3i6HY0mQBZ-YkW6t5SqDILE...</td>\n",
       "      <td>[{'author_name': '廖泥', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=17083992417925975005</td>\n",
       "      <td>480</td>\n",
       "      <td>樹林區樹新路34巷36之2號</td>\n",
       "      <td>https://www.facebook.com/goodog9988/</td>\n",
       "      <td>24.994649</td>\n",
       "      <td>121.427588</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>[{'long_name': '132', 'short_name': '132', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;220&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>220台灣新北市板橋區中正路132號</td>\n",
       "      <td>02 2965 6585</td>\n",
       "      <td>{'location': {'lat': 25.015889, 'lng': 121.456...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e0893ebb22aa73017290829b82ed30de7e803dd4</td>\n",
       "      <td>+886 2 2965 6585</td>\n",
       "      <td>馬吉家族寵物館_ 馬吉貓砂</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAADUAeIIEa1EL09KbvkYzzd04QS7RZmKzX5rTIpE...</td>\n",
       "      <td>[{'author_name': 'ruru l', 'author_url': 'http...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=512782104412930707</td>\n",
       "      <td>480</td>\n",
       "      <td>板橋區中正路132號</td>\n",
       "      <td>http://www.machi-family.com/</td>\n",
       "      <td>25.015889</td>\n",
       "      <td>121.456793</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>[{'long_name': '2', 'short_name': '2', 'types'...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;545&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>545台灣南投縣埔里鎮南興街2號之 19 號</td>\n",
       "      <td>0978 719 515</td>\n",
       "      <td>{'location': {'lat': 23.9656185, 'lng': 120.96...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e7f8b2c14dddf2bb96954dad9fcc49db69938955</td>\n",
       "      <td>+886 978 719 515</td>\n",
       "      <td>寵愛衣二衫</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAev5UNl6Pnq2g8RfxmqmpakbonaGWGz9py9o30U...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=469808712778974747</td>\n",
       "      <td>480</td>\n",
       "      <td>埔里鎮南興街2號之 19 號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.965619</td>\n",
       "      <td>120.962234</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>[{'long_name': '89', 'short_name': '89', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;260&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>260台灣宜蘭縣宜蘭市中山路二段89號</td>\n",
       "      <td>03 935 7600</td>\n",
       "      <td>{'location': {'lat': 24.7458867, 'lng': 121.75...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>67aa9b4af0d6fc649816db843be56bd9aa5fb03f</td>\n",
       "      <td>+886 3 935 7600</td>\n",
       "      <td>麻吉寵物生活館宜蘭店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAVxBAfgYikeGJDZk29knd_rAScRhPJvr6djFNHi...</td>\n",
       "      <td>[{'author_name': '林岑軒', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=10620142918041966745</td>\n",
       "      <td>480</td>\n",
       "      <td>宜蘭市中山路二段89號</td>\n",
       "      <td>http://picbear.com/place/372543606136920</td>\n",
       "      <td>24.745887</td>\n",
       "      <td>121.755335</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>[{'long_name': '353', 'short_name': '353', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖縣馬公市中華路353號</td>\n",
       "      <td>06 926 5590</td>\n",
       "      <td>{'location': {'lat': 23.5719086, 'lng': 119.57...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>9cebffdc8e6fb33936915b229ea9a58739519284</td>\n",
       "      <td>+886 6 926 5590</td>\n",
       "      <td>魚樂教父水族寵物館</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAQ3v1sg4QJW4ocuLt1fBITE8ybY2cLfoiA9aMxT...</td>\n",
       "      <td>[{'author_name': '鄧鄧世昌', 'author_url': 'https:...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=5311675580329079185</td>\n",
       "      <td>480</td>\n",
       "      <td>馬公市中華路353號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.571909</td>\n",
       "      <td>119.578194</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>[{'long_name': '竹北市', 'short_name': '竹北市', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹縣竹北市中華路226號</td>\n",
       "      <td>03 656 6633</td>\n",
       "      <td>{'location': {'lat': 24.8311868, 'lng': 121.00...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>8d47a37886a39efcf0fe977dcb6d315875b7da6e</td>\n",
       "      <td>+886 3 656 6633</td>\n",
       "      <td>動物王國寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAANMpc3QsqECaqN1xSTfBKLB-5W4A6VS9t6567Mg...</td>\n",
       "      <td>[{'author_name': 's S', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=12195892991935783651</td>\n",
       "      <td>480</td>\n",
       "      <td>竹北市中華路226號</td>\n",
       "      <td>http://www.17ipet.com.tw/</td>\n",
       "      <td>24.831187</td>\n",
       "      <td>121.002619</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>[{'long_name': '178', 'short_name': '178', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;712&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>712台灣台南市新化區忠孝路178號號</td>\n",
       "      <td>06 598 7079</td>\n",
       "      <td>{'location': {'lat': 23.0374024, 'lng': 120.30...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>c2d1790b27512165aef0c6941ae5aa5bb36302aa</td>\n",
       "      <td>+886 6 598 7079</td>\n",
       "      <td>儷奇寵物生活館 新化館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAHzA1zroSh8wWDcaRs-6u5tbsj7jUGi9Sz5hPAl...</td>\n",
       "      <td>[{'author_name': '洪唯修', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=233836542788744870</td>\n",
       "      <td>480</td>\n",
       "      <td>新化區忠孝路178號號</td>\n",
       "      <td>https://www.facebook.com/abubu.pet</td>\n",
       "      <td>23.037402</td>\n",
       "      <td>120.301901</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>[{'long_name': '台東縣', 'short_name': '台東縣', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市台東市中興路三段280號</td>\n",
       "      <td>08 922 0526</td>\n",
       "      <td>{'location': {'lat': 22.7706254, 'lng': 121.11...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>1cf6851363b25f7683b8483a89c1c4f76a24ae99</td>\n",
       "      <td>+886 8 922 0526</td>\n",
       "      <td>來來寵物工作室</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAZvn8E-Rs2KbpbN3JOdiVrtF6s6XShknxQ-OyGH...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=17066602014284458090</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市中興路三段280號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.770625</td>\n",
       "      <td>121.113064</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>[{'long_name': '269', 'short_name': '269', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市新生路269號</td>\n",
       "      <td>08 933 0306</td>\n",
       "      <td>{'location': {'lat': 22.7570513, 'lng': 121.14...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>a242f827e865ce91adcbd7ccb594954824d16aaf</td>\n",
       "      <td>+886 8 933 0306</td>\n",
       "      <td>范氏愛犬屋(范氏犬貓用品總匯)</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAA5D8grztbPxvmSwT27ntSOIuF034YhUQMxAQQOr...</td>\n",
       "      <td>[{'author_name': '劉木雄', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=4709644583852088623</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市新生路269號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.757051</td>\n",
       "      <td>121.143090</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>[{'long_name': '144', 'short_name': '144', 'ty...</td>\n",
       "      <td>號, &lt;span class=\"street-address\"&gt;No. 144中山路三段&lt;/...</td>\n",
       "      <td>號, No. 144中山路三段彰化市彰化縣台灣 500</td>\n",
       "      <td>04 729 6085</td>\n",
       "      <td>{'location': {'lat': 24.0853662, 'lng': 120.55...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e792a191dc429a7cbd006e00f21f053e8238b520</td>\n",
       "      <td>+886 4 729 6085</td>\n",
       "      <td>晏聖寵物百貨量販店</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAATAabkudkHPSkiTsLV_kikIo2TXGqT0uiqWqMEa...</td>\n",
       "      <td>[{'author_name': 'jenyaw Lay', 'author_url': '...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=16434882717336812037</td>\n",
       "      <td>480</td>\n",
       "      <td>號, No. 144, 中山路三段, 彰化市</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.085366</td>\n",
       "      <td>120.556868</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>10</th>\n",
       "      <td>[{'long_name': '北埔村', 'short_name': '北埔村', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;971&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>971台灣花蓮縣新城鄉北埔村</td>\n",
       "      <td>NaN</td>\n",
       "      <td>{'location': {'lat': 24.0277836, 'lng': 121.60...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f14d64330038d965fbe9b038cee3c09afbf54c5f</td>\n",
       "      <td>NaN</td>\n",
       "      <td>嘎比烏姆寵物親善公園</td>\n",
       "      <td>{'open_now': True, 'periods': [{'open': {'day'...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAGNOFJdIADdU8NN74a9rlfYm-pS6i8IDzd-18bF...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[park, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=601436564154030897</td>\n",
       "      <td>480</td>\n",
       "      <td>新城鄉北埔村</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.027784</td>\n",
       "      <td>121.602570</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>11</th>\n",
       "      <td>[{'long_name': '台灣', 'short_name': 'TW', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;970&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>970台灣花蓮縣花蓮市花蓮縣花蓮市中華路351號</td>\n",
       "      <td>03 836 1616</td>\n",
       "      <td>{'location': {'lat': 23.974661, 'lng': 121.596...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>45287761de7deb71fbdcd34ac356e5f5afb5d519</td>\n",
       "      <td>+886 3 836 1616</td>\n",
       "      <td>翠鳴寵物軒</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAuIgnfMSsOcNWQE4ocEGvNrx8frEDwnzXQMc-P1...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=308745779026355819</td>\n",
       "      <td>480</td>\n",
       "      <td>花蓮縣花蓮市中華路351號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.974661</td>\n",
       "      <td>121.596084</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>12</th>\n",
       "      <td>[{'long_name': '217', 'short_name': '217', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市鐵花路217號</td>\n",
       "      <td>08 933 5008</td>\n",
       "      <td>{'location': {'lat': 22.7499621, 'lng': 121.14...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>4962f0c3d99ce1b09decddab9b96e96fa3104747</td>\n",
       "      <td>+886 8 933 5008</td>\n",
       "      <td>狗仔店寵物美容用品館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAADOpJFZjptvRdZnX7WqT4o5dAngxKQ2yCiZPCr2...</td>\n",
       "      <td>[{'author_name': '林果', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=15674708651462881970</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市鐵花路217號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.749962</td>\n",
       "      <td>121.149765</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>13</th>\n",
       "      <td>[{'long_name': '503號', 'short_name': '503號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;260&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>260台灣宜蘭縣宜蘭市泰山路503號</td>\n",
       "      <td>0905 787 902</td>\n",
       "      <td>{'location': {'lat': 24.7488359, 'lng': 121.73...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>1cf2d3b40fd0bb81a455325d09d7e8d3ef15e7a4</td>\n",
       "      <td>+886 905 787 902</td>\n",
       "      <td>小狗當家寵物沙龍</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAA86DFkn6q2ChDR3fqZlIVf9agQCCIB5xn8dv7m2...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=1770771663689486582</td>\n",
       "      <td>480</td>\n",
       "      <td>宜蘭市泰山路503號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.748836</td>\n",
       "      <td>121.733803</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>14</th>\n",
       "      <td>[{'long_name': '224-226', 'short_name': '224-2...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;103&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>103台灣台北市大同區民族西路224-226號</td>\n",
       "      <td>02 2585 8887</td>\n",
       "      <td>{'location': {'lat': 25.068505, 'lng': 121.512...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>7afb58b8f10da0244c4457ea69c34af44ce7ed05</td>\n",
       "      <td>+886 2 2585 8887</td>\n",
       "      <td>奧斯卡寵物連鎖量販</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAMoIS1KiGonEP89gDxLLHLj3a-dyC8NgkOUrFLb...</td>\n",
       "      <td>[{'author_name': '彌彌陳', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=1159619883477333737</td>\n",
       "      <td>480</td>\n",
       "      <td>大同區民族西路224-226號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "      <td>25.068505</td>\n",
       "      <td>121.512978</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>15</th>\n",
       "      <td>[{'long_name': '491', 'short_name': '491', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;71742&lt;/span&gt;&lt;span cl...</td>\n",
       "      <td>71742台灣台南市仁德區中山路491號</td>\n",
       "      <td>06 270 8339</td>\n",
       "      <td>{'location': {'lat': 22.9710771, 'lng': 120.25...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>371fe86417bdc4d4e629d5a351dd70f278381c53</td>\n",
       "      <td>+886 6 270 8339</td>\n",
       "      <td>奧斯卡寵物台南仁德店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAA5muf9bX6sy1P134x63BZobatGzW5U5Id1u4-o...</td>\n",
       "      <td>[{'author_name': '琴妹', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9547440387483416321</td>\n",
       "      <td>480</td>\n",
       "      <td>仁德區中山路491號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "      <td>22.971077</td>\n",
       "      <td>120.254978</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>16</th>\n",
       "      <td>[{'long_name': '786', 'short_name': '786', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市東區經國路一段786號號</td>\n",
       "      <td>03 532 2888</td>\n",
       "      <td>{'location': {'lat': 24.8142141, 'lng': 120.97...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>3ceb418f079cd06806404f9c7c5f8a244cb58fbc</td>\n",
       "      <td>+886 3 532 2888</td>\n",
       "      <td>魚中魚民權店</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAuXUoTCsSrgVxlilX1pkVS1ZIRdDOsyujXTvXD3...</td>\n",
       "      <td>[{'author_name': '許信偉', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=6339962840738951166</td>\n",
       "      <td>480</td>\n",
       "      <td>東區經國路一段786號號</td>\n",
       "      <td>https://www.facebook.com/pm.shop025/</td>\n",
       "      <td>24.814214</td>\n",
       "      <td>120.970770</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>17</th>\n",
       "      <td>[{'long_name': '177號', 'short_name': '177號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市東區東光路177號</td>\n",
       "      <td>03 561 7899</td>\n",
       "      <td>{'location': {'lat': 24.8056797, 'lng': 120.98...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>624a2ba5bb0978130b381acd92954605f672c7c4</td>\n",
       "      <td>+886 3 561 7899</td>\n",
       "      <td>魚中魚貓狗水族大賣場新竹忠孝店</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAGyd2WpmAPD7qcL8qn5gzu9DTrSdfwfWBWrOrVY...</td>\n",
       "      <td>[{'author_name': '王麗新', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[aquarium, store, point_of_interest, establish...</td>\n",
       "      <td>https://maps.google.com/?cid=16815707981374793932</td>\n",
       "      <td>480</td>\n",
       "      <td>東區東光路177號</td>\n",
       "      <td>http://www.petsmall.com.tw/</td>\n",
       "      <td>24.805680</td>\n",
       "      <td>120.986384</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>18</th>\n",
       "      <td>[{'long_name': '193', 'short_name': '193', 'ty...</td>\n",
       "      <td>號, &lt;span class=\"street-address\"&gt;No. 193垂楊路&lt;/sp...</td>\n",
       "      <td>號, No. 193垂楊路東區嘉義市台灣 600</td>\n",
       "      <td>05 216 3535</td>\n",
       "      <td>{'location': {'lat': 23.4743278, 'lng': 120.45...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>2b34971b49d411536d489bce4077d16a5b463d1f</td>\n",
       "      <td>+886 5 216 3535</td>\n",
       "      <td>貓狗大棧垂楊店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAjZyapOGv9em0WVcj6-dtxY1R0DnOdYAj00Z0KI...</td>\n",
       "      <td>[{'author_name': '溫瀅雅', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=17342055396130400675</td>\n",
       "      <td>480</td>\n",
       "      <td>號, No. 193, 垂楊路, 東區</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.474328</td>\n",
       "      <td>120.456187</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>19</th>\n",
       "      <td>[{'long_name': '25', 'short_name': '25', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;200&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>200台灣基隆市仁愛區忠二路25號</td>\n",
       "      <td>02 2425 3747</td>\n",
       "      <td>{'location': {'lat': 25.13014579999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>2d9daca523286eba75aa812ff5a5f83c8c616e5a</td>\n",
       "      <td>+886 2 2425 3747</td>\n",
       "      <td>小犬寵物</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAA7IX6TW5h7MOeQWsy3vyRbsq2QYTHXS-e0xWT0Q...</td>\n",
       "      <td>[{'author_name': 'Misa Yeh', 'author_url': 'ht...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=9845513125318587110</td>\n",
       "      <td>480</td>\n",
       "      <td>仁愛區忠二路25號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>25.130146</td>\n",
       "      <td>121.739849</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>20</th>\n",
       "      <td>[{'long_name': '211', 'short_name': '211', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;920&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>920台灣屏東縣潮州鎮延平路211號</td>\n",
       "      <td>08 788 6000</td>\n",
       "      <td>{'location': {'lat': 22.5567203, 'lng': 120.54...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>a53a5ebcd5d9d4a33d8f98bbc75ab3967257dee5</td>\n",
       "      <td>+886 8 788 6000</td>\n",
       "      <td>奧斯卡寵物連鎖量販【潮州】</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAydi17P9qzTmPp_-0Ehtlp9xNw4ufznK7TJX0aN...</td>\n",
       "      <td>[{'author_name': 'Jefe Yu', 'author_url': 'htt...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=5918987336470017151</td>\n",
       "      <td>480</td>\n",
       "      <td>潮州鎮延平路211號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "      <td>22.556720</td>\n",
       "      <td>120.540226</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>21</th>\n",
       "      <td>[{'long_name': '62', 'short_name': '62', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;700&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>700台灣台南市中西區大同路一段62號</td>\n",
       "      <td>0983 613 997</td>\n",
       "      <td>{'location': {'lat': 22.9871892, 'lng': 120.21...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>3087d1e07f47807a81c135926da65b4cf8dc5be5</td>\n",
       "      <td>+886 983 613 997</td>\n",
       "      <td>美力生寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAeDy1ei5GPBJobDlY8iCRA-WkXkcKm03KCUQVUL...</td>\n",
       "      <td>[{'author_name': 'Vera Lee', 'author_url': 'ht...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9857523961350992552</td>\n",
       "      <td>480</td>\n",
       "      <td>中西區大同路一段62號</td>\n",
       "      <td>https://www.facebook.com/dog1209/</td>\n",
       "      <td>22.987189</td>\n",
       "      <td>120.211183</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>22</th>\n",
       "      <td>[{'long_name': '8-10號', 'short_name': '8-10號',...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;200&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>200台灣基隆市仁愛區愛四路8-10號</td>\n",
       "      <td>02 2427 6055</td>\n",
       "      <td>{'location': {'lat': 25.1276419, 'lng': 121.74...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f93f7541a1fe29a06c3a4d6010627bc9658b211a</td>\n",
       "      <td>+886 2 2427 6055</td>\n",
       "      <td>小寶貝寵物精品</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAaA3XTzgtt5xvpVYfZq-iS4Nwmax1GW4Ov0Xz_0...</td>\n",
       "      <td>[{'author_name': '葉傑', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=12520110923217800508</td>\n",
       "      <td>480</td>\n",
       "      <td>仁愛區愛四路8-10號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>25.127642</td>\n",
       "      <td>121.742908</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>23</th>\n",
       "      <td>[{'long_name': '嘉寶里', 'short_name': '嘉寶里', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;508&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>508台灣彰化縣和美鎮嘉寶里</td>\n",
       "      <td>NaN</td>\n",
       "      <td>{'location': {'lat': 24.1281804, 'lng': 120.52...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>8c8d7a90016df1a946ea22a17384c22199b7e18a</td>\n",
       "      <td>NaN</td>\n",
       "      <td>鼎盛寵物用品有限公司</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAFu8tDRtUeMzYiHVZ6r9muD5sm6kpz52pVbfzL7...</td>\n",
       "      <td>[{'author_name': '林允國', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=10523699125940615350</td>\n",
       "      <td>480</td>\n",
       "      <td>和美鎮嘉寶里</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.128180</td>\n",
       "      <td>120.521182</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>24</th>\n",
       "      <td>[{'long_name': '21', 'short_name': '21', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;700&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>700台灣台南市中西區湖美一街26巷21號</td>\n",
       "      <td>06 250 1816</td>\n",
       "      <td>{'location': {'lat': 23.000302, 'lng': 120.181...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>928e772b3ed6d42b0c80a5afebc95770be0b7980</td>\n",
       "      <td>+886 6 250 1816</td>\n",
       "      <td>狗狗之家-寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAbhV8ni5WJxWBxd7IAJmMP9BavpcbX5JyeeFnBd...</td>\n",
       "      <td>[{'author_name': '韋樺盧', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3532661590925106519</td>\n",
       "      <td>480</td>\n",
       "      <td>中西區湖美一街26巷21號</td>\n",
       "      <td>http://tw.user.bid.yahoo.com/tw/booth/gogohous...</td>\n",
       "      <td>23.000302</td>\n",
       "      <td>120.181888</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>25</th>\n",
       "      <td>[{'long_name': '730', 'short_name': '730', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;408&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>408台灣台中市南屯區向心南路730號</td>\n",
       "      <td>04 2475 1087</td>\n",
       "      <td>{'location': {'lat': 24.13176899999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e69cf445e3a279237ddb246d4e1f39a8cd1b69ff</td>\n",
       "      <td>+886 4 2475 1087</td>\n",
       "      <td>愛樂寵物天地</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAhd-KyIMJgmxeqT2HMrWnME86wKJVssf34staJY...</td>\n",
       "      <td>[{'author_name': 'Andy Chen', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=315662633790840874</td>\n",
       "      <td>480</td>\n",
       "      <td>南屯區向心南路730號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.131769</td>\n",
       "      <td>120.644072</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>26</th>\n",
       "      <td>[{'long_name': '16-3', 'short_name': '16-3', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;709&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>709台灣台南市安南區安中路一段130巷16-3號</td>\n",
       "      <td>0912 010 135</td>\n",
       "      <td>{'location': {'lat': 23.036168, 'lng': 120.208...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e9b330c162f04d7b2015261885eefb68d9d0682e</td>\n",
       "      <td>+886 912 010 135</td>\n",
       "      <td>貓咪船長寵物旅館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAQnjQBAYlcJjh7sLJch4o9ypzx8e5P-tJfVn79s...</td>\n",
       "      <td>[{'author_name': 'wu jh', 'author_url': 'https...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=1728135886817834917</td>\n",
       "      <td>480</td>\n",
       "      <td>安南區安中路一段130巷16-3號</td>\n",
       "      <td>https://www.facebook.com/cathome0912010135/tim...</td>\n",
       "      <td>23.036168</td>\n",
       "      <td>120.208888</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>27</th>\n",
       "      <td>[{'long_name': '8', 'short_name': '8', 'types'...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市香山區經國路三段8號</td>\n",
       "      <td>03 539 8666</td>\n",
       "      <td>{'location': {'lat': 24.8002503, 'lng': 120.95...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>ca57020a9b5d8ec92b4922e805ababad7864257f</td>\n",
       "      <td>+886 3 539 8666</td>\n",
       "      <td>魚中魚</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAWhT1yaO-zzUPbmW1UfKgPWTyaSNvJ74mt3os2Q...</td>\n",
       "      <td>[{'author_name': 'Peter Huang', 'author_url': ...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=2116242952969502225</td>\n",
       "      <td>480</td>\n",
       "      <td>香山區經國路三段8號</td>\n",
       "      <td>http://www.petsmall.com.tw/</td>\n",
       "      <td>24.800250</td>\n",
       "      <td>120.953635</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>28</th>\n",
       "      <td>[{'long_name': '65', 'short_name': '65', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;260&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>260台灣宜蘭縣宜蘭市和睦路65號</td>\n",
       "      <td>03 932 1795</td>\n",
       "      <td>{'location': {'lat': 24.75658469999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>beadda82fb5d80e0031589e0ec5a591a5a4117f4</td>\n",
       "      <td>+886 3 932 1795</td>\n",
       "      <td>東門寵物生活館052</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAmIgUBA9d8V0fJy3Au5vSTPhH-RRwoJI72WU6On...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=11476705576202181724</td>\n",
       "      <td>480</td>\n",
       "      <td>宜蘭市和睦路65號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.756585</td>\n",
       "      <td>121.757280</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29</th>\n",
       "      <td>[{'long_name': '165', 'short_name': '165', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;238&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>238台灣新北市樹林區大安路165號</td>\n",
       "      <td>02 2685 2123</td>\n",
       "      <td>{'location': {'lat': 24.9965019, 'lng': 121.42...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>60ec73140b382364c3a5345205091c00ce6efa6d</td>\n",
       "      <td>+886 2 2685 2123</td>\n",
       "      <td>樹林123寵物超市</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAhTqeWWeb_1AKu7ll9hivyFq3rb_mdaej_x8N3g...</td>\n",
       "      <td>[{'author_name': 'Jason Rd.', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[supermarket, grocery_or_supermarket, pet_stor...</td>\n",
       "      <td>https://maps.google.com/?cid=3455755476502695035</td>\n",
       "      <td>480</td>\n",
       "      <td>樹林區大安路165號</td>\n",
       "      <td>https://m.facebook.com/123Pets/</td>\n",
       "      <td>24.996502</td>\n",
       "      <td>121.421456</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>...</th>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>876</th>\n",
       "      <td>[{'long_name': '新豐鄉', 'short_name': '新豐鄉', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;304&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>304台灣新竹縣新豐鄉新興路767巷31號</td>\n",
       "      <td>0982 161 323</td>\n",
       "      <td>{'location': {'lat': 24.883475, 'lng': 121.010...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>b7bb2e1e79f17d65d2f38abdfeefa9884166cce7</td>\n",
       "      <td>+886 982 161 323</td>\n",
       "      <td>Fun Life飛萊寵物旅館&amp;寵物教育訓練</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAASNCNJe2gYmInWxxT_frLHlU5N6kx1OyUH118Im...</td>\n",
       "      <td>[{'author_name': 'Florina macmay', 'author_url...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=14738889575176944089</td>\n",
       "      <td>480</td>\n",
       "      <td>新豐鄉新興路767巷31號</td>\n",
       "      <td>http://fayechen.wix.com/funlife</td>\n",
       "      <td>24.883475</td>\n",
       "      <td>121.010011</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>877</th>\n",
       "      <td>[{'long_name': '三峽區', 'short_name': '三峽區', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;237&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>237台灣新北市三峽區大勇路18-2號</td>\n",
       "      <td>02 2673 5677</td>\n",
       "      <td>{'location': {'lat': 24.93795, 'lng': 121.3669...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>14632470ba578813817ff462b35d92fc3b15e6bd</td>\n",
       "      <td>+886 2 2673 5677</td>\n",
       "      <td>艾寶寵物美容館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAA6hNkmzf2RQ6CWD-Z8r1frz6wdhP2asyGX9ulnb...</td>\n",
       "      <td>[{'author_name': 'Enny Chen', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=4641181757489819191</td>\n",
       "      <td>480</td>\n",
       "      <td>三峽區大勇路18-2號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.937950</td>\n",
       "      <td>121.366966</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>878</th>\n",
       "      <td>[{'long_name': '马公市', 'short_name': '马公市', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖县马公市澎湖縣馬公市西文里92-1號</td>\n",
       "      <td>06 921 8908</td>\n",
       "      <td>{'location': {'lat': 23.5666267, 'lng': 119.58...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>858ef8ec111403c1315bc91dadbc8cdfebc945ed</td>\n",
       "      <td>+886 6 921 8908</td>\n",
       "      <td>極深水族館-創始店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAAqrjI6ZodluMgDyqft-XH7X0xTFt150Ap7QPld...</td>\n",
       "      <td>[{'author_name': '陳詩潔', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9416242555800848939</td>\n",
       "      <td>480</td>\n",
       "      <td>澎湖縣馬公市西文里92-1號, 馬公市</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.566627</td>\n",
       "      <td>119.585425</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>879</th>\n",
       "      <td>[{'long_name': '344號', 'short_name': '344號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;700&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>700台灣台南市中西區西門路二段344號</td>\n",
       "      <td>06 221 5067</td>\n",
       "      <td>{'location': {'lat': 22.997943, 'lng': 120.200...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>29f05d0507489cc3de944a82fa2f4b1ad14bd1f2</td>\n",
       "      <td>+886 6 221 5067</td>\n",
       "      <td>貓科動物寵物店</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAioY_Vqo3-Tw_H1_9yubZXtlgRYr5Gp09G7JgRD...</td>\n",
       "      <td>[{'author_name': 'Wei Lin', 'author_url': 'htt...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=942224157809692400</td>\n",
       "      <td>480</td>\n",
       "      <td>中西區西門路二段344號</td>\n",
       "      <td>https://www.facebook.com/catsfamily1997/</td>\n",
       "      <td>22.997943</td>\n",
       "      <td>120.200553</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>880</th>\n",
       "      <td>[{'long_name': '西區', 'short_name': '西區', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;600&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>600台灣嘉義市西區仁愛路168之2號</td>\n",
       "      <td>05 236 1286</td>\n",
       "      <td>{'location': {'lat': 23.467814, 'lng': 120.443...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>654703e9f38b246d55699153cf7fda31e9d6de3f</td>\n",
       "      <td>+886 5 236 1286</td>\n",
       "      <td>汪旺來寵物生活館-嘉義仁愛店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAA_LVhyBfJ9TfoLwJolGpHaLvOIPsjWpRcpwkGcK...</td>\n",
       "      <td>[{'author_name': '古偲瑀', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3504680624357325725</td>\n",
       "      <td>480</td>\n",
       "      <td>西區仁愛路168之2號</td>\n",
       "      <td>https://www.facebook.com/wanwanlaichiayi/</td>\n",
       "      <td>23.467814</td>\n",
       "      <td>120.443054</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>881</th>\n",
       "      <td>[{'long_name': '澎湖縣', 'short_name': '澎湖縣', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖縣馬公市馬公 市東 衛 里 19 鄰 5 之 5 號</td>\n",
       "      <td>06 921 0210</td>\n",
       "      <td>{'location': {'lat': 23.57031719999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f9a087148dc2c26f4e98bb38011b0f1a3f8d8fac</td>\n",
       "      <td>+886 6 921 0210</td>\n",
       "      <td>月牙灣寵物民宿 yue ya wan Homestay(原魯道夫)</td>\n",
       "      <td>{'open_now': True, 'periods': [{'open': {'day'...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAiPoyUMKALIUYF1TD41VCi6CG-lerg4QvOf-j8N...</td>\n",
       "      <td>[{'author_name': 'Rogel', 'author_url': 'https...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[lodging, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=4225604857922096844</td>\n",
       "      <td>480</td>\n",
       "      <td>馬公 市東 衛 里 19 鄰 5 之 5 號</td>\n",
       "      <td>https://zh-tw.facebook.com/%E6%BE%8E%E6%B9%96%...</td>\n",
       "      <td>23.570317</td>\n",
       "      <td>119.598759</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>882</th>\n",
       "      <td>[{'long_name': '東區', 'short_name': '東區', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;300&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>300台灣新竹市東區博愛街45號</td>\n",
       "      <td>03 571 7571</td>\n",
       "      <td>{'location': {'lat': 24.797515, 'lng': 120.985...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>bc8d4e0604ac217da6b3499cf37dde38ac8778f8</td>\n",
       "      <td>+886 3 571 7571</td>\n",
       "      <td>灰熊麻吉寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAD8DNsv6TULTYh7obWdR6r9AgqFnN3_EQu7gtcN...</td>\n",
       "      <td>[{'author_name': 'Errol Manuel', 'author_url':...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=254761946176084393</td>\n",
       "      <td>480</td>\n",
       "      <td>東區博愛街45號</td>\n",
       "      <td>https://www.facebook.com/MaJi.5717571</td>\n",
       "      <td>24.797515</td>\n",
       "      <td>120.985021</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>883</th>\n",
       "      <td>[{'long_name': '90', 'short_name': '90', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市中興路二段90號</td>\n",
       "      <td>0963 232 023</td>\n",
       "      <td>{'location': {'lat': 22.7668593, 'lng': 121.13...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>8c6a61b2122e0570615a9db6ca5c88969c583899</td>\n",
       "      <td>+886 963 232 023</td>\n",
       "      <td>台東民宿-小貓兩三隻 (寵物友善民宿)</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAkHdESQb3xDq12w_wJelaB-bVAyT86js5vViatF...</td>\n",
       "      <td>[{'author_name': 'Bambi Huang', 'author_url': ...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[lodging, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=6884899848854975407</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市中興路二段90號</td>\n",
       "      <td>http://www.kittensbnb.com/</td>\n",
       "      <td>22.766859</td>\n",
       "      <td>121.130691</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>884</th>\n",
       "      <td>[{'long_name': '190號', 'short_name': '190號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;704&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>704台灣台南市北區育成路190號</td>\n",
       "      <td>06 252 5416</td>\n",
       "      <td>{'location': {'lat': 23.0182951, 'lng': 120.20...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>cbcdc10e80d07f98748919a43cb9376721d61e65</td>\n",
       "      <td>+886 6 252 5416</td>\n",
       "      <td>花草寵物生活坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAKDg716k0b94qcwHX1lY4au6FTc3mvSKXrQ0SXg...</td>\n",
       "      <td>[{'author_name': 'Lin Stony', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=13014010643447880337</td>\n",
       "      <td>480</td>\n",
       "      <td>北區育成路190號</td>\n",
       "      <td>https://www.facebook.com/fgpets</td>\n",
       "      <td>23.018295</td>\n",
       "      <td>120.206942</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>885</th>\n",
       "      <td>[{'long_name': '13號', 'short_name': '13號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;320&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>320台灣桃園市中壢區青埔七街13號</td>\n",
       "      <td>0955 635 726</td>\n",
       "      <td>{'location': {'lat': 25.004315, 'lng': 121.222...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f8fec2c38467d9f12a9729444a9ce3441f331497</td>\n",
       "      <td>+886 955 635 726</td>\n",
       "      <td>非寵不可寵物美容工作室</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAA6farRcYM90Fh72TQuvk23OAVgvPekKej_owjnp...</td>\n",
       "      <td>[{'author_name': 'polo wang', 'author_url': 'h...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=16837967860213342219</td>\n",
       "      <td>480</td>\n",
       "      <td>中壢區青埔七街13號</td>\n",
       "      <td>http://spice0519.pixnet.net/blog</td>\n",
       "      <td>25.004315</td>\n",
       "      <td>121.222822</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>886</th>\n",
       "      <td>[{'long_name': '499', 'short_name': '499', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;708&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>708台灣台南市安平區慶平路499號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>{'location': {'lat': 22.9970289, 'lng': 120.17...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>82c4a453ec08dadd7047ffe3bd724beb6704b7d3</td>\n",
       "      <td>NaN</td>\n",
       "      <td>Pet's Whisper 寵物私語</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAASB6Olmbf2pe6bBjYehaegFxK0tY0HU8-caNXHo...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=9228201052167496809</td>\n",
       "      <td>480</td>\n",
       "      <td>安平區慶平路499號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.997029</td>\n",
       "      <td>120.172788</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>887</th>\n",
       "      <td>[{'long_name': '安南區', 'short_name': '安南區', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;709&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>709台灣台南市安南區海環街16號</td>\n",
       "      <td>06 247 2503</td>\n",
       "      <td>{'location': {'lat': 23.039425, 'lng': 120.187...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>14f0a59f1cf42a310e27991933ef3d248abcbd38</td>\n",
       "      <td>+886 6 247 2503</td>\n",
       "      <td>酷豆格寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAzax2yT3Sz3qAY1XJV8alay5FDc2TaeJXfiHE_P...</td>\n",
       "      <td>[{'author_name': '陳姿蓉', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=15128870524158334372</td>\n",
       "      <td>480</td>\n",
       "      <td>安南區海環街16號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.039425</td>\n",
       "      <td>120.187188</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>888</th>\n",
       "      <td>[{'long_name': '222號', 'short_name': '222號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;26541&lt;/span&gt;&lt;span cl...</td>\n",
       "      <td>26541台灣宜蘭縣羅東鎮興東路222號</td>\n",
       "      <td>03 957 2996</td>\n",
       "      <td>{'location': {'lat': 24.6823389, 'lng': 121.76...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>a7ca9719398da45ba0825632e192304b94216f52</td>\n",
       "      <td>+886 3 957 2996</td>\n",
       "      <td>寵愛寵物美容生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAD1jMtR1am1ymBCi3DdMP0wawieMz1DBv0GysdP...</td>\n",
       "      <td>[{'author_name': 'Shyuan', 'author_url': 'http...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=5277966298459981110</td>\n",
       "      <td>480</td>\n",
       "      <td>羅東鎮興東路222號</td>\n",
       "      <td>https://www.facebook.com/petlove265?ref=hl</td>\n",
       "      <td>24.682339</td>\n",
       "      <td>121.769910</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>889</th>\n",
       "      <td>[{'long_name': '362', 'short_name': '362', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;428&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>428台灣台中市大雅區民生路一段362號</td>\n",
       "      <td>04 2567 4228</td>\n",
       "      <td>{'location': {'lat': 24.2290866, 'lng': 120.65...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>fd749f7807e998ea02cc68ad49629adbc5a29d9c</td>\n",
       "      <td>+886 4 2567 4228</td>\n",
       "      <td>蘋果寵物美容坊</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAOixoxnmJsmRwKigi04-LnfO2CKYNMpdDmSNMgp...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3871598579868214094</td>\n",
       "      <td>480</td>\n",
       "      <td>大雅區民生路一段362號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.229087</td>\n",
       "      <td>120.653969</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>890</th>\n",
       "      <td>[{'long_name': '69', 'short_name': '69', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;500&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>500台灣彰化縣彰化市三民路69號</td>\n",
       "      <td>04 725 2222</td>\n",
       "      <td>{'location': {'lat': 24.083688, 'lng': 120.540...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>b04f2e46ef5c0bb30835ffcbb08b6c77c32e2998</td>\n",
       "      <td>+886 4 725 2222</td>\n",
       "      <td>狗仔隊寵物用品有限公司三民分公司</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAAkWTCbGfUXw3BwK_XtHjdMn0wMlO9WWp424ayi...</td>\n",
       "      <td>NaN</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=2410805487551538334</td>\n",
       "      <td>480</td>\n",
       "      <td>彰化市三民路69號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.083688</td>\n",
       "      <td>120.540268</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>891</th>\n",
       "      <td>[{'long_name': '24', 'short_name': '24', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;802&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>802台灣高雄市苓雅區三多三路24號</td>\n",
       "      <td>07 333 7165</td>\n",
       "      <td>{'location': {'lat': 22.617082, 'lng': 120.313...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>72e90652617ae11af2409db0d760fc8fcb70b15d</td>\n",
       "      <td>+886 7 333 7165</td>\n",
       "      <td>Yoyo Dream Pet SPA 有夢想寵物坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAA-f0OZ0XWOFiXcOC_zq_2xMBkLxIhElJguXsIO5...</td>\n",
       "      <td>[{'author_name': '陳朱朱', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, spa, store, point_of_interest, est...</td>\n",
       "      <td>https://maps.google.com/?cid=1587446600781086158</td>\n",
       "      <td>480</td>\n",
       "      <td>苓雅區三多三路24號</td>\n",
       "      <td>http://www.facebook.com/GogoYoyoDream</td>\n",
       "      <td>22.617082</td>\n",
       "      <td>120.313291</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>892</th>\n",
       "      <td>[{'long_name': '93號', 'short_name': '93號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;807&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>807台灣高雄市三民區自立一路93號</td>\n",
       "      <td>07 286 2445</td>\n",
       "      <td>{'location': {'lat': 22.6368711, 'lng': 120.29...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>861359c330ae8bd6537ead18e6d373fcb8a992c3</td>\n",
       "      <td>+886 7 286 2445</td>\n",
       "      <td>淘氣族寵物美容</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAq5cqnUGwdtFd3Yo19sZKBxLCi8BJxx3UkUg0tS...</td>\n",
       "      <td>[{'author_name': '陳峻青', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=8811156178929768453</td>\n",
       "      <td>480</td>\n",
       "      <td>三民區自立一路93號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.636871</td>\n",
       "      <td>120.296650</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>893</th>\n",
       "      <td>[{'long_name': '308', 'short_name': '308', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;600&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>600台灣嘉義市西區長榮街308號</td>\n",
       "      <td>05 223 1160</td>\n",
       "      <td>{'location': {'lat': 23.4826903, 'lng': 120.44...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>c179a697532d69407df443f80f11e93f29bd67f5</td>\n",
       "      <td>+886 5 223 1160</td>\n",
       "      <td>狗殿寵物餐廳</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAADB9VWNJd68AOAmBBs-M6xQ9JrCKVzIx-thfZ4c...</td>\n",
       "      <td>[{'author_name': 'walker alan', 'author_url': ...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[restaurant, food, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=3012751480408182719</td>\n",
       "      <td>480</td>\n",
       "      <td>西區長榮街308號</td>\n",
       "      <td>https://www.facebook.com/dogs.palace.Chiayi/</td>\n",
       "      <td>23.482690</td>\n",
       "      <td>120.446319</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>894</th>\n",
       "      <td>[{'long_name': '97號', 'short_name': '97號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;648&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>648台灣雲林縣西螺鎮中山路97號</td>\n",
       "      <td>05 586 4776</td>\n",
       "      <td>{'location': {'lat': 23.79992, 'lng': 120.4621...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>9b20e40605ad5a5e37e467b469370d9165f648f0</td>\n",
       "      <td>+886 5 586 4776</td>\n",
       "      <td>潮流水族館</td>\n",
       "      <td>{'open_now': True, 'periods': [{'open': {'day'...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAjxKrvh_aECBVc-VU7bb8lea2zJr_B7IjINKAug...</td>\n",
       "      <td>[{'author_name': '廖芬郁', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=7124156328865654886</td>\n",
       "      <td>480</td>\n",
       "      <td>西螺鎮中山路97號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.799920</td>\n",
       "      <td>120.462101</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>895</th>\n",
       "      <td>[{'long_name': '6-6', 'short_name': '6-6', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;971&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>971台灣花蓮縣新城鄉佳林村佳林6-6號</td>\n",
       "      <td>0905 631 152</td>\n",
       "      <td>{'location': {'lat': 24.0147788, 'lng': 121.60...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>f9e842c03b20c92f4ff2843bd75a0c6cb7a18143</td>\n",
       "      <td>+886 905 631 152</td>\n",
       "      <td>采雲間寵物</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAMgO2iHKSRXKA5QbCeBkiXr4JdxgZH0TGN0Bwwt...</td>\n",
       "      <td>[{'author_name': '張豆花', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=832846633411226941</td>\n",
       "      <td>480</td>\n",
       "      <td>新城鄉佳林村佳林6-6號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>24.014779</td>\n",
       "      <td>121.602622</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>896</th>\n",
       "      <td>[{'long_name': '29', 'short_name': '29', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;203&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>203台灣基隆市中山區成功二路29號</td>\n",
       "      <td>02 2428 2838</td>\n",
       "      <td>{'location': {'lat': 25.129394, 'lng': 121.736...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>fe793c69bd3073f2acc16481b0f94bf51199be40</td>\n",
       "      <td>+886 2 2428 2838</td>\n",
       "      <td>喬森寵物美容坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAA9YVltkgv0XChUoB26h73rDYcAlfado8naU371-...</td>\n",
       "      <td>[{'author_name': 'Jer-Luen H', 'author_url': '...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=137676516015644987</td>\n",
       "      <td>480</td>\n",
       "      <td>中山區成功二路29號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>25.129394</td>\n",
       "      <td>121.736745</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>897</th>\n",
       "      <td>[{'long_name': '73', 'short_name': '73', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;880&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>880台灣澎湖縣馬公市中興路73號</td>\n",
       "      <td>06 926 2270</td>\n",
       "      <td>{'location': {'lat': 23.56711989999999, 'lng':...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e5b16afe6f8d3ab39249f76865858489d8c247e8</td>\n",
       "      <td>+886 6 926 2270</td>\n",
       "      <td>福牡蠣屋</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAkkQvTiT_bUpjxM-TXLhI3-nADUm62045Aj3KCZ...</td>\n",
       "      <td>[{'author_name': 'Cherry Wei', 'author_url': '...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[restaurant, food, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=4642647903956936219</td>\n",
       "      <td>480</td>\n",
       "      <td>馬公市中興路73號</td>\n",
       "      <td>http://www.blessedoyster.com.tw/restaurant/</td>\n",
       "      <td>23.567120</td>\n",
       "      <td>119.564551</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>898</th>\n",
       "      <td>[{'long_name': '472', 'short_name': '472', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;10491&lt;/span&gt;&lt;span cl...</td>\n",
       "      <td>10491台灣中山區北安路472號</td>\n",
       "      <td>02 2533 0209</td>\n",
       "      <td>{'location': {'lat': 25.079596, 'lng': 121.544...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>deaa5500b2a783f5ff1b5b6b3ea558c09a86b3af</td>\n",
       "      <td>+886 2 2533 0209</td>\n",
       "      <td>啵美寵物生活館大直店</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAZHZ78Iwbxd0CC_bm1U-M-GQxGrLCHJpBhrIpL5...</td>\n",
       "      <td>[{'author_name': '美奈', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=2742845385870630781</td>\n",
       "      <td>480</td>\n",
       "      <td>中山區北安路472號</td>\n",
       "      <td>https://www.facebook.com/pomaipets/info/?tab=o...</td>\n",
       "      <td>25.079596</td>\n",
       "      <td>121.544938</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>899</th>\n",
       "      <td>[{'long_name': '325', 'short_name': '325', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;950&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>950台灣台東縣台東市中華路二段325號</td>\n",
       "      <td>08 934 6366</td>\n",
       "      <td>{'location': {'lat': 22.7431363, 'lng': 121.13...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>5ebf98e114976305d6bf2a23505e1e5cbb0a4e38</td>\n",
       "      <td>+886 8 934 6366</td>\n",
       "      <td>愛犬獸醫院</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAWLuGmFNucQXYgfqQ4F3UtUSfYyG84_lGpONml4...</td>\n",
       "      <td>[{'author_name': '標泰鴻', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[veterinary_care, point_of_interest, establish...</td>\n",
       "      <td>https://maps.google.com/?cid=17026747788241207451</td>\n",
       "      <td>480</td>\n",
       "      <td>台東市中華路二段325號</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.743136</td>\n",
       "      <td>121.135884</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>900</th>\n",
       "      <td>[{'long_name': '39', 'short_name': '39', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;920&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>920台灣屏東縣潮州鎮玉春街39號台灣 號</td>\n",
       "      <td>08 780 2882</td>\n",
       "      <td>{'location': {'lat': 22.5530743, 'lng': 120.54...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>74ed8046e0f6d268e94b0592c5268a394854dd0f</td>\n",
       "      <td>+886 8 780 2882</td>\n",
       "      <td>可愛的熊寵物美容</td>\n",
       "      <td>NaN</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAdub2GIv2hA4v_ripGAX3q_aUCpL79sOeIymcw8...</td>\n",
       "      <td>[{'author_name': '李阿貴', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=12645890109023332610</td>\n",
       "      <td>480</td>\n",
       "      <td>台灣 號, No. 39, 玉春街, 潮州鎮</td>\n",
       "      <td>NaN</td>\n",
       "      <td>22.553074</td>\n",
       "      <td>120.547279</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>901</th>\n",
       "      <td>[{'long_name': '23號', 'short_name': '23號', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;701&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>701台灣台南市東區衛國街114巷23號</td>\n",
       "      <td>06 236 8318</td>\n",
       "      <td>{'location': {'lat': 22.9877875, 'lng': 120.22...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>34a489c71200890a40b4013023f800ff3cfe5134</td>\n",
       "      <td>+886 6 236 8318</td>\n",
       "      <td>小可愛寵物坊</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAApBeirMtyvFBXroLNF5isy-fD-SUaJyKFBgrsCx...</td>\n",
       "      <td>[{'author_name': '千千', 'author_url': 'https://...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[pet_store, store, point_of_interest, establis...</td>\n",
       "      <td>https://maps.google.com/?cid=2067941117032913993</td>\n",
       "      <td>480</td>\n",
       "      <td>東區衛國街114巷23號</td>\n",
       "      <td>http://xiaokeai.looker.tw/</td>\n",
       "      <td>22.987787</td>\n",
       "      <td>120.225094</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>902</th>\n",
       "      <td>[{'long_name': '430', 'short_name': '430', 'ty...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;710&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>710台灣台南市永康區中華路430號</td>\n",
       "      <td>06 302 3005</td>\n",
       "      <td>{'location': {'lat': 23.010452, 'lng': 120.232...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>55282f12623cdd496b3cb2fa58a155958d38deed</td>\n",
       "      <td>+886 6 302 3005</td>\n",
       "      <td>寵物公園(永康店)</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAA-9E6cMDVCxg_n4dW03zlRe0JrGy6Ne8mfLbkkW...</td>\n",
       "      <td>[{'author_name': '林傢伙', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=16352373236115726763</td>\n",
       "      <td>480</td>\n",
       "      <td>永康區中華路430號</td>\n",
       "      <td>http://www.wonderpet.asia/</td>\n",
       "      <td>23.010452</td>\n",
       "      <td>120.232946</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>903</th>\n",
       "      <td>[{'long_name': '58', 'short_name': '58', 'type...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;709&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>709台灣台南市安南區海佃路二段58號</td>\n",
       "      <td>06 245 5666</td>\n",
       "      <td>{'location': {'lat': 23.0309244, 'lng': 120.19...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>e2b16f5444eeb63f686268dacb90641ee7911c88</td>\n",
       "      <td>+886 6 245 5666</td>\n",
       "      <td>奧斯卡寵物連鎖量販</td>\n",
       "      <td>{'open_now': True, 'periods': [{'close': {'day...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAMe4hJrqlmu1qDbiN01CEX5bQe9CnZMq3Pb-kz-...</td>\n",
       "      <td>[{'author_name': '張宜媚', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[store, point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=18078702121754777018</td>\n",
       "      <td>480</td>\n",
       "      <td>安南區海佃路二段58號</td>\n",
       "      <td>http://www.oscar-pet.com.tw/</td>\n",
       "      <td>23.030924</td>\n",
       "      <td>120.190399</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>904</th>\n",
       "      <td>[{'long_name': '156號', 'short_name': '156號', '...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;302&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>302台灣新竹縣竹北市自強北路156號</td>\n",
       "      <td>03 658 5520</td>\n",
       "      <td>{'location': {'lat': 24.8082453, 'lng': 121.02...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>5e9f96ce4c47db1ffc0e5bfc7527be815a7acb53</td>\n",
       "      <td>+886 3 658 5520</td>\n",
       "      <td>躲貓貓寵物生活館</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRRAAAAhyiqIMeBtt7ZQXYx6S3zC9xdOxeqrTmrAER2XK...</td>\n",
       "      <td>[{'author_name': '蔡斯云', 'author_url': 'https:/...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[point_of_interest, establishment]</td>\n",
       "      <td>https://maps.google.com/?cid=6306978859124310260</td>\n",
       "      <td>480</td>\n",
       "      <td>竹北市自強北路156號</td>\n",
       "      <td>https://www.facebook.com/duomaomao520/?fref=ts</td>\n",
       "      <td>24.808245</td>\n",
       "      <td>121.025095</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>905</th>\n",
       "      <td>[{'long_name': '四維路一段583巷', 'short_name': '四維路...</td>\n",
       "      <td>&lt;span class=\"postal-code\"&gt;614&lt;/span&gt;&lt;span clas...</td>\n",
       "      <td>614台灣嘉義縣朴子市四維路一段583巷</td>\n",
       "      <td>05 370 8149</td>\n",
       "      <td>{'location': {'lat': 23.4631768, 'lng': 120.22...</td>\n",
       "      <td>https://maps.gstatic.com/mapfiles/place_api/ic...</td>\n",
       "      <td>6a4d0d897ae0aa7c90f7e55c277008915e90dc22</td>\n",
       "      <td>+886 5 370 8149</td>\n",
       "      <td>仁愛動物醫院</td>\n",
       "      <td>{'open_now': False, 'periods': [{'close': {'da...</td>\n",
       "      <td>...</td>\n",
       "      <td>CmRSAAAAVPgwNnerbwPPpVr6ObU28HoIF9niqzK00uQ73G...</td>\n",
       "      <td>[{'author_name': '台中昌平', 'author_url': 'https:...</td>\n",
       "      <td>GOOGLE</td>\n",
       "      <td>[veterinary_care, point_of_interest, establish...</td>\n",
       "      <td>https://maps.google.com/?cid=9440194852522683626</td>\n",
       "      <td>480</td>\n",
       "      <td>朴子市四維路一段583巷</td>\n",
       "      <td>NaN</td>\n",
       "      <td>23.463177</td>\n",
       "      <td>120.221003</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "<p>906 rows × 24 columns</p>\n",
       "</div>"
      ],
      "text/plain": [
       "                                    address_components  \\\n",
       "0    [{'long_name': '36之2號', 'short_name': '36之2號',...   \n",
       "1    [{'long_name': '132', 'short_name': '132', 'ty...   \n",
       "2    [{'long_name': '2', 'short_name': '2', 'types'...   \n",
       "3    [{'long_name': '89', 'short_name': '89', 'type...   \n",
       "4    [{'long_name': '353', 'short_name': '353', 'ty...   \n",
       "5    [{'long_name': '竹北市', 'short_name': '竹北市', 'ty...   \n",
       "6    [{'long_name': '178', 'short_name': '178', 'ty...   \n",
       "7    [{'long_name': '台東縣', 'short_name': '台東縣', 'ty...   \n",
       "8    [{'long_name': '269', 'short_name': '269', 'ty...   \n",
       "9    [{'long_name': '144', 'short_name': '144', 'ty...   \n",
       "10   [{'long_name': '北埔村', 'short_name': '北埔村', 'ty...   \n",
       "11   [{'long_name': '台灣', 'short_name': 'TW', 'type...   \n",
       "12   [{'long_name': '217', 'short_name': '217', 'ty...   \n",
       "13   [{'long_name': '503號', 'short_name': '503號', '...   \n",
       "14   [{'long_name': '224-226', 'short_name': '224-2...   \n",
       "15   [{'long_name': '491', 'short_name': '491', 'ty...   \n",
       "16   [{'long_name': '786', 'short_name': '786', 'ty...   \n",
       "17   [{'long_name': '177號', 'short_name': '177號', '...   \n",
       "18   [{'long_name': '193', 'short_name': '193', 'ty...   \n",
       "19   [{'long_name': '25', 'short_name': '25', 'type...   \n",
       "20   [{'long_name': '211', 'short_name': '211', 'ty...   \n",
       "21   [{'long_name': '62', 'short_name': '62', 'type...   \n",
       "22   [{'long_name': '8-10號', 'short_name': '8-10號',...   \n",
       "23   [{'long_name': '嘉寶里', 'short_name': '嘉寶里', 'ty...   \n",
       "24   [{'long_name': '21', 'short_name': '21', 'type...   \n",
       "25   [{'long_name': '730', 'short_name': '730', 'ty...   \n",
       "26   [{'long_name': '16-3', 'short_name': '16-3', '...   \n",
       "27   [{'long_name': '8', 'short_name': '8', 'types'...   \n",
       "28   [{'long_name': '65', 'short_name': '65', 'type...   \n",
       "29   [{'long_name': '165', 'short_name': '165', 'ty...   \n",
       "..                                                 ...   \n",
       "876  [{'long_name': '新豐鄉', 'short_name': '新豐鄉', 'ty...   \n",
       "877  [{'long_name': '三峽區', 'short_name': '三峽區', 'ty...   \n",
       "878  [{'long_name': '马公市', 'short_name': '马公市', 'ty...   \n",
       "879  [{'long_name': '344號', 'short_name': '344號', '...   \n",
       "880  [{'long_name': '西區', 'short_name': '西區', 'type...   \n",
       "881  [{'long_name': '澎湖縣', 'short_name': '澎湖縣', 'ty...   \n",
       "882  [{'long_name': '東區', 'short_name': '東區', 'type...   \n",
       "883  [{'long_name': '90', 'short_name': '90', 'type...   \n",
       "884  [{'long_name': '190號', 'short_name': '190號', '...   \n",
       "885  [{'long_name': '13號', 'short_name': '13號', 'ty...   \n",
       "886  [{'long_name': '499', 'short_name': '499', 'ty...   \n",
       "887  [{'long_name': '安南區', 'short_name': '安南區', 'ty...   \n",
       "888  [{'long_name': '222號', 'short_name': '222號', '...   \n",
       "889  [{'long_name': '362', 'short_name': '362', 'ty...   \n",
       "890  [{'long_name': '69', 'short_name': '69', 'type...   \n",
       "891  [{'long_name': '24', 'short_name': '24', 'type...   \n",
       "892  [{'long_name': '93號', 'short_name': '93號', 'ty...   \n",
       "893  [{'long_name': '308', 'short_name': '308', 'ty...   \n",
       "894  [{'long_name': '97號', 'short_name': '97號', 'ty...   \n",
       "895  [{'long_name': '6-6', 'short_name': '6-6', 'ty...   \n",
       "896  [{'long_name': '29', 'short_name': '29', 'type...   \n",
       "897  [{'long_name': '73', 'short_name': '73', 'type...   \n",
       "898  [{'long_name': '472', 'short_name': '472', 'ty...   \n",
       "899  [{'long_name': '325', 'short_name': '325', 'ty...   \n",
       "900  [{'long_name': '39', 'short_name': '39', 'type...   \n",
       "901  [{'long_name': '23號', 'short_name': '23號', 'ty...   \n",
       "902  [{'long_name': '430', 'short_name': '430', 'ty...   \n",
       "903  [{'long_name': '58', 'short_name': '58', 'type...   \n",
       "904  [{'long_name': '156號', 'short_name': '156號', '...   \n",
       "905  [{'long_name': '四維路一段583巷', 'short_name': '四維路...   \n",
       "\n",
       "                                           adr_address  \\\n",
       "0    <span class=\"postal-code\">238</span><span clas...   \n",
       "1    <span class=\"postal-code\">220</span><span clas...   \n",
       "2    <span class=\"postal-code\">545</span><span clas...   \n",
       "3    <span class=\"postal-code\">260</span><span clas...   \n",
       "4    <span class=\"postal-code\">880</span><span clas...   \n",
       "5    <span class=\"postal-code\">300</span><span clas...   \n",
       "6    <span class=\"postal-code\">712</span><span clas...   \n",
       "7    <span class=\"postal-code\">950</span><span clas...   \n",
       "8    <span class=\"postal-code\">950</span><span clas...   \n",
       "9    號, <span class=\"street-address\">No. 144中山路三段</...   \n",
       "10   <span class=\"postal-code\">971</span><span clas...   \n",
       "11   <span class=\"postal-code\">970</span><span clas...   \n",
       "12   <span class=\"postal-code\">950</span><span clas...   \n",
       "13   <span class=\"postal-code\">260</span><span clas...   \n",
       "14   <span class=\"postal-code\">103</span><span clas...   \n",
       "15   <span class=\"postal-code\">71742</span><span cl...   \n",
       "16   <span class=\"postal-code\">300</span><span clas...   \n",
       "17   <span class=\"postal-code\">300</span><span clas...   \n",
       "18   號, <span class=\"street-address\">No. 193垂楊路</sp...   \n",
       "19   <span class=\"postal-code\">200</span><span clas...   \n",
       "20   <span class=\"postal-code\">920</span><span clas...   \n",
       "21   <span class=\"postal-code\">700</span><span clas...   \n",
       "22   <span class=\"postal-code\">200</span><span clas...   \n",
       "23   <span class=\"postal-code\">508</span><span clas...   \n",
       "24   <span class=\"postal-code\">700</span><span clas...   \n",
       "25   <span class=\"postal-code\">408</span><span clas...   \n",
       "26   <span class=\"postal-code\">709</span><span clas...   \n",
       "27   <span class=\"postal-code\">300</span><span clas...   \n",
       "28   <span class=\"postal-code\">260</span><span clas...   \n",
       "29   <span class=\"postal-code\">238</span><span clas...   \n",
       "..                                                 ...   \n",
       "876  <span class=\"postal-code\">304</span><span clas...   \n",
       "877  <span class=\"postal-code\">237</span><span clas...   \n",
       "878  <span class=\"postal-code\">880</span><span clas...   \n",
       "879  <span class=\"postal-code\">700</span><span clas...   \n",
       "880  <span class=\"postal-code\">600</span><span clas...   \n",
       "881  <span class=\"postal-code\">880</span><span clas...   \n",
       "882  <span class=\"postal-code\">300</span><span clas...   \n",
       "883  <span class=\"postal-code\">950</span><span clas...   \n",
       "884  <span class=\"postal-code\">704</span><span clas...   \n",
       "885  <span class=\"postal-code\">320</span><span clas...   \n",
       "886  <span class=\"postal-code\">708</span><span clas...   \n",
       "887  <span class=\"postal-code\">709</span><span clas...   \n",
       "888  <span class=\"postal-code\">26541</span><span cl...   \n",
       "889  <span class=\"postal-code\">428</span><span clas...   \n",
       "890  <span class=\"postal-code\">500</span><span clas...   \n",
       "891  <span class=\"postal-code\">802</span><span clas...   \n",
       "892  <span class=\"postal-code\">807</span><span clas...   \n",
       "893  <span class=\"postal-code\">600</span><span clas...   \n",
       "894  <span class=\"postal-code\">648</span><span clas...   \n",
       "895  <span class=\"postal-code\">971</span><span clas...   \n",
       "896  <span class=\"postal-code\">203</span><span clas...   \n",
       "897  <span class=\"postal-code\">880</span><span clas...   \n",
       "898  <span class=\"postal-code\">10491</span><span cl...   \n",
       "899  <span class=\"postal-code\">950</span><span clas...   \n",
       "900  <span class=\"postal-code\">920</span><span clas...   \n",
       "901  <span class=\"postal-code\">701</span><span clas...   \n",
       "902  <span class=\"postal-code\">710</span><span clas...   \n",
       "903  <span class=\"postal-code\">709</span><span clas...   \n",
       "904  <span class=\"postal-code\">302</span><span clas...   \n",
       "905  <span class=\"postal-code\">614</span><span clas...   \n",
       "\n",
       "                     formatted_address formatted_phone_number  \\\n",
       "0               238台灣新北市樹林區樹新路34巷36之2號           02 2682 9988   \n",
       "1                   220台灣新北市板橋區中正路132號           02 2965 6585   \n",
       "2               545台灣南投縣埔里鎮南興街2號之 19 號           0978 719 515   \n",
       "3                  260台灣宜蘭縣宜蘭市中山路二段89號            03 935 7600   \n",
       "4                   880台灣澎湖縣馬公市中華路353號            06 926 5590   \n",
       "5                   300台灣新竹縣竹北市中華路226號            03 656 6633   \n",
       "6                  712台灣台南市新化區忠孝路178號號            06 598 7079   \n",
       "7              950台灣台東縣台東市台東市中興路三段280號            08 922 0526   \n",
       "8                   950台灣台東縣台東市新生路269號            08 933 0306   \n",
       "9          號, No. 144中山路三段彰化市彰化縣台灣 500            04 729 6085   \n",
       "10                      971台灣花蓮縣新城鄉北埔村                    NaN   \n",
       "11            970台灣花蓮縣花蓮市花蓮縣花蓮市中華路351號            03 836 1616   \n",
       "12                  950台灣台東縣台東市鐵花路217號            08 933 5008   \n",
       "13                  260台灣宜蘭縣宜蘭市泰山路503號           0905 787 902   \n",
       "14             103台灣台北市大同區民族西路224-226號           02 2585 8887   \n",
       "15                71742台灣台南市仁德區中山路491號            06 270 8339   \n",
       "16                300台灣新竹市東區經國路一段786號號            03 532 2888   \n",
       "17                   300台灣新竹市東區東光路177號            03 561 7899   \n",
       "18            號, No. 193垂楊路東區嘉義市台灣 600            05 216 3535   \n",
       "19                   200台灣基隆市仁愛區忠二路25號           02 2425 3747   \n",
       "20                  920台灣屏東縣潮州鎮延平路211號            08 788 6000   \n",
       "21                 700台灣台南市中西區大同路一段62號           0983 613 997   \n",
       "22                 200台灣基隆市仁愛區愛四路8-10號           02 2427 6055   \n",
       "23                      508台灣彰化縣和美鎮嘉寶里                    NaN   \n",
       "24               700台灣台南市中西區湖美一街26巷21號            06 250 1816   \n",
       "25                 408台灣台中市南屯區向心南路730號           04 2475 1087   \n",
       "26           709台灣台南市安南區安中路一段130巷16-3號           0912 010 135   \n",
       "27                  300台灣新竹市香山區經國路三段8號            03 539 8666   \n",
       "28                   260台灣宜蘭縣宜蘭市和睦路65號            03 932 1795   \n",
       "29                  238台灣新北市樹林區大安路165號           02 2685 2123   \n",
       "..                                 ...                    ...   \n",
       "876              304台灣新竹縣新豐鄉新興路767巷31號           0982 161 323   \n",
       "877                237台灣新北市三峽區大勇路18-2號           02 2673 5677   \n",
       "878          880台灣澎湖县马公市澎湖縣馬公市西文里92-1號            06 921 8908   \n",
       "879               700台灣台南市中西區西門路二段344號            06 221 5067   \n",
       "880                600台灣嘉義市西區仁愛路168之2號            05 236 1286   \n",
       "881  880台灣澎湖縣馬公市馬公 市東 衛 里 19 鄰 5 之 5 號            06 921 0210   \n",
       "882                   300台灣新竹市東區博愛街45號            03 571 7571   \n",
       "883                950台灣台東縣台東市中興路二段90號           0963 232 023   \n",
       "884                  704台灣台南市北區育成路190號            06 252 5416   \n",
       "885                 320台灣桃園市中壢區青埔七街13號           0955 635 726   \n",
       "886                 708台灣台南市安平區慶平路499號                    NaN   \n",
       "887                  709台灣台南市安南區海環街16號            06 247 2503   \n",
       "888               26541台灣宜蘭縣羅東鎮興東路222號            03 957 2996   \n",
       "889               428台灣台中市大雅區民生路一段362號           04 2567 4228   \n",
       "890                  500台灣彰化縣彰化市三民路69號            04 725 2222   \n",
       "891                 802台灣高雄市苓雅區三多三路24號            07 333 7165   \n",
       "892                 807台灣高雄市三民區自立一路93號            07 286 2445   \n",
       "893                  600台灣嘉義市西區長榮街308號            05 223 1160   \n",
       "894                  648台灣雲林縣西螺鎮中山路97號            05 586 4776   \n",
       "895               971台灣花蓮縣新城鄉佳林村佳林6-6號           0905 631 152   \n",
       "896                 203台灣基隆市中山區成功二路29號           02 2428 2838   \n",
       "897                  880台灣澎湖縣馬公市中興路73號            06 926 2270   \n",
       "898                  10491台灣中山區北安路472號           02 2533 0209   \n",
       "899               950台灣台東縣台東市中華路二段325號            08 934 6366   \n",
       "900              920台灣屏東縣潮州鎮玉春街39號台灣 號            08 780 2882   \n",
       "901               701台灣台南市東區衛國街114巷23號            06 236 8318   \n",
       "902                 710台灣台南市永康區中華路430號            06 302 3005   \n",
       "903                709台灣台南市安南區海佃路二段58號            06 245 5666   \n",
       "904                302台灣新竹縣竹北市自強北路156號            03 658 5520   \n",
       "905               614台灣嘉義縣朴子市四維路一段583巷            05 370 8149   \n",
       "\n",
       "                                              geometry  \\\n",
       "0    {'location': {'lat': 24.9946492, 'lng': 121.42...   \n",
       "1    {'location': {'lat': 25.015889, 'lng': 121.456...   \n",
       "2    {'location': {'lat': 23.9656185, 'lng': 120.96...   \n",
       "3    {'location': {'lat': 24.7458867, 'lng': 121.75...   \n",
       "4    {'location': {'lat': 23.5719086, 'lng': 119.57...   \n",
       "5    {'location': {'lat': 24.8311868, 'lng': 121.00...   \n",
       "6    {'location': {'lat': 23.0374024, 'lng': 120.30...   \n",
       "7    {'location': {'lat': 22.7706254, 'lng': 121.11...   \n",
       "8    {'location': {'lat': 22.7570513, 'lng': 121.14...   \n",
       "9    {'location': {'lat': 24.0853662, 'lng': 120.55...   \n",
       "10   {'location': {'lat': 24.0277836, 'lng': 121.60...   \n",
       "11   {'location': {'lat': 23.974661, 'lng': 121.596...   \n",
       "12   {'location': {'lat': 22.7499621, 'lng': 121.14...   \n",
       "13   {'location': {'lat': 24.7488359, 'lng': 121.73...   \n",
       "14   {'location': {'lat': 25.068505, 'lng': 121.512...   \n",
       "15   {'location': {'lat': 22.9710771, 'lng': 120.25...   \n",
       "16   {'location': {'lat': 24.8142141, 'lng': 120.97...   \n",
       "17   {'location': {'lat': 24.8056797, 'lng': 120.98...   \n",
       "18   {'location': {'lat': 23.4743278, 'lng': 120.45...   \n",
       "19   {'location': {'lat': 25.13014579999999, 'lng':...   \n",
       "20   {'location': {'lat': 22.5567203, 'lng': 120.54...   \n",
       "21   {'location': {'lat': 22.9871892, 'lng': 120.21...   \n",
       "22   {'location': {'lat': 25.1276419, 'lng': 121.74...   \n",
       "23   {'location': {'lat': 24.1281804, 'lng': 120.52...   \n",
       "24   {'location': {'lat': 23.000302, 'lng': 120.181...   \n",
       "25   {'location': {'lat': 24.13176899999999, 'lng':...   \n",
       "26   {'location': {'lat': 23.036168, 'lng': 120.208...   \n",
       "27   {'location': {'lat': 24.8002503, 'lng': 120.95...   \n",
       "28   {'location': {'lat': 24.75658469999999, 'lng':...   \n",
       "29   {'location': {'lat': 24.9965019, 'lng': 121.42...   \n",
       "..                                                 ...   \n",
       "876  {'location': {'lat': 24.883475, 'lng': 121.010...   \n",
       "877  {'location': {'lat': 24.93795, 'lng': 121.3669...   \n",
       "878  {'location': {'lat': 23.5666267, 'lng': 119.58...   \n",
       "879  {'location': {'lat': 22.997943, 'lng': 120.200...   \n",
       "880  {'location': {'lat': 23.467814, 'lng': 120.443...   \n",
       "881  {'location': {'lat': 23.57031719999999, 'lng':...   \n",
       "882  {'location': {'lat': 24.797515, 'lng': 120.985...   \n",
       "883  {'location': {'lat': 22.7668593, 'lng': 121.13...   \n",
       "884  {'location': {'lat': 23.0182951, 'lng': 120.20...   \n",
       "885  {'location': {'lat': 25.004315, 'lng': 121.222...   \n",
       "886  {'location': {'lat': 22.9970289, 'lng': 120.17...   \n",
       "887  {'location': {'lat': 23.039425, 'lng': 120.187...   \n",
       "888  {'location': {'lat': 24.6823389, 'lng': 121.76...   \n",
       "889  {'location': {'lat': 24.2290866, 'lng': 120.65...   \n",
       "890  {'location': {'lat': 24.083688, 'lng': 120.540...   \n",
       "891  {'location': {'lat': 22.617082, 'lng': 120.313...   \n",
       "892  {'location': {'lat': 22.6368711, 'lng': 120.29...   \n",
       "893  {'location': {'lat': 23.4826903, 'lng': 120.44...   \n",
       "894  {'location': {'lat': 23.79992, 'lng': 120.4621...   \n",
       "895  {'location': {'lat': 24.0147788, 'lng': 121.60...   \n",
       "896  {'location': {'lat': 25.129394, 'lng': 121.736...   \n",
       "897  {'location': {'lat': 23.56711989999999, 'lng':...   \n",
       "898  {'location': {'lat': 25.079596, 'lng': 121.544...   \n",
       "899  {'location': {'lat': 22.7431363, 'lng': 121.13...   \n",
       "900  {'location': {'lat': 22.5530743, 'lng': 120.54...   \n",
       "901  {'location': {'lat': 22.9877875, 'lng': 120.22...   \n",
       "902  {'location': {'lat': 23.010452, 'lng': 120.232...   \n",
       "903  {'location': {'lat': 23.0309244, 'lng': 120.19...   \n",
       "904  {'location': {'lat': 24.8082453, 'lng': 121.02...   \n",
       "905  {'location': {'lat': 23.4631768, 'lng': 120.22...   \n",
       "\n",
       "                                                  icon  \\\n",
       "0    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "1    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "2    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "3    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "4    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "5    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "6    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "7    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "8    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "9    https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "10   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "11   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "12   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "13   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "14   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "15   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "16   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "17   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "18   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "19   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "20   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "21   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "22   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "23   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "24   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "25   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "26   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "27   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "28   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "29   https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "..                                                 ...   \n",
       "876  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "877  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "878  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "879  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "880  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "881  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "882  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "883  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "884  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "885  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "886  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "887  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "888  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "889  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "890  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "891  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "892  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "893  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "894  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "895  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "896  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "897  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "898  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "899  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "900  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "901  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "902  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "903  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "904  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "905  https://maps.gstatic.com/mapfiles/place_api/ic...   \n",
       "\n",
       "                                           id international_phone_number  \\\n",
       "0    617fff9fd05c2bd93f7bfa78cc81c8f9f1f489e5           +886 2 2682 9988   \n",
       "1    e0893ebb22aa73017290829b82ed30de7e803dd4           +886 2 2965 6585   \n",
       "2    e7f8b2c14dddf2bb96954dad9fcc49db69938955           +886 978 719 515   \n",
       "3    67aa9b4af0d6fc649816db843be56bd9aa5fb03f            +886 3 935 7600   \n",
       "4    9cebffdc8e6fb33936915b229ea9a58739519284            +886 6 926 5590   \n",
       "5    8d47a37886a39efcf0fe977dcb6d315875b7da6e            +886 3 656 6633   \n",
       "6    c2d1790b27512165aef0c6941ae5aa5bb36302aa            +886 6 598 7079   \n",
       "7    1cf6851363b25f7683b8483a89c1c4f76a24ae99            +886 8 922 0526   \n",
       "8    a242f827e865ce91adcbd7ccb594954824d16aaf            +886 8 933 0306   \n",
       "9    e792a191dc429a7cbd006e00f21f053e8238b520            +886 4 729 6085   \n",
       "10   f14d64330038d965fbe9b038cee3c09afbf54c5f                        NaN   \n",
       "11   45287761de7deb71fbdcd34ac356e5f5afb5d519            +886 3 836 1616   \n",
       "12   4962f0c3d99ce1b09decddab9b96e96fa3104747            +886 8 933 5008   \n",
       "13   1cf2d3b40fd0bb81a455325d09d7e8d3ef15e7a4           +886 905 787 902   \n",
       "14   7afb58b8f10da0244c4457ea69c34af44ce7ed05           +886 2 2585 8887   \n",
       "15   371fe86417bdc4d4e629d5a351dd70f278381c53            +886 6 270 8339   \n",
       "16   3ceb418f079cd06806404f9c7c5f8a244cb58fbc            +886 3 532 2888   \n",
       "17   624a2ba5bb0978130b381acd92954605f672c7c4            +886 3 561 7899   \n",
       "18   2b34971b49d411536d489bce4077d16a5b463d1f            +886 5 216 3535   \n",
       "19   2d9daca523286eba75aa812ff5a5f83c8c616e5a           +886 2 2425 3747   \n",
       "20   a53a5ebcd5d9d4a33d8f98bbc75ab3967257dee5            +886 8 788 6000   \n",
       "21   3087d1e07f47807a81c135926da65b4cf8dc5be5           +886 983 613 997   \n",
       "22   f93f7541a1fe29a06c3a4d6010627bc9658b211a           +886 2 2427 6055   \n",
       "23   8c8d7a90016df1a946ea22a17384c22199b7e18a                        NaN   \n",
       "24   928e772b3ed6d42b0c80a5afebc95770be0b7980            +886 6 250 1816   \n",
       "25   e69cf445e3a279237ddb246d4e1f39a8cd1b69ff           +886 4 2475 1087   \n",
       "26   e9b330c162f04d7b2015261885eefb68d9d0682e           +886 912 010 135   \n",
       "27   ca57020a9b5d8ec92b4922e805ababad7864257f            +886 3 539 8666   \n",
       "28   beadda82fb5d80e0031589e0ec5a591a5a4117f4            +886 3 932 1795   \n",
       "29   60ec73140b382364c3a5345205091c00ce6efa6d           +886 2 2685 2123   \n",
       "..                                        ...                        ...   \n",
       "876  b7bb2e1e79f17d65d2f38abdfeefa9884166cce7           +886 982 161 323   \n",
       "877  14632470ba578813817ff462b35d92fc3b15e6bd           +886 2 2673 5677   \n",
       "878  858ef8ec111403c1315bc91dadbc8cdfebc945ed            +886 6 921 8908   \n",
       "879  29f05d0507489cc3de944a82fa2f4b1ad14bd1f2            +886 6 221 5067   \n",
       "880  654703e9f38b246d55699153cf7fda31e9d6de3f            +886 5 236 1286   \n",
       "881  f9a087148dc2c26f4e98bb38011b0f1a3f8d8fac            +886 6 921 0210   \n",
       "882  bc8d4e0604ac217da6b3499cf37dde38ac8778f8            +886 3 571 7571   \n",
       "883  8c6a61b2122e0570615a9db6ca5c88969c583899           +886 963 232 023   \n",
       "884  cbcdc10e80d07f98748919a43cb9376721d61e65            +886 6 252 5416   \n",
       "885  f8fec2c38467d9f12a9729444a9ce3441f331497           +886 955 635 726   \n",
       "886  82c4a453ec08dadd7047ffe3bd724beb6704b7d3                        NaN   \n",
       "887  14f0a59f1cf42a310e27991933ef3d248abcbd38            +886 6 247 2503   \n",
       "888  a7ca9719398da45ba0825632e192304b94216f52            +886 3 957 2996   \n",
       "889  fd749f7807e998ea02cc68ad49629adbc5a29d9c           +886 4 2567 4228   \n",
       "890  b04f2e46ef5c0bb30835ffcbb08b6c77c32e2998            +886 4 725 2222   \n",
       "891  72e90652617ae11af2409db0d760fc8fcb70b15d            +886 7 333 7165   \n",
       "892  861359c330ae8bd6537ead18e6d373fcb8a992c3            +886 7 286 2445   \n",
       "893  c179a697532d69407df443f80f11e93f29bd67f5            +886 5 223 1160   \n",
       "894  9b20e40605ad5a5e37e467b469370d9165f648f0            +886 5 586 4776   \n",
       "895  f9e842c03b20c92f4ff2843bd75a0c6cb7a18143           +886 905 631 152   \n",
       "896  fe793c69bd3073f2acc16481b0f94bf51199be40           +886 2 2428 2838   \n",
       "897  e5b16afe6f8d3ab39249f76865858489d8c247e8            +886 6 926 2270   \n",
       "898  deaa5500b2a783f5ff1b5b6b3ea558c09a86b3af           +886 2 2533 0209   \n",
       "899  5ebf98e114976305d6bf2a23505e1e5cbb0a4e38            +886 8 934 6366   \n",
       "900  74ed8046e0f6d268e94b0592c5268a394854dd0f            +886 8 780 2882   \n",
       "901  34a489c71200890a40b4013023f800ff3cfe5134            +886 6 236 8318   \n",
       "902  55282f12623cdd496b3cb2fa58a155958d38deed            +886 6 302 3005   \n",
       "903  e2b16f5444eeb63f686268dacb90641ee7911c88            +886 6 245 5666   \n",
       "904  5e9f96ce4c47db1ffc0e5bfc7527be815a7acb53            +886 3 658 5520   \n",
       "905  6a4d0d897ae0aa7c90f7e55c277008915e90dc22            +886 5 370 8149   \n",
       "\n",
       "                                  name  \\\n",
       "0                             有狗好寵物生活館   \n",
       "1                        馬吉家族寵物館_ 馬吉貓砂   \n",
       "2                                寵愛衣二衫   \n",
       "3                           麻吉寵物生活館宜蘭店   \n",
       "4                            魚樂教父水族寵物館   \n",
       "5                            動物王國寵物生活館   \n",
       "6                          儷奇寵物生活館 新化館   \n",
       "7                              來來寵物工作室   \n",
       "8                      范氏愛犬屋(范氏犬貓用品總匯)   \n",
       "9                            晏聖寵物百貨量販店   \n",
       "10                          嘎比烏姆寵物親善公園   \n",
       "11                               翠鳴寵物軒   \n",
       "12                          狗仔店寵物美容用品館   \n",
       "13                            小狗當家寵物沙龍   \n",
       "14                           奧斯卡寵物連鎖量販   \n",
       "15                          奧斯卡寵物台南仁德店   \n",
       "16                              魚中魚民權店   \n",
       "17                     魚中魚貓狗水族大賣場新竹忠孝店   \n",
       "18                             貓狗大棧垂楊店   \n",
       "19                                小犬寵物   \n",
       "20                       奧斯卡寵物連鎖量販【潮州】   \n",
       "21                            美力生寵物生活館   \n",
       "22                             小寶貝寵物精品   \n",
       "23                          鼎盛寵物用品有限公司   \n",
       "24                          狗狗之家-寵物生活館   \n",
       "25                              愛樂寵物天地   \n",
       "26                            貓咪船長寵物旅館   \n",
       "27                                 魚中魚   \n",
       "28                          東門寵物生活館052   \n",
       "29                           樹林123寵物超市   \n",
       "..                                 ...   \n",
       "876              Fun Life飛萊寵物旅館&寵物教育訓練   \n",
       "877                            艾寶寵物美容館   \n",
       "878                          極深水族館-創始店   \n",
       "879                            貓科動物寵物店   \n",
       "880                     汪旺來寵物生活館-嘉義仁愛店   \n",
       "881  月牙灣寵物民宿 yue ya wan Homestay(原魯道夫)   \n",
       "882                          灰熊麻吉寵物生活館   \n",
       "883                台東民宿-小貓兩三隻 (寵物友善民宿)   \n",
       "884                            花草寵物生活坊   \n",
       "885                        非寵不可寵物美容工作室   \n",
       "886                 Pet's Whisper 寵物私語   \n",
       "887                           酷豆格寵物生活館   \n",
       "888                          寵愛寵物美容生活館   \n",
       "889                            蘋果寵物美容坊   \n",
       "890                   狗仔隊寵物用品有限公司三民分公司   \n",
       "891          Yoyo Dream Pet SPA 有夢想寵物坊   \n",
       "892                            淘氣族寵物美容   \n",
       "893                             狗殿寵物餐廳   \n",
       "894                              潮流水族館   \n",
       "895                              采雲間寵物   \n",
       "896                            喬森寵物美容坊   \n",
       "897                               福牡蠣屋   \n",
       "898                         啵美寵物生活館大直店   \n",
       "899                              愛犬獸醫院   \n",
       "900                           可愛的熊寵物美容   \n",
       "901                             小可愛寵物坊   \n",
       "902                          寵物公園(永康店)   \n",
       "903                          奧斯卡寵物連鎖量販   \n",
       "904                           躲貓貓寵物生活館   \n",
       "905                             仁愛動物醫院   \n",
       "\n",
       "                                         opening_hours     ...      \\\n",
       "0    {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "1    {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "2    {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "3    {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "4                                                  NaN     ...       \n",
       "5    {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "6    {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "7                                                  NaN     ...       \n",
       "8                                                  NaN     ...       \n",
       "9                                                  NaN     ...       \n",
       "10   {'open_now': True, 'periods': [{'open': {'day'...     ...       \n",
       "11   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "12   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "13   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "14   {'open_now': True, 'periods': [{'close': {'day...     ...       \n",
       "15   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "16                                                 NaN     ...       \n",
       "17   {'open_now': True, 'periods': [{'close': {'day...     ...       \n",
       "18   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "19   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "20                                                 NaN     ...       \n",
       "21   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "22                                                 NaN     ...       \n",
       "23                                                 NaN     ...       \n",
       "24   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "25                                                 NaN     ...       \n",
       "26   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "27   {'open_now': True, 'periods': [{'close': {'day...     ...       \n",
       "28                                                 NaN     ...       \n",
       "29   {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "..                                                 ...     ...       \n",
       "876  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "877  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "878  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "879  {'open_now': True, 'periods': [{'close': {'day...     ...       \n",
       "880  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "881  {'open_now': True, 'periods': [{'open': {'day'...     ...       \n",
       "882  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "883                                                NaN     ...       \n",
       "884  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "885  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "886                                                NaN     ...       \n",
       "887  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "888  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "889                                                NaN     ...       \n",
       "890                                                NaN     ...       \n",
       "891  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "892  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "893  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "894  {'open_now': True, 'periods': [{'open': {'day'...     ...       \n",
       "895  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "896  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "897  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "898  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "899  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "900                                                NaN     ...       \n",
       "901  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "902  {'open_now': True, 'periods': [{'close': {'day...     ...       \n",
       "903  {'open_now': True, 'periods': [{'close': {'day...     ...       \n",
       "904  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "905  {'open_now': False, 'periods': [{'close': {'da...     ...       \n",
       "\n",
       "                                             reference  \\\n",
       "0    CmRSAAAAfpjr28Nh3tIRtKH3i6HY0mQBZ-YkW6t5SqDILE...   \n",
       "1    CmRRAAAADUAeIIEa1EL09KbvkYzzd04QS7RZmKzX5rTIpE...   \n",
       "2    CmRRAAAAev5UNl6Pnq2g8RfxmqmpakbonaGWGz9py9o30U...   \n",
       "3    CmRSAAAAVxBAfgYikeGJDZk29knd_rAScRhPJvr6djFNHi...   \n",
       "4    CmRRAAAAQ3v1sg4QJW4ocuLt1fBITE8ybY2cLfoiA9aMxT...   \n",
       "5    CmRSAAAANMpc3QsqECaqN1xSTfBKLB-5W4A6VS9t6567Mg...   \n",
       "6    CmRRAAAAHzA1zroSh8wWDcaRs-6u5tbsj7jUGi9Sz5hPAl...   \n",
       "7    CmRSAAAAZvn8E-Rs2KbpbN3JOdiVrtF6s6XShknxQ-OyGH...   \n",
       "8    CmRRAAAA5D8grztbPxvmSwT27ntSOIuF034YhUQMxAQQOr...   \n",
       "9    CmRSAAAATAabkudkHPSkiTsLV_kikIo2TXGqT0uiqWqMEa...   \n",
       "10   CmRRAAAAGNOFJdIADdU8NN74a9rlfYm-pS6i8IDzd-18bF...   \n",
       "11   CmRRAAAAuIgnfMSsOcNWQE4ocEGvNrx8frEDwnzXQMc-P1...   \n",
       "12   CmRSAAAADOpJFZjptvRdZnX7WqT4o5dAngxKQ2yCiZPCr2...   \n",
       "13   CmRRAAAA86DFkn6q2ChDR3fqZlIVf9agQCCIB5xn8dv7m2...   \n",
       "14   CmRRAAAAMoIS1KiGonEP89gDxLLHLj3a-dyC8NgkOUrFLb...   \n",
       "15   CmRSAAAAA5muf9bX6sy1P134x63BZobatGzW5U5Id1u4-o...   \n",
       "16   CmRRAAAAuXUoTCsSrgVxlilX1pkVS1ZIRdDOsyujXTvXD3...   \n",
       "17   CmRSAAAAGyd2WpmAPD7qcL8qn5gzu9DTrSdfwfWBWrOrVY...   \n",
       "18   CmRSAAAAjZyapOGv9em0WVcj6-dtxY1R0DnOdYAj00Z0KI...   \n",
       "19   CmRSAAAA7IX6TW5h7MOeQWsy3vyRbsq2QYTHXS-e0xWT0Q...   \n",
       "20   CmRRAAAAydi17P9qzTmPp_-0Ehtlp9xNw4ufznK7TJX0aN...   \n",
       "21   CmRSAAAAeDy1ei5GPBJobDlY8iCRA-WkXkcKm03KCUQVUL...   \n",
       "22   CmRSAAAAaA3XTzgtt5xvpVYfZq-iS4Nwmax1GW4Ov0Xz_0...   \n",
       "23   CmRSAAAAFu8tDRtUeMzYiHVZ6r9muD5sm6kpz52pVbfzL7...   \n",
       "24   CmRRAAAAbhV8ni5WJxWBxd7IAJmMP9BavpcbX5JyeeFnBd...   \n",
       "25   CmRRAAAAhd-KyIMJgmxeqT2HMrWnME86wKJVssf34staJY...   \n",
       "26   CmRRAAAAQnjQBAYlcJjh7sLJch4o9ypzx8e5P-tJfVn79s...   \n",
       "27   CmRRAAAAWhT1yaO-zzUPbmW1UfKgPWTyaSNvJ74mt3os2Q...   \n",
       "28   CmRSAAAAmIgUBA9d8V0fJy3Au5vSTPhH-RRwoJI72WU6On...   \n",
       "29   CmRRAAAAhTqeWWeb_1AKu7ll9hivyFq3rb_mdaej_x8N3g...   \n",
       "..                                                 ...   \n",
       "876  CmRSAAAASNCNJe2gYmInWxxT_frLHlU5N6kx1OyUH118Im...   \n",
       "877  CmRRAAAA6hNkmzf2RQ6CWD-Z8r1frz6wdhP2asyGX9ulnb...   \n",
       "878  CmRSAAAAAqrjI6ZodluMgDyqft-XH7X0xTFt150Ap7QPld...   \n",
       "879  CmRRAAAAioY_Vqo3-Tw_H1_9yubZXtlgRYr5Gp09G7JgRD...   \n",
       "880  CmRRAAAA_LVhyBfJ9TfoLwJolGpHaLvOIPsjWpRcpwkGcK...   \n",
       "881  CmRRAAAAiPoyUMKALIUYF1TD41VCi6CG-lerg4QvOf-j8N...   \n",
       "882  CmRRAAAAD8DNsv6TULTYh7obWdR6r9AgqFnN3_EQu7gtcN...   \n",
       "883  CmRRAAAAkHdESQb3xDq12w_wJelaB-bVAyT86js5vViatF...   \n",
       "884  CmRSAAAAKDg716k0b94qcwHX1lY4au6FTc3mvSKXrQ0SXg...   \n",
       "885  CmRSAAAA6farRcYM90Fh72TQuvk23OAVgvPekKej_owjnp...   \n",
       "886  CmRSAAAASB6Olmbf2pe6bBjYehaegFxK0tY0HU8-caNXHo...   \n",
       "887  CmRSAAAAzax2yT3Sz3qAY1XJV8alay5FDc2TaeJXfiHE_P...   \n",
       "888  CmRRAAAAD1jMtR1am1ymBCi3DdMP0wawieMz1DBv0GysdP...   \n",
       "889  CmRRAAAAOixoxnmJsmRwKigi04-LnfO2CKYNMpdDmSNMgp...   \n",
       "890  CmRRAAAAAkWTCbGfUXw3BwK_XtHjdMn0wMlO9WWp424ayi...   \n",
       "891  CmRRAAAA-f0OZ0XWOFiXcOC_zq_2xMBkLxIhElJguXsIO5...   \n",
       "892  CmRRAAAAq5cqnUGwdtFd3Yo19sZKBxLCi8BJxx3UkUg0tS...   \n",
       "893  CmRRAAAADB9VWNJd68AOAmBBs-M6xQ9JrCKVzIx-thfZ4c...   \n",
       "894  CmRRAAAAjxKrvh_aECBVc-VU7bb8lea2zJr_B7IjINKAug...   \n",
       "895  CmRRAAAAMgO2iHKSRXKA5QbCeBkiXr4JdxgZH0TGN0Bwwt...   \n",
       "896  CmRRAAAA9YVltkgv0XChUoB26h73rDYcAlfado8naU371-...   \n",
       "897  CmRRAAAAkkQvTiT_bUpjxM-TXLhI3-nADUm62045Aj3KCZ...   \n",
       "898  CmRRAAAAZHZ78Iwbxd0CC_bm1U-M-GQxGrLCHJpBhrIpL5...   \n",
       "899  CmRSAAAAWLuGmFNucQXYgfqQ4F3UtUSfYyG84_lGpONml4...   \n",
       "900  CmRSAAAAdub2GIv2hA4v_ripGAX3q_aUCpL79sOeIymcw8...   \n",
       "901  CmRRAAAApBeirMtyvFBXroLNF5isy-fD-SUaJyKFBgrsCx...   \n",
       "902  CmRSAAAA-9E6cMDVCxg_n4dW03zlRe0JrGy6Ne8mfLbkkW...   \n",
       "903  CmRSAAAAMe4hJrqlmu1qDbiN01CEX5bQe9CnZMq3Pb-kz-...   \n",
       "904  CmRRAAAAhyiqIMeBtt7ZQXYx6S3zC9xdOxeqrTmrAER2XK...   \n",
       "905  CmRSAAAAVPgwNnerbwPPpVr6ObU28HoIF9niqzK00uQ73G...   \n",
       "\n",
       "                                               reviews   scope  \\\n",
       "0    [{'author_name': '廖泥', 'author_url': 'https://...  GOOGLE   \n",
       "1    [{'author_name': 'ruru l', 'author_url': 'http...  GOOGLE   \n",
       "2                                                  NaN  GOOGLE   \n",
       "3    [{'author_name': '林岑軒', 'author_url': 'https:/...  GOOGLE   \n",
       "4    [{'author_name': '鄧鄧世昌', 'author_url': 'https:...  GOOGLE   \n",
       "5    [{'author_name': 's S', 'author_url': 'https:/...  GOOGLE   \n",
       "6    [{'author_name': '洪唯修', 'author_url': 'https:/...  GOOGLE   \n",
       "7                                                  NaN  GOOGLE   \n",
       "8    [{'author_name': '劉木雄', 'author_url': 'https:/...  GOOGLE   \n",
       "9    [{'author_name': 'jenyaw Lay', 'author_url': '...  GOOGLE   \n",
       "10                                                 NaN  GOOGLE   \n",
       "11                                                 NaN  GOOGLE   \n",
       "12   [{'author_name': '林果', 'author_url': 'https://...  GOOGLE   \n",
       "13                                                 NaN  GOOGLE   \n",
       "14   [{'author_name': '彌彌陳', 'author_url': 'https:/...  GOOGLE   \n",
       "15   [{'author_name': '琴妹', 'author_url': 'https://...  GOOGLE   \n",
       "16   [{'author_name': '許信偉', 'author_url': 'https:/...  GOOGLE   \n",
       "17   [{'author_name': '王麗新', 'author_url': 'https:/...  GOOGLE   \n",
       "18   [{'author_name': '溫瀅雅', 'author_url': 'https:/...  GOOGLE   \n",
       "19   [{'author_name': 'Misa Yeh', 'author_url': 'ht...  GOOGLE   \n",
       "20   [{'author_name': 'Jefe Yu', 'author_url': 'htt...  GOOGLE   \n",
       "21   [{'author_name': 'Vera Lee', 'author_url': 'ht...  GOOGLE   \n",
       "22   [{'author_name': '葉傑', 'author_url': 'https://...  GOOGLE   \n",
       "23   [{'author_name': '林允國', 'author_url': 'https:/...  GOOGLE   \n",
       "24   [{'author_name': '韋樺盧', 'author_url': 'https:/...  GOOGLE   \n",
       "25   [{'author_name': 'Andy Chen', 'author_url': 'h...  GOOGLE   \n",
       "26   [{'author_name': 'wu jh', 'author_url': 'https...  GOOGLE   \n",
       "27   [{'author_name': 'Peter Huang', 'author_url': ...  GOOGLE   \n",
       "28                                                 NaN  GOOGLE   \n",
       "29   [{'author_name': 'Jason Rd.', 'author_url': 'h...  GOOGLE   \n",
       "..                                                 ...     ...   \n",
       "876  [{'author_name': 'Florina macmay', 'author_url...  GOOGLE   \n",
       "877  [{'author_name': 'Enny Chen', 'author_url': 'h...  GOOGLE   \n",
       "878  [{'author_name': '陳詩潔', 'author_url': 'https:/...  GOOGLE   \n",
       "879  [{'author_name': 'Wei Lin', 'author_url': 'htt...  GOOGLE   \n",
       "880  [{'author_name': '古偲瑀', 'author_url': 'https:/...  GOOGLE   \n",
       "881  [{'author_name': 'Rogel', 'author_url': 'https...  GOOGLE   \n",
       "882  [{'author_name': 'Errol Manuel', 'author_url':...  GOOGLE   \n",
       "883  [{'author_name': 'Bambi Huang', 'author_url': ...  GOOGLE   \n",
       "884  [{'author_name': 'Lin Stony', 'author_url': 'h...  GOOGLE   \n",
       "885  [{'author_name': 'polo wang', 'author_url': 'h...  GOOGLE   \n",
       "886                                                NaN  GOOGLE   \n",
       "887  [{'author_name': '陳姿蓉', 'author_url': 'https:/...  GOOGLE   \n",
       "888  [{'author_name': 'Shyuan', 'author_url': 'http...  GOOGLE   \n",
       "889                                                NaN  GOOGLE   \n",
       "890                                                NaN  GOOGLE   \n",
       "891  [{'author_name': '陳朱朱', 'author_url': 'https:/...  GOOGLE   \n",
       "892  [{'author_name': '陳峻青', 'author_url': 'https:/...  GOOGLE   \n",
       "893  [{'author_name': 'walker alan', 'author_url': ...  GOOGLE   \n",
       "894  [{'author_name': '廖芬郁', 'author_url': 'https:/...  GOOGLE   \n",
       "895  [{'author_name': '張豆花', 'author_url': 'https:/...  GOOGLE   \n",
       "896  [{'author_name': 'Jer-Luen H', 'author_url': '...  GOOGLE   \n",
       "897  [{'author_name': 'Cherry Wei', 'author_url': '...  GOOGLE   \n",
       "898  [{'author_name': '美奈', 'author_url': 'https://...  GOOGLE   \n",
       "899  [{'author_name': '標泰鴻', 'author_url': 'https:/...  GOOGLE   \n",
       "900  [{'author_name': '李阿貴', 'author_url': 'https:/...  GOOGLE   \n",
       "901  [{'author_name': '千千', 'author_url': 'https://...  GOOGLE   \n",
       "902  [{'author_name': '林傢伙', 'author_url': 'https:/...  GOOGLE   \n",
       "903  [{'author_name': '張宜媚', 'author_url': 'https:/...  GOOGLE   \n",
       "904  [{'author_name': '蔡斯云', 'author_url': 'https:/...  GOOGLE   \n",
       "905  [{'author_name': '台中昌平', 'author_url': 'https:...  GOOGLE   \n",
       "\n",
       "                                                 types  \\\n",
       "0    [pet_store, store, point_of_interest, establis...   \n",
       "1    [pet_store, store, point_of_interest, establis...   \n",
       "2            [store, point_of_interest, establishment]   \n",
       "3            [store, point_of_interest, establishment]   \n",
       "4                   [point_of_interest, establishment]   \n",
       "5            [store, point_of_interest, establishment]   \n",
       "6    [pet_store, store, point_of_interest, establis...   \n",
       "7                   [point_of_interest, establishment]   \n",
       "8                   [point_of_interest, establishment]   \n",
       "9            [store, point_of_interest, establishment]   \n",
       "10            [park, point_of_interest, establishment]   \n",
       "11                  [point_of_interest, establishment]   \n",
       "12           [store, point_of_interest, establishment]   \n",
       "13   [pet_store, store, point_of_interest, establis...   \n",
       "14   [pet_store, store, point_of_interest, establis...   \n",
       "15   [pet_store, store, point_of_interest, establis...   \n",
       "16   [pet_store, store, point_of_interest, establis...   \n",
       "17   [aquarium, store, point_of_interest, establish...   \n",
       "18           [store, point_of_interest, establishment]   \n",
       "19           [store, point_of_interest, establishment]   \n",
       "20   [pet_store, store, point_of_interest, establis...   \n",
       "21   [pet_store, store, point_of_interest, establis...   \n",
       "22   [pet_store, store, point_of_interest, establis...   \n",
       "23           [store, point_of_interest, establishment]   \n",
       "24   [pet_store, store, point_of_interest, establis...   \n",
       "25           [store, point_of_interest, establishment]   \n",
       "26   [pet_store, store, point_of_interest, establis...   \n",
       "27           [store, point_of_interest, establishment]   \n",
       "28                  [point_of_interest, establishment]   \n",
       "29   [supermarket, grocery_or_supermarket, pet_stor...   \n",
       "..                                                 ...   \n",
       "876                 [point_of_interest, establishment]   \n",
       "877  [pet_store, store, point_of_interest, establis...   \n",
       "878  [pet_store, store, point_of_interest, establis...   \n",
       "879  [pet_store, store, point_of_interest, establis...   \n",
       "880  [pet_store, store, point_of_interest, establis...   \n",
       "881        [lodging, point_of_interest, establishment]   \n",
       "882          [store, point_of_interest, establishment]   \n",
       "883        [lodging, point_of_interest, establishment]   \n",
       "884  [pet_store, store, point_of_interest, establis...   \n",
       "885  [pet_store, store, point_of_interest, establis...   \n",
       "886  [pet_store, store, point_of_interest, establis...   \n",
       "887  [pet_store, store, point_of_interest, establis...   \n",
       "888  [pet_store, store, point_of_interest, establis...   \n",
       "889  [pet_store, store, point_of_interest, establis...   \n",
       "890                 [point_of_interest, establishment]   \n",
       "891  [pet_store, spa, store, point_of_interest, est...   \n",
       "892  [pet_store, store, point_of_interest, establis...   \n",
       "893  [restaurant, food, point_of_interest, establis...   \n",
       "894  [pet_store, store, point_of_interest, establis...   \n",
       "895                 [point_of_interest, establishment]   \n",
       "896  [pet_store, store, point_of_interest, establis...   \n",
       "897  [restaurant, food, point_of_interest, establis...   \n",
       "898  [pet_store, store, point_of_interest, establis...   \n",
       "899  [veterinary_care, point_of_interest, establish...   \n",
       "900                 [point_of_interest, establishment]   \n",
       "901  [pet_store, store, point_of_interest, establis...   \n",
       "902          [store, point_of_interest, establishment]   \n",
       "903          [store, point_of_interest, establishment]   \n",
       "904                 [point_of_interest, establishment]   \n",
       "905  [veterinary_care, point_of_interest, establish...   \n",
       "\n",
       "                                                   url utc_offset  \\\n",
       "0    https://maps.google.com/?cid=17083992417925975005        480   \n",
       "1      https://maps.google.com/?cid=512782104412930707        480   \n",
       "2      https://maps.google.com/?cid=469808712778974747        480   \n",
       "3    https://maps.google.com/?cid=10620142918041966745        480   \n",
       "4     https://maps.google.com/?cid=5311675580329079185        480   \n",
       "5    https://maps.google.com/?cid=12195892991935783651        480   \n",
       "6      https://maps.google.com/?cid=233836542788744870        480   \n",
       "7    https://maps.google.com/?cid=17066602014284458090        480   \n",
       "8     https://maps.google.com/?cid=4709644583852088623        480   \n",
       "9    https://maps.google.com/?cid=16434882717336812037        480   \n",
       "10     https://maps.google.com/?cid=601436564154030897        480   \n",
       "11     https://maps.google.com/?cid=308745779026355819        480   \n",
       "12   https://maps.google.com/?cid=15674708651462881970        480   \n",
       "13    https://maps.google.com/?cid=1770771663689486582        480   \n",
       "14    https://maps.google.com/?cid=1159619883477333737        480   \n",
       "15    https://maps.google.com/?cid=9547440387483416321        480   \n",
       "16    https://maps.google.com/?cid=6339962840738951166        480   \n",
       "17   https://maps.google.com/?cid=16815707981374793932        480   \n",
       "18   https://maps.google.com/?cid=17342055396130400675        480   \n",
       "19    https://maps.google.com/?cid=9845513125318587110        480   \n",
       "20    https://maps.google.com/?cid=5918987336470017151        480   \n",
       "21    https://maps.google.com/?cid=9857523961350992552        480   \n",
       "22   https://maps.google.com/?cid=12520110923217800508        480   \n",
       "23   https://maps.google.com/?cid=10523699125940615350        480   \n",
       "24    https://maps.google.com/?cid=3532661590925106519        480   \n",
       "25     https://maps.google.com/?cid=315662633790840874        480   \n",
       "26    https://maps.google.com/?cid=1728135886817834917        480   \n",
       "27    https://maps.google.com/?cid=2116242952969502225        480   \n",
       "28   https://maps.google.com/?cid=11476705576202181724        480   \n",
       "29    https://maps.google.com/?cid=3455755476502695035        480   \n",
       "..                                                 ...        ...   \n",
       "876  https://maps.google.com/?cid=14738889575176944089        480   \n",
       "877   https://maps.google.com/?cid=4641181757489819191        480   \n",
       "878   https://maps.google.com/?cid=9416242555800848939        480   \n",
       "879    https://maps.google.com/?cid=942224157809692400        480   \n",
       "880   https://maps.google.com/?cid=3504680624357325725        480   \n",
       "881   https://maps.google.com/?cid=4225604857922096844        480   \n",
       "882    https://maps.google.com/?cid=254761946176084393        480   \n",
       "883   https://maps.google.com/?cid=6884899848854975407        480   \n",
       "884  https://maps.google.com/?cid=13014010643447880337        480   \n",
       "885  https://maps.google.com/?cid=16837967860213342219        480   \n",
       "886   https://maps.google.com/?cid=9228201052167496809        480   \n",
       "887  https://maps.google.com/?cid=15128870524158334372        480   \n",
       "888   https://maps.google.com/?cid=5277966298459981110        480   \n",
       "889   https://maps.google.com/?cid=3871598579868214094        480   \n",
       "890   https://maps.google.com/?cid=2410805487551538334        480   \n",
       "891   https://maps.google.com/?cid=1587446600781086158        480   \n",
       "892   https://maps.google.com/?cid=8811156178929768453        480   \n",
       "893   https://maps.google.com/?cid=3012751480408182719        480   \n",
       "894   https://maps.google.com/?cid=7124156328865654886        480   \n",
       "895    https://maps.google.com/?cid=832846633411226941        480   \n",
       "896    https://maps.google.com/?cid=137676516015644987        480   \n",
       "897   https://maps.google.com/?cid=4642647903956936219        480   \n",
       "898   https://maps.google.com/?cid=2742845385870630781        480   \n",
       "899  https://maps.google.com/?cid=17026747788241207451        480   \n",
       "900  https://maps.google.com/?cid=12645890109023332610        480   \n",
       "901   https://maps.google.com/?cid=2067941117032913993        480   \n",
       "902  https://maps.google.com/?cid=16352373236115726763        480   \n",
       "903  https://maps.google.com/?cid=18078702121754777018        480   \n",
       "904   https://maps.google.com/?cid=6306978859124310260        480   \n",
       "905   https://maps.google.com/?cid=9440194852522683626        480   \n",
       "\n",
       "                   vicinity  \\\n",
       "0            樹林區樹新路34巷36之2號   \n",
       "1                板橋區中正路132號   \n",
       "2            埔里鎮南興街2號之 19 號   \n",
       "3               宜蘭市中山路二段89號   \n",
       "4                馬公市中華路353號   \n",
       "5                竹北市中華路226號   \n",
       "6               新化區忠孝路178號號   \n",
       "7              台東市中興路三段280號   \n",
       "8                台東市新生路269號   \n",
       "9    號, No. 144, 中山路三段, 彰化市   \n",
       "10                   新城鄉北埔村   \n",
       "11            花蓮縣花蓮市中華路351號   \n",
       "12               台東市鐵花路217號   \n",
       "13               宜蘭市泰山路503號   \n",
       "14          大同區民族西路224-226號   \n",
       "15               仁德區中山路491號   \n",
       "16             東區經國路一段786號號   \n",
       "17                東區東光路177號   \n",
       "18      號, No. 193, 垂楊路, 東區   \n",
       "19                仁愛區忠二路25號   \n",
       "20               潮州鎮延平路211號   \n",
       "21              中西區大同路一段62號   \n",
       "22              仁愛區愛四路8-10號   \n",
       "23                   和美鎮嘉寶里   \n",
       "24            中西區湖美一街26巷21號   \n",
       "25              南屯區向心南路730號   \n",
       "26        安南區安中路一段130巷16-3號   \n",
       "27               香山區經國路三段8號   \n",
       "28                宜蘭市和睦路65號   \n",
       "29               樹林區大安路165號   \n",
       "..                      ...   \n",
       "876           新豐鄉新興路767巷31號   \n",
       "877             三峽區大勇路18-2號   \n",
       "878     澎湖縣馬公市西文里92-1號, 馬公市   \n",
       "879            中西區西門路二段344號   \n",
       "880             西區仁愛路168之2號   \n",
       "881  馬公 市東 衛 里 19 鄰 5 之 5 號   \n",
       "882                東區博愛街45號   \n",
       "883             台東市中興路二段90號   \n",
       "884               北區育成路190號   \n",
       "885              中壢區青埔七街13號   \n",
       "886              安平區慶平路499號   \n",
       "887               安南區海環街16號   \n",
       "888              羅東鎮興東路222號   \n",
       "889            大雅區民生路一段362號   \n",
       "890               彰化市三民路69號   \n",
       "891              苓雅區三多三路24號   \n",
       "892              三民區自立一路93號   \n",
       "893               西區長榮街308號   \n",
       "894               西螺鎮中山路97號   \n",
       "895            新城鄉佳林村佳林6-6號   \n",
       "896              中山區成功二路29號   \n",
       "897               馬公市中興路73號   \n",
       "898              中山區北安路472號   \n",
       "899            台東市中華路二段325號   \n",
       "900  台灣 號, No. 39, 玉春街, 潮州鎮   \n",
       "901            東區衛國街114巷23號   \n",
       "902              永康區中華路430號   \n",
       "903             安南區海佃路二段58號   \n",
       "904             竹北市自強北路156號   \n",
       "905            朴子市四維路一段583巷   \n",
       "\n",
       "                                               website        lat         lng  \n",
       "0                 https://www.facebook.com/goodog9988/  24.994649  121.427588  \n",
       "1                         http://www.machi-family.com/  25.015889  121.456793  \n",
       "2                                                  NaN  23.965619  120.962234  \n",
       "3             http://picbear.com/place/372543606136920  24.745887  121.755335  \n",
       "4                                                  NaN  23.571909  119.578194  \n",
       "5                            http://www.17ipet.com.tw/  24.831187  121.002619  \n",
       "6                   https://www.facebook.com/abubu.pet  23.037402  120.301901  \n",
       "7                                                  NaN  22.770625  121.113064  \n",
       "8                                                  NaN  22.757051  121.143090  \n",
       "9                                                  NaN  24.085366  120.556868  \n",
       "10                                                 NaN  24.027784  121.602570  \n",
       "11                                                 NaN  23.974661  121.596084  \n",
       "12                                                 NaN  22.749962  121.149765  \n",
       "13                                                 NaN  24.748836  121.733803  \n",
       "14                        http://www.oscar-pet.com.tw/  25.068505  121.512978  \n",
       "15                        http://www.oscar-pet.com.tw/  22.971077  120.254978  \n",
       "16                https://www.facebook.com/pm.shop025/  24.814214  120.970770  \n",
       "17                         http://www.petsmall.com.tw/  24.805680  120.986384  \n",
       "18                                                 NaN  23.474328  120.456187  \n",
       "19                                                 NaN  25.130146  121.739849  \n",
       "20                        http://www.oscar-pet.com.tw/  22.556720  120.540226  \n",
       "21                   https://www.facebook.com/dog1209/  22.987189  120.211183  \n",
       "22                                                 NaN  25.127642  121.742908  \n",
       "23                                                 NaN  24.128180  120.521182  \n",
       "24   http://tw.user.bid.yahoo.com/tw/booth/gogohous...  23.000302  120.181888  \n",
       "25                                                 NaN  24.131769  120.644072  \n",
       "26   https://www.facebook.com/cathome0912010135/tim...  23.036168  120.208888  \n",
       "27                         http://www.petsmall.com.tw/  24.800250  120.953635  \n",
       "28                                                 NaN  24.756585  121.757280  \n",
       "29                     https://m.facebook.com/123Pets/  24.996502  121.421456  \n",
       "..                                                 ...        ...         ...  \n",
       "876                    http://fayechen.wix.com/funlife  24.883475  121.010011  \n",
       "877                                                NaN  24.937950  121.366966  \n",
       "878                                                NaN  23.566627  119.585425  \n",
       "879           https://www.facebook.com/catsfamily1997/  22.997943  120.200553  \n",
       "880          https://www.facebook.com/wanwanlaichiayi/  23.467814  120.443054  \n",
       "881  https://zh-tw.facebook.com/%E6%BE%8E%E6%B9%96%...  23.570317  119.598759  \n",
       "882              https://www.facebook.com/MaJi.5717571  24.797515  120.985021  \n",
       "883                         http://www.kittensbnb.com/  22.766859  121.130691  \n",
       "884                    https://www.facebook.com/fgpets  23.018295  120.206942  \n",
       "885                   http://spice0519.pixnet.net/blog  25.004315  121.222822  \n",
       "886                                                NaN  22.997029  120.172788  \n",
       "887                                                NaN  23.039425  120.187188  \n",
       "888         https://www.facebook.com/petlove265?ref=hl  24.682339  121.769910  \n",
       "889                                                NaN  24.229087  120.653969  \n",
       "890                                                NaN  24.083688  120.540268  \n",
       "891              http://www.facebook.com/GogoYoyoDream  22.617082  120.313291  \n",
       "892                                                NaN  22.636871  120.296650  \n",
       "893       https://www.facebook.com/dogs.palace.Chiayi/  23.482690  120.446319  \n",
       "894                                                NaN  23.799920  120.462101  \n",
       "895                                                NaN  24.014779  121.602622  \n",
       "896                                                NaN  25.129394  121.736745  \n",
       "897        http://www.blessedoyster.com.tw/restaurant/  23.567120  119.564551  \n",
       "898  https://www.facebook.com/pomaipets/info/?tab=o...  25.079596  121.544938  \n",
       "899                                                NaN  22.743136  121.135884  \n",
       "900                                                NaN  22.553074  120.547279  \n",
       "901                         http://xiaokeai.looker.tw/  22.987787  120.225094  \n",
       "902                         http://www.wonderpet.asia/  23.010452  120.232946  \n",
       "903                       http://www.oscar-pet.com.tw/  23.030924  120.190399  \n",
       "904     https://www.facebook.com/duomaomao520/?fref=ts  24.808245  121.025095  \n",
       "905                                                NaN  23.463177  120.221003  \n",
       "\n",
       "[906 rows x 24 columns]"
      ]
     },
     "execution_count": 22,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "output"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "collapsed": true
   },
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.6.1"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}

留言

熱門文章